ISchemeHandlerFactoryCreate Method  | 
Version 87.1.132 
            Return a new 
IResourceHandler instance to handle the request or an empty
            reference to allow default handling of the request.
            
 
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 87.1.132.0 (87.1.132.0)
SyntaxIResourceHandler Create(
	IBrowser browser,
	IFrame frame,
	string schemeName,
	IRequest request
)
IResourceHandler^ Create(
	IBrowser^ browser, 
	IFrame^ frame, 
	String^ schemeName, 
	IRequest^ request
)
Parameters
- browser
 - Type: CefSharpIBrowser
the browser window that originated the
            request or null if the request did not originate from a browser window
            (for example, if the request came from CefURLRequest). - frame
 - Type: CefSharpIFrame
frame that originated the request
            or null if the request did not originate from a browser window
            (for example, if the request came from CefURLRequest). - schemeName
 - Type: SystemString
the scheme name - request
 - Type: CefSharpIRequest
The request. (will not contain cookie data) 
Return Value
Type: 
IResourceHandler
            Return a new 
IResourceHandler instance to handle the request or an empty
            reference to allow default handling of the request
            
See Also