DOMClientResolveNodeAsync Method  | 
Version 104.4.240 
            Resolves the JavaScript node object for a given NodeId or BackendNodeId.
            
 
    Namespace: 
   CefSharp.DevTools.DOM
    Assembly:
   CefSharp (in CefSharp.dll) Version: 104.4.240.0 (104.4.240.0)
Syntaxpublic Task<ResolveNodeResponse> ResolveNodeAsync(
	int? nodeId = null,
	int? backendNodeId = null,
	string objectGroup = null,
	int? executionContextId = null
)
public:
Task<ResolveNodeResponse^>^ ResolveNodeAsync(
	Nullable<int> nodeId = nullptr, 
	Nullable<int> backendNodeId = nullptr, 
	String^ objectGroup = nullptr, 
	Nullable<int> executionContextId = nullptr
)
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: 
TaskResolveNodeResponsereturns System.Threading.Tasks.Task<ResolveNodeResponse>
See Also