Table of Contents

Class Handler<TParameters>

Namespace
DotNetBrowser.Handlers
Assembly
DotNetBrowser.dll

The default implementation of the IHandler<TParameters> interface.

public sealed class Handler<TParameters> : IHandler<TParameters>

Type Parameters

TParameters

The handler parameters type.

Inheritance
Handler<TParameters>
Implements
IHandler<TParameters>
Inherited Members

Constructors

Handler(Action<TParameters>)

Initializes an instance of the Handler<TParameters> class.

Methods

Handle(TParameters)

This method is called when the Chromium callback should be handled synchronously. In a number of cases, the Chromium engine will be blocked until this method returns.

Operators

implicit operator Handler<TParameters>(Action<TParameters>)

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