Click or drag to resize

OwinSchemeHandlerFactoryCreate Method

Version 130.1.90
Return a new IResourceHandler instance to handle the request or an empty reference to allow default handling of the request.

Namespace: CefSharp.SchemeHandler
Assembly: CefSharp (in CefSharp.dll) Version: 129.0.110.0 (129.0.110.0)
Syntax
public IResourceHandler Create(
	IBrowser browser,
	IFrame frame,
	string schemeName,
	IRequest request
)

Parameters

browser  IBrowser
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  IFrame
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  String
the scheme name
request  IRequest
The request. (will not contain cookie data)

Return Value

IResourceHandler
Return a new IResourceHandler instance to handle the request or an empty reference to allow default handling of the request

Implements

ISchemeHandlerFactoryCreate(IBrowser, IFrame, String, IRequest)
See Also