IResourceFilter Interface¶
Summary¶
A filter which surrounds execution of model binding, the action (and filters) and the action result (and filters).
Methods¶
-
OnResourceExecuted
(Microsoft.AspNet.Mvc.ResourceExecutedContext)¶ Executes the resource filter. Called after execution of the remainder of the pipeline.
Arguments: - context (Microsoft.AspNet.Mvc.ResourceExecutedContext) – The [Microsoft.AspNet.Mvc.ResourceExecutedContext](Microsoft.AspNet.Mvc.ResourceExecutedContext.yml).
void OnResourceExecuted(ResourceExecutedContext context)
-
OnResourceExecuting
(Microsoft.AspNet.Mvc.ResourceExecutingContext)¶ Executes the resource filter. Called before execution of the remainder of the pipeline.
Arguments: - context (Microsoft.AspNet.Mvc.ResourceExecutingContext) – The [Microsoft.AspNet.Mvc.ResourceExecutingContext](Microsoft.AspNet.Mvc.ResourceExecutingContext.yml).
void OnResourceExecuting(ResourceExecutingContext context)
-