ActionExecutedContext Class

Definition

A context for action filters, specifically OnActionExecuted(ActionExecutedContext) calls.

public ref class ActionExecutedContext : Microsoft::AspNetCore::Mvc::Filters::FilterContext
public class ActionExecutedContext : Microsoft.AspNetCore.Mvc.Filters.FilterContext
type ActionExecutedContext = class
    inherit FilterContext
Public Class ActionExecutedContext
Inherits FilterContext
Inheritance
ActionExecutedContext

Constructors

ActionExecutedContext(ActionContext, IList<IFilterMetadata>, Object)

Instantiates a new ActionExecutingContext instance.

Properties

ActionDescriptor

Gets or sets the ActionDescriptor for the selected action.

(Inherited from ActionContext)
Canceled

Gets or sets an indication that an action filter short-circuited the action and the action filter pipeline.

Controller

Gets the controller instance containing the action.

Exception

Gets or sets the Exception caught while executing the action or action filters, if any.

ExceptionDispatchInfo

Gets or sets the ExceptionDispatchInfo for the Exception, if an Exception was caught and this information captured.

ExceptionHandled

Gets or sets an indication that the Exception has been handled.

Filters

Gets all applicable IFilterMetadata implementations.

(Inherited from FilterContext)
HttpContext

Gets or sets the HttpContext for the current request.

(Inherited from ActionContext)
ModelState

Gets the ModelStateDictionary.

(Inherited from ActionContext)
Result

Gets or sets the IActionResult.

RouteData

Gets or sets the RouteData for the current request.

(Inherited from ActionContext)

Methods

FindEffectivePolicy<TMetadata>()

Returns the most effective (most specific) policy of type TMetadata applied to the action associated with the FilterContext.

(Inherited from FilterContext)
IsEffectivePolicy<TMetadata>(TMetadata)

Returns a value indicating whether the provided IFilterMetadata is the most effective policy (most specific) applied to the action associated with the FilterContext.

(Inherited from FilterContext)

Applies to