Click or drag to resize

TargetClientCreateBrowserContextAsync Method

Version 130.1.90
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: 129.0.110.0
Syntax
public Task<CreateBrowserContextResponse> CreateBrowserContextAsync(
	bool? disposeOnDetach = null,
	string proxyServer = null,
	string proxyBypassList = null,
	string[] originsWithUniversalNetworkAccess = null
)

Parameters

disposeOnDetach  NullableBoolean  (Optional)
If specified, disposes this context when debugging session disconnects.
proxyServer  String  (Optional)
Proxy server, similar to the one passed to --proxy-server
proxyBypassList  String  (Optional)
Proxy bypass list, similar to the one passed to --proxy-bypass-list
originsWithUniversalNetworkAccess  String  (Optional)
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

TaskCreateBrowserContextResponse
returns System.Threading.Tasks.Task<CreateBrowserContextResponse>
See Also