IResourceHandlerProcessRequest Method  | 
Version 93.1.111 Note: This API is now obsolete.
            Begin processing the request.  
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 93.1.111.0 (93.1.111.0)
Syntax[ObsoleteAttribute("This method is deprecated and will be removed in the next version. Use Open instead.")]
bool ProcessRequest(
	IRequest request,
	ICallback callback
)[ObsoleteAttribute(L"This method is deprecated and will be removed in the next version. Use Open instead.")]
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: 
BooleanTo 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