Click or drag to resize

TargetClientCreateBrowserContextAsync Method

Version 94.4.20
Creates a new empty BrowserContext. Similar to an incognito profile but you can have more than one.

Namespace:  CefSharp.DevTools.Target
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public Task<CreateBrowserContextResponse> CreateBrowserContextAsync(
	bool? disposeOnDetach = null,
	string proxyServer = null,
	string proxyBypassList = null
)

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

Return Value

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