| AccessibilityClientGetAXNodeAndAncestorsAsync Method  | 
Version 107.1.120 
            Fetches a node and all ancestors up to and including the root.
            Requires `enable()` to have been called previously.
            
 
    Namespace: 
   CefSharp.DevTools.Accessibility
    Assembly:
   CefSharp (in CefSharp.dll) Version: 107.1.120.0 (107.1.120.0)
 Syntax
Syntaxpublic 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 (Optional)
- Type: SystemNullableInt32
 Identifier of the node to get.
- backendNodeId (Optional)
- Type: SystemNullableInt32
 Identifier of the backend node to get.
- objectId (Optional)
- Type: SystemString
 JavaScript object id of the node wrapper to get.
Return Value
Type: 
TaskGetAXNodeAndAncestorsResponsereturns System.Threading.Tasks.Task<GetAXNodeAndAncestorsResponse>
 See Also
See Also