Click or drag to resize

Handler<TParameters>Implicit Conversion (Action<TParameters> to Handler<TParameters>)

The cast operator that can be used to cast Action<T> to Handler<TParameters>

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

Parameters

value
Type: System.Action<TParameters>
The Action<T> to cast from.

Return Value

Type: Handler<TParameters>
The corresponding Handler<TParameters> instance.
Exceptions
ExceptionCondition
ArgumentExceptionThe value is null.
See Also