ResourceExecutedContext Class

Definition

A context for resource filters, specifically OnResourceExecuted(ResourceExecutedContext) calls.

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

Constructors

ResourceExecutedContext(ActionContext, IList<IFilterMetadata>)

Creates a new ResourceExecutedContext.

Properties

ActionDescriptor

Gets or sets the ActionDescriptor for the selected action.

(Inherited from ActionContext)
Canceled

Gets or sets a value which indicates whether or not execution was canceled by a resource filter. If true, then a resource filter short-circuited execution by setting Result.

Exception

Gets or set the current Exception.

ExceptionDispatchInfo

Gets or set the current Exception.

ExceptionHandled

Gets or sets a value indicating whether or not the current Exception has been handled.

If false the Exception will be rethrown by the runtime after resource filters have executed.

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 result.

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