Click or drag to resize

Handler<TParameters, TResponse> Constructor

Namespace:  DotNetBrowser.Handlers
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.27.11
Syntax
C#
public Handler(
	Func<TParameters, TResponse> func
)

Parameters

func
Type: System.Func<TParameters, TResponse>
The function that must be executed when the Handle(TParameters) method is called.
Exceptions
ExceptionCondition
ArgumentExceptionThe func is null.
See Also