Click or drag to resize

CefRequestContextRegisterSchemeHandlerFactory Method

Register a scheme handler factory for the specified |scheme_name| and optional |domain_name|. An empty |domain_name| value for a standard scheme will cause the factory to match all domain names. The |domain_name| value will be ignored for non-standard schemes. If |scheme_name| is a built-in scheme and no handler is returned by |factory| then the built-in scheme handler factory will be called. If |scheme_name| is a custom scheme then you must also implement the CefApp::OnRegisterCustomSchemes() method in all processes. This function may be called multiple times to change or remove the factory that matches the specified |scheme_name| and optional |domain_name|. Returns false if an error occurs. This function may be called on any thread in the browser process.

Namespace:  Internal.Xilium.CefGlue
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public bool RegisterSchemeHandlerFactory(
	string schemeName,
	string domainName,
	CefSchemeHandlerFactory factory
)

Parameters

schemeName
Type: SystemString
domainName
Type: SystemString
factory
Type: Internal.Xilium.CefGlueCefSchemeHandlerFactory

Return Value

Type: Boolean
See Also