
ActionFilterAttribute Class
Represents the base class for filter attributes.
System.Attribute
System.Web.Mvc.FilterAttribute
System.Web.Mvc.ActionFilterAttribute
System.Web.Mvc.AsyncTimeoutAttribute
System.Web.Mvc.OutputCacheAttribute
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
The ActionFilterAttribute type exposes the following members.
Name | Description | |
---|---|---|
![]() | ActionFilterAttribute | Initializes a new instance of the ActionFilterAttribute class. |
Name | Description | |
---|---|---|
![]() | AllowMultiple | Gets or sets a value that indicates whether more than one instance of the filter attribute can be specified. (Inherited from FilterAttribute.) |
![]() | Order | Gets or sets the order in which the action filters are executed. (Inherited from FilterAttribute.) |
![]() | TypeId | (Inherited from Attribute.) |
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Attribute.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Attribute.) |
![]() | GetType | (Inherited from Object.) |
![]() | IsDefaultAttribute | (Inherited from Attribute.) |
![]() | Match | (Inherited from Attribute.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | OnActionExecuted | Called by the ASP.NET MVC framework after the action method executes. |
![]() | OnActionExecuting | Called by the ASP.NET MVC framework before the action method executes. |
![]() | OnResultExecuted | Called by the ASP.NET MVC framework after the action result executes. |
![]() | OnResultExecuting | Called by the ASP.NET MVC framework before the action result executes. |
![]() | ToString | (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() ![]() | _Attribute.GetIDsOfNames | (Inherited from Attribute.) |
![]() ![]() | _Attribute.GetTypeInfo | (Inherited from Attribute.) |
![]() ![]() | _Attribute.GetTypeInfoCount | (Inherited from Attribute.) |
![]() ![]() | _Attribute.Invoke | (Inherited from Attribute.) |
Typically, you create an action or response filter by creating an attribute class that inherits from the abstract ActionFilterAttribute class. Some built-in action filters, such as AuthorizeAttribute and HandleErrorAttribute, inherit from the FilterAttribute class. Other action filters, such as OutputCacheAttribute, inherit from the abstract ActionFilterAttribute class, which enables the action filter to run either before or after the action method runs.
You can use filter attributes to mark any action method or controller. If the attribute marks a controller, the filter applies to all action methods in that controller.