Click or drag to resize

DOMClient.ResolveNodeAsync Method

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

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

Parameters

nodeId (Optional)
Type: System.Nullable<Int32>
Id of the node to resolve.
backendNodeId (Optional)
Type: System.Nullable<Int32>
Backend identifier of the node to resolve.
objectGroup (Optional)
Type: System.String
Symbolic group name that can be used to release multiple objects.
executionContextId (Optional)
Type: System.Nullable<Int32>
Execution context in which to resolve the node.

Return Value

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