PageHandlerExecutingContext Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A context for page filters, used specifically in OnPageHandlerExecuting(PageHandlerExecutingContext) and OnPageHandlerExecutionAsync(PageHandlerExecutingContext, PageHandlerExecutionDelegate).
public ref class PageHandlerExecutingContext : Microsoft::AspNetCore::Mvc::Filters::FilterContext
public class PageHandlerExecutingContext : Microsoft.AspNetCore.Mvc.Filters.FilterContext
type PageHandlerExecutingContext = class
inherit FilterContext
Public Class PageHandlerExecutingContext
Inherits FilterContext
- Inheritance
Constructors
PageHandlerExecutingContext(PageContext, IList<IFilterMetadata>, HandlerMethodDescriptor, IDictionary<String,Object>, Object) |
Creates a new instance of PageHandlerExecutingContext. |
Properties
ActionDescriptor |
Gets the descriptor associated with the current page. |
Filters |
Gets all applicable IFilterMetadata implementations. (Inherited from FilterContext) |
HandlerArguments |
Gets the arguments to pass when invoking the handler method. Keys are parameter names. |
HandlerInstance |
Gets the object instance containing the handler method. |
HandlerMethod |
Gets the descriptor for the handler method about to be invoked. |
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 to execute. Setting Result to a non- |
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 |
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) |