Interface IHandler<TParameters>
- Namespace
- DotNetBrowser.Handlers
- Assembly
- DotNetBrowser.dll
The common interface for all handlers that must be executed synchronously, but do not have to return a value.
public interface IHandler<in TParameters>
Type Parameters
TParameters
The handler parameters type.
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.