DOMClientResolveNodeAsync Method |
Version 98.1.210
Resolves the JavaScript node object for a given NodeId or BackendNodeId.
Namespace:
CefSharp.DevTools.DOM
Assembly:
CefSharp (in CefSharp.dll) Version: 98.1.210.0 (98.1.210.0)
Syntax public 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