Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class SomeCustomFilter : ActionFilterAttribute
  2. {
  3. [Import] ISomeServicer _someservice { get; set; }
  4.  
  5.  
  6. // static object foo
  7. public override void OnActionExecuting(HttpActionContext actionContext)
  8. {
  9. _someservice.getFoo();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement