AccessibilityClientGetFullAXTreeAsync Method |
Version 130.1.90
Fetches the entire accessibility tree for the root Document
Namespace: CefSharp.DevTools.AccessibilityAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<GetFullAXTreeResponse> GetFullAXTreeAsync(
int? depth = null,
string frameId = null
)
public:
Task<GetFullAXTreeResponse^>^ GetFullAXTreeAsync(
Nullable<int> depth = nullptr,
String^ frameId = nullptr
)
Parameters
- depth NullableInt32 (Optional)
- The maximum depth at which descendants of the root node should be retrieved.If omitted, the full tree is returned.
- frameId String (Optional)
- The frame for whose document the AX tree should be retrieved.If omitted, the root frame is used.
Return Value
TaskGetFullAXTreeResponsereturns System.Threading.Tasks.Task<GetFullAXTreeResponse>
See Also