Click or drag to resize

HandlerTParameters  Conversion (ActionTParameters to HandlerTParameters)

The cast operator that can be used to cast ActionT to HandlerTParameters

Namespace:  DotNetBrowser.Handlers
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
public static implicit operator Handler<TParameters> (
	Action<TParameters> value
)

Parameters

value
Type: SystemActionTParameters
The ActionT to cast from.

Return Value

Type: HandlerTParameters
The corresponding HandlerTParameters instance.
Exceptions
ExceptionCondition
ArgumentExceptionThe value is null.
See Also