Click or drag to resize

OwinSchemeHandlerFactory.Create Method

Version 104.4.240
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: 104.4.240.0 (104.4.240.0)
Syntax
public IResourceHandler Create(
	IBrowser browser,
	IFrame frame,
	string schemeName,
	IRequest request
)

Parameters

browser
Type: CefSharp.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
Type: CefSharp.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
Type: System.String
the scheme name
request
Type: CefSharp.IRequest
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

Implements

ISchemeHandlerFactory.Create(IBrowser, IFrame, String, IRequest)
See Also