ExtensionHandlerCanAccessBrowser Method  | 
Version 104.4.240 
            Called when the tabId associated with targetBrowser is specified to an extension API call that accepts a tabId
            parameter (e.g. chrome.tabs.*).
            
 
    Namespace: 
   CefSharp.Handler
    Assembly:
   CefSharp (in CefSharp.dll) Version: 104.4.240.0 (104.4.240.0)
Syntaxprotected virtual bool CanAccessBrowser(
	IExtension extension,
	IBrowser browser,
	bool includeIncognito,
	IBrowser targetBrowser
)
protected:
virtual bool CanAccessBrowser(
	IExtension^ extension, 
	IBrowser^ browser, 
	bool includeIncognito, 
	IBrowser^ targetBrowser
)
Parameters
- extension
 - Type: CefSharpIExtension
extension the call originates from - browser
 - Type: CefSharpIBrowser
browser the call originates from - includeIncognito
 - Type: SystemBoolean
Access to incognito browsers should not be allowed unless the source extension has
            incognito access
            enabled, in which case this will be true. - targetBrowser
 - Type: CefSharpIBrowser
 
Return Value
Type: 
BooleanReturn true to allow access of false to deny access.
See Also