BeforeControllerActionMethodEventData Constructor
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.
Initializes a new instance of BeforeControllerActionMethodEventData.
public:
BeforeControllerActionMethodEventData(Microsoft::AspNetCore::Mvc::ActionContext ^ actionContext, System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ actionArguments, System::Object ^ controller);
public BeforeControllerActionMethodEventData (Microsoft.AspNetCore.Mvc.ActionContext actionContext, System.Collections.Generic.IReadOnlyDictionary<string,object> actionArguments, object controller);
new Microsoft.AspNetCore.Mvc.Diagnostics.BeforeControllerActionMethodEventData : Microsoft.AspNetCore.Mvc.ActionContext * System.Collections.Generic.IReadOnlyDictionary<string, obj> * obj -> Microsoft.AspNetCore.Mvc.Diagnostics.BeforeControllerActionMethodEventData
Public Sub New (actionContext As ActionContext, actionArguments As IReadOnlyDictionary(Of String, Object), controller As Object)
Parameters
- actionContext
- ActionContext
The ActionContext.
- actionArguments
- IReadOnlyDictionary<String,Object>
The arguments to the action.
- controller
- Object
The controller.