Click or drag to resize

IHandler<TParameters, TResponse> Interface

The common interface for all handlers.

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

Type Parameters

TParameters
The handler parameters type.
TResponse
The result type.

The IHandler<TParameters, TResponse> type exposes the following members.

Methods
  NameDescription
Public methodHandle
This method is called when the Chromium callback needs a response that may be determined based on the provided parameters.
Top
See Also