Operator implicit operator
- Namespace
- DotNetBrowser.Handlers
- Assembly
- DotNetBrowser.dll
implicit operator Handler<TParameters>(Action<TParameters>)
The cast operator that can be used to cast Action<T> to Handler<TParameters>
public static implicit operator Handler<TParameters>(Action<TParameters> value)
Parameters
Returns
- Handler<TParameters>
The corresponding Handler<TParameters> instance.
Exceptions
- ArgumentException
The
value
is null.