IWebApiMethod.cs 426 B

123456789101112
  1. namespace MiniWebApi.Handler
  2. {
  3. public interface IWebApiMethod
  4. {
  5. /// <summary>
  6. /// Call the WebApi implementation
  7. /// </summary>
  8. /// <param name="thisObject">The this object which will pass to the method for the first argument</param>
  9. /// <param name="args">The arguments for the WebApi method.</param>
  10. void Call(object thisObject, object[] args);
  11. }
  12. }