| TargetClientCreateBrowserContextAsync Method  | 
Version 113.3.50 
            Creates a new empty BrowserContext. Similar to an incognito profile but you can have more than
            one.
            
 
    Namespace: 
   CefSharp.DevTools.Target
    Assembly:
   CefSharp.Core (in CefSharp.Core.dll) Version: 113.3.50.0
 Syntax
Syntaxpublic Task<CreateBrowserContextResponse> CreateBrowserContextAsync(
	bool? disposeOnDetach = null,
	string proxyServer = null,
	string proxyBypassList = null,
	string[] originsWithUniversalNetworkAccess = null
)
public:
Task<CreateBrowserContextResponse^>^ CreateBrowserContextAsync(
	Nullable<bool> disposeOnDetach = nullptr, 
	String^ proxyServer = nullptr, 
	String^ proxyBypassList = nullptr, 
	array<String^>^ originsWithUniversalNetworkAccess = nullptr
)
Parameters
- disposeOnDetach (Optional)
- Type: SystemNullableBoolean
 If specified, disposes this context when debugging session disconnects.
- proxyServer (Optional)
- Type: SystemString
 Proxy server, similar to the one passed to --proxy-server
- proxyBypassList (Optional)
- Type: SystemString
 Proxy bypass list, similar to the one passed to --proxy-bypass-list
- originsWithUniversalNetworkAccess (Optional)
- Type: SystemString
 An optional list of origins to grant unlimited cross-origin access to.Parts of the URL other than those constituting origin are ignored.
Return Value
Type: 
TaskCreateBrowserContextResponsereturns System.Threading.Tasks.Task<CreateBrowserContextResponse>
 See Also
See Also