ActionExecutingContext Constructor

Definición

Crea una instancia de una nueva ActionExecutingContext instancia.

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)

Parámetros

actionContext
ActionContext

El parámetro de cadena de consulta ActionContext.

filters
IList<IFilterMetadata>

Todas las implementaciones aplicables IFilterMetadata .

actionArguments
IDictionary<String,Object>

Argumentos que se van a pasar al invocar la acción. Las claves son nombres de parámetro.

controller
Object

Instancia del controlador que contiene la acción.

Se aplica a