AfterHandlerMethodEventData 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 AfterHandlerMethodEventData.
public:
AfterHandlerMethodEventData(Microsoft::AspNetCore::Mvc::ActionContext ^ actionContext, System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ arguments, Microsoft::AspNetCore::Mvc::RazorPages::Infrastructure::HandlerMethodDescriptor ^ handlerMethodDescriptor, System::Object ^ instance, Microsoft::AspNetCore::Mvc::IActionResult ^ result);
public AfterHandlerMethodEventData (Microsoft.AspNetCore.Mvc.ActionContext actionContext, System.Collections.Generic.IReadOnlyDictionary<string,object> arguments, Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandlerMethodDescriptor handlerMethodDescriptor, object instance, Microsoft.AspNetCore.Mvc.IActionResult result);
public AfterHandlerMethodEventData (Microsoft.AspNetCore.Mvc.ActionContext actionContext, System.Collections.Generic.IReadOnlyDictionary<string,object?> arguments, Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandlerMethodDescriptor handlerMethodDescriptor, object instance, Microsoft.AspNetCore.Mvc.IActionResult? result);
new Microsoft.AspNetCore.Mvc.Diagnostics.AfterHandlerMethodEventData : Microsoft.AspNetCore.Mvc.ActionContext * System.Collections.Generic.IReadOnlyDictionary<string, obj> * Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandlerMethodDescriptor * obj * Microsoft.AspNetCore.Mvc.IActionResult -> Microsoft.AspNetCore.Mvc.Diagnostics.AfterHandlerMethodEventData
Public Sub New (actionContext As ActionContext, arguments As IReadOnlyDictionary(Of String, Object), handlerMethodDescriptor As HandlerMethodDescriptor, instance As Object, result As IActionResult)
Parameters
- actionContext
- ActionContext
The action context.
- arguments
- IReadOnlyDictionary<String,Object>
The arguments to the method.
- handlerMethodDescriptor
- HandlerMethodDescriptor
The method descriptor.
- instance
- Object
The instance.
- result
- IActionResult
The result of the handler method