Click or drag to resize

TargetClientCreateTargetAsync Method

Version 91.1.160
Creates a new page.

Namespace:  CefSharp.DevTools.Target
Assembly:  CefSharp (in CefSharp.dll) Version: 91.1.160.0 (91.1.160.0)
Syntax
public Task<CreateTargetResponse> CreateTargetAsync(
	string url,
	Nullable<int> width = null,
	Nullable<int> height = null,
	string browserContextId = null,
	Nullable<bool> enableBeginFrameControl = null,
	Nullable<bool> newWindow = null,
	Nullable<bool> background = null
)

Parameters

url
Type: SystemString
The initial URL the page will be navigated to. An empty string indicates about:blank.
width (Optional)
Type: SystemNullableInt32
Frame width in DIP (headless chrome only).
height (Optional)
Type: SystemNullableInt32
Frame height in DIP (headless chrome only).
browserContextId (Optional)
Type: SystemString
The browser context to create the page in.
enableBeginFrameControl (Optional)
Type: SystemNullableBoolean
Whether BeginFrames for this target will be controlled via DevTools (headless chrome only,not supported on MacOS yet, false by default).
newWindow (Optional)
Type: SystemNullableBoolean
Whether to create a new Window or Tab (chrome-only, false by default).
background (Optional)
Type: SystemNullableBoolean
Whether to create the target in background or foreground (chrome-only,false by default).

Return Value

Type: TaskCreateTargetResponse
returns System.Threading.Tasks.Task<CreateTargetResponse>
See Also