I have been doing some testing with the following code to try and workout how ActionFilterAttributes work:
public class TestAttribute : ActionFilterAttribute { private string _privateValue; public string PublicValue { get; set; } public override void OnActionExecuting(ActionExecutingContext filterContext) { _privateValue = DateTime.Now.ToString(); base.OnActionExecuting(filterContext); } }
When I run the above code on two parallel threads the _privateValue field gets confused. However the PublicValue property doesn't get confused.
It looks to me like ActionFilterAttributes are reused across threads, but that new instances are created depending on the constants specified to public properties. Am I correct?
Where can I find information on this?
Differences between Middleware and Filter The Execution of Middleware occurs before MVC Context becomes available in the pipeline. Middleware will be executed irrespective of the Controller or Action Method we are hitting but Filters will be executed based on which Controller or Action Method it has been configured.
Filters get executed in the following order for an action: Globally Defined Filters -> Controller-specific Filters -> Action-specific Filters.
Filters execute in this order: Authorization filters. Action filters. Response/Result filters.
This will depend on the version of ASP.NET MVC but you should never store instance state in an action filter that will be reused between the different methods. Here's a quote for example from one of the breaking changes in ASP.NET MVC 3:
In previous versions of ASP.NET MVC, action filters are create per request except in a few cases. This behavior was never a guaranteed behavior but merely an implementation detail and the contract for filters was to consider them stateless. In ASP.NET MVC 3, filters are cached more aggressively. Therefore, any custom action filters which improperly store instance state might be broken.
This basically means that the same instance of the action filter can be reused for different actions and if you have stored instance state in it it will probably break.
And in terms of code this means that you should absolutely never write an action filter like this:
public class TestAttribute : ActionFilterAttribute { private string _privateValue; public override void OnActionExecuting(ActionExecutingContext filterContext) { _privateValue = ... some calculation } public override void OnActionExecuted(ActionExecutedContext filterContext) { // use _privateValue here } }
but you should write it like this:
public class TestAttribute : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext filterContext) { var privateValue = ... some calculation filterContext.HttpContext.Items["__private_value__"] = privateValue; } public override void OnActionExecuted(ActionExecutedContext filterContext) { var privateValue = filterContext.HttpContext.Items["__private_value__"]; // use privateValue safely here } }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With