Guest User

Untitled

a guest
Nov 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using System.Web.Http.Controllers;
  2. using System.Web.Http.Filters;
  3.  
  4. namespace ActionFilter
  5. {
  6. public class SampleFilter : ActionFilterAttribute
  7. {
  8. public override void OnActionExecuting(HttpActionContext actionContext)
  9. {
  10. }
  11.  
  12. public override void OnActionExecuted(HttpActionExecutedContext actionExecutedContext)
  13. {
  14. }
  15. }
  16. }
Add Comment
Please, Sign In to add comment