Click or drag to resize

DOMClientResolveNodeAsync Method

Version 130.1.90
Resolves the JavaScript node object for a given NodeId or BackendNodeId.

Namespace: CefSharp.DevTools.DOM
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<ResolveNodeResponse> ResolveNodeAsync(
	int? nodeId = null,
	int? backendNodeId = null,
	string objectGroup = null,
	int? executionContextId = null
)

Parameters

nodeId  NullableInt32  (Optional)
Id of the node to resolve.
backendNodeId  NullableInt32  (Optional)
Backend identifier of the node to resolve.
objectGroup  String  (Optional)
Symbolic group name that can be used to release multiple objects.
executionContextId  NullableInt32  (Optional)
Execution context in which to resolve the node.

Return Value

TaskResolveNodeResponse
returns System.Threading.Tasks.Task<ResolveNodeResponse>
See Also