Click or drag to resize

DOMClient.DescribeNodeAsync Method

Version 130.1.90
Describes node given its id, does not require domain to be enabled. Does not start tracking any objects, can be used for automation.

Namespace: CefSharp.DevTools.DOM
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<DescribeNodeResponse> DescribeNodeAsync(
	int? nodeId = null,
	int? backendNodeId = null,
	string objectId = null,
	int? depth = null,
	bool? pierce = null
)

Parameters

nodeId  Nullable<Int32>  (Optional)
Identifier of the node.
backendNodeId  Nullable<Int32>  (Optional)
Identifier of the backend node.
objectId  String  (Optional)
JavaScript object id of the node wrapper.
depth  Nullable<Int32>  (Optional)
The maximum depth at which children should be retrieved, defaults to 1. Use -1 for theentire subtree or provide an integer larger than 0.
pierce  Nullable<Boolean>  (Optional)
Whether or not iframes and shadow roots should be traversed when returning the subtree(default is false).

Return Value

Task<DescribeNodeResponse>
returns System.Threading.Tasks.Task<DescribeNodeResponse>
See Also