AccessibilityClientGetAXNodeAndAncestorsAsync Method |
Version 130.1.90
Fetches a node and all ancestors up to and including the root.
Requires `enable()` to have been called previously.
Namespace: CefSharp.DevTools.AccessibilityAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<GetAXNodeAndAncestorsResponse> GetAXNodeAndAncestorsAsync(
int? nodeId = null,
int? backendNodeId = null,
string objectId = null
)
public:
Task<GetAXNodeAndAncestorsResponse^>^ GetAXNodeAndAncestorsAsync(
Nullable<int> nodeId = nullptr,
Nullable<int> backendNodeId = nullptr,
String^ objectId = nullptr
)
Parameters
- nodeId NullableInt32 (Optional)
- Identifier of the node to get.
- backendNodeId NullableInt32 (Optional)
- Identifier of the backend node to get.
- objectId String (Optional)
- JavaScript object id of the node wrapper to get.
Return Value
TaskGetAXNodeAndAncestorsResponsereturns System.Threading.Tasks.Task<GetAXNodeAndAncestorsResponse>
See Also