Click or drag to resize

DOMClientResolveNodeAsync Method

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

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

Parameters

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

Return Value

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