FilterContext Class

Definition

An abstract context for filters.

public ref class FilterContext abstract : Microsoft::AspNetCore::Mvc::ActionContext
public abstract class FilterContext : Microsoft.AspNetCore.Mvc.ActionContext
type FilterContext = class
    inherit ActionContext
Public MustInherit Class FilterContext
Inherits ActionContext
Inheritance
FilterContext
Derived

Constructors

FilterContext(ActionContext, IList<IFilterMetadata>)

Instantiates a new FilterContext instance.

Properties

ActionDescriptor

Gets or sets the ActionDescriptor for the selected action.

(Inherited from ActionContext)
Filters

Gets all applicable IFilterMetadata implementations.

HttpContext

Gets or sets the HttpContext for the current request.

(Inherited from ActionContext)
ModelState

Gets the ModelStateDictionary.

(Inherited from ActionContext)
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.

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.

Applies to