Share via


BeforeHandlerMethodEventData Constructor

Definition

Initializes a new instance of BeforeHandlerMethodEventData.

public:
 BeforeHandlerMethodEventData(Microsoft::AspNetCore::Mvc::ActionContext ^ actionContext, System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ arguments, Microsoft::AspNetCore::Mvc::RazorPages::Infrastructure::HandlerMethodDescriptor ^ handlerMethodDescriptor, System::Object ^ instance);
public BeforeHandlerMethodEventData (Microsoft.AspNetCore.Mvc.ActionContext actionContext, System.Collections.Generic.IReadOnlyDictionary<string,object> arguments, Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandlerMethodDescriptor handlerMethodDescriptor, object instance);
public BeforeHandlerMethodEventData (Microsoft.AspNetCore.Mvc.ActionContext actionContext, System.Collections.Generic.IReadOnlyDictionary<string,object?> arguments, Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandlerMethodDescriptor handlerMethodDescriptor, object instance);
new Microsoft.AspNetCore.Mvc.Diagnostics.BeforeHandlerMethodEventData : Microsoft.AspNetCore.Mvc.ActionContext * System.Collections.Generic.IReadOnlyDictionary<string, obj> * Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.HandlerMethodDescriptor * obj -> Microsoft.AspNetCore.Mvc.Diagnostics.BeforeHandlerMethodEventData
Public Sub New (actionContext As ActionContext, arguments As IReadOnlyDictionary(Of String, Object), handlerMethodDescriptor As HandlerMethodDescriptor, instance As Object)

Parameters

actionContext
ActionContext

The action context.

arguments
IReadOnlyDictionary<String,Object>

The arguments to the method.

handlerMethodDescriptor
HandlerMethodDescriptor

The method descriptor.

instance
Object

The instance.

Applies to