Click or drag to resize
IResourceHandlerProcessRequest Method
Version 63.0.0
Begin processing the request.

Namespace: CefSharp
Assembly: CefSharp (in CefSharp.dll) Version: 63.0.0.0 (63.0.0.0)
Syntax
bool ProcessRequest(
	IRequest request,
	ICallback callback
)

Parameters

request
Type: CefSharpIRequest
The request object.
callback
Type: CefSharpICallback
The callback used to Continue or Cancel the request (async).

Return Value

Type: Boolean
To handle the request return true and call Continue once the response header information is available Continue can also be called from inside this method if header information is available immediately). To cancel the request return false.
See Also