Click or drag to resize

TargetClientCreateTargetAsync Method

Version 102.0.100
Creates a new page.

Namespace:  CefSharp.DevTools.Target
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public Task<CreateTargetResponse> CreateTargetAsync(
	string url,
	int? width = null,
	int? height = null,
	string browserContextId = null,
	bool? enableBeginFrameControl = null,
	bool? newWindow = null,
	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