Click or drag to resize

AccessibilityClient.GetAXNodeAndAncestorsAsync Method

Version 102.0.100
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: 102.0.100.0 (102.0.100.0)
Syntax
public Task<GetAXNodeAndAncestorsResponse> GetAXNodeAndAncestorsAsync(
	int? nodeId = null,
	int? backendNodeId = null,
	string objectId = null
)

Parameters

nodeId (Optional)
Type: System.Nullable<Int32>
Identifier of the node to get.
backendNodeId (Optional)
Type: System.Nullable<Int32>
Identifier of the backend node to get.
objectId (Optional)
Type: System.String
JavaScript object id of the node wrapper to get.

Return Value

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