C# Класс Automation.UI.Tree.SearchEngines.TreeWalkerSearchEngine

Implementation of the search engine interface that uses a tree walker to find matching nodes. The tree walker will search the UI automation tree in a breadth first order.
Наследование: SearchEngine
Показать файл Открыть проект

Открытые методы

Метод Описание
GetAllResults ( Query query, System.TimeSpan timeout ) : IEnumerable

Gets all the automation elements found using the condition specified in the specified query.

GetFirstResult ( Query query, System.TimeSpan timeout ) : AutomationElement

Gets the first result for the specified query.

Приватные методы

Метод Описание
ExecuteWithChildren ( AutomationElement root, WithElementCallback callback ) : object

Calls the specified callback for each child of the specified node.

ExecuteWithDescendants ( AutomationElement root, WithElementCallback callback ) : object

Calls the specified callback for each descendant of the specified node.

Описание методов

GetAllResults() публичный Метод

Gets all the automation elements found using the condition specified in the specified query.
public GetAllResults ( Query query, System.TimeSpan timeout ) : IEnumerable
query Query The query.
timeout System.TimeSpan The maximum amount of time to wait for at least one element to become available.
Результат IEnumerable

GetFirstResult() публичный Метод

Gets the first result for the specified query.
public GetFirstResult ( Query query, System.TimeSpan timeout ) : AutomationElement
query Query The query.
timeout System.TimeSpan The maximum amount of time to wait for the required element to become available.
Результат System.Windows.Automation.AutomationElement