ActionExecutingContext Constructor

Definition

Instantiates a new ActionExecutingContext instance.

public:
 ActionExecutingContext(Microsoft::AspNetCore::Mvc::ActionContext ^ actionContext, System::Collections::Generic::IList<Microsoft::AspNetCore::Mvc::Filters::IFilterMetadata ^> ^ filters, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ actionArguments, System::Object ^ controller);
public ActionExecutingContext (Microsoft.AspNetCore.Mvc.ActionContext actionContext, System.Collections.Generic.IList<Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata> filters, System.Collections.Generic.IDictionary<string,object> actionArguments, object controller);
public ActionExecutingContext (Microsoft.AspNetCore.Mvc.ActionContext actionContext, System.Collections.Generic.IList<Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata> filters, System.Collections.Generic.IDictionary<string,object?> actionArguments, object controller);
new Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext : Microsoft.AspNetCore.Mvc.ActionContext * System.Collections.Generic.IList<Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata> * System.Collections.Generic.IDictionary<string, obj> * obj -> Microsoft.AspNetCore.Mvc.Filters.ActionExecutingContext
Public Sub New (actionContext As ActionContext, filters As IList(Of IFilterMetadata), actionArguments As IDictionary(Of String, Object), controller As Object)

Parameters

actionContext
ActionContext

The ActionContext.

filters
IList<IFilterMetadata>

All applicable IFilterMetadata implementations.

actionArguments
IDictionary<String,Object>

The arguments to pass when invoking the action. Keys are parameter names.

controller
Object

The controller instance containing the action.

Applies to