AccessibilityClientGetFullAXTreeAsync Method |
Version 100.0.140
Fetches the entire accessibility tree for the root Document
Namespace:
CefSharp.DevTools.Accessibility
Assembly:
CefSharp (in CefSharp.dll) Version: 100.0.140.0 (100.0.140.0)
Syntax public Task<GetFullAXTreeResponse> GetFullAXTreeAsync(
int? depth = null,
int? max_depth = null,
string frameId = null
)
public:
Task<GetFullAXTreeResponse^>^ GetFullAXTreeAsync(
Nullable<int> depth = nullptr,
Nullable<int> max_depth = nullptr,
String^ frameId = nullptr
)
Parameters
- depth (Optional)
- Type: SystemNullableInt32
The maximum depth at which descendants of the root node should be retrieved.If omitted, the full tree is returned. - max_depth (Optional)
- Type: SystemNullableInt32
Deprecated. This parameter has been renamed to `depth`. If depth is not provided, max_depth will be used. - frameId (Optional)
- Type: SystemString
The frame for whose document the AX tree should be retrieved.If omited, the root frame is used.
Return Value
Type:
TaskGetFullAXTreeResponsereturns System.Threading.Tasks.Task<GetFullAXTreeResponse>
See Also