Click or drag to resize

TargetClientCreateTargetAsync Method

Version 130.1.90
Creates a new page.

Namespace: CefSharp.DevTools.Target
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.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,
	bool? forTab = null
)

Parameters

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

Return Value

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