ActionExecutedContext Constructor

Definition

Instantiates a new ActionExecutingContext instance.

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

Parameters

actionContext
ActionContext

The ActionContext.

filters
IList<IFilterMetadata>

All applicable IFilterMetadata implementations.

controller
Object

The controller instance containing the action.

Applies to