Click or drag to resize

IHandler<TParameters> Interface

The common interface for all handlers that must be executed synchronously, but do not have to return a value.

Namespace:  DotNetBrowser.Handlers
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.27.12
Syntax
C#
public interface IHandler<in TParameters>

Type Parameters

TParameters
The handler parameters type.

The IHandler<TParameters> type exposes the following members.

Methods
  NameDescription
Public methodHandle
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.
Top
See Also