C# Класс Binarysharp.MemoryManagement.Windows.WindowFactory

Class providing tools for manipulating windows.
Наследование: IFactory
Показать файл Открыть проект

Private Properties

Свойство Тип Описание
WindowFactory System

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

Метод Описание
Dispose ( ) : void

Releases all resources used by the WindowFactory object.

GetWindowsByClassName ( string className ) : IEnumerable

Gets all the windows that have the specified class name.

GetWindowsByTitle ( string windowTitle ) : IEnumerable

Gets all the windows that have the same specified title.

GetWindowsByTitleContains ( string windowTitle ) : IEnumerable

Gets all the windows that contain the specified title.

this ( string windowTitle ) : IEnumerable

Gets all the windows that have the same specified title.

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

Метод Описание
WindowFactory ( MemorySharp memorySharp ) : System

Initializes a new instance of the WindowFactory class.

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

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

Releases all resources used by the WindowFactory object.
public Dispose ( ) : void
Результат void

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

Gets all the windows that have the specified class name.
public GetWindowsByClassName ( string className ) : IEnumerable
className string The class name string.
Результат IEnumerable

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

Gets all the windows that have the same specified title.
public GetWindowsByTitle ( string windowTitle ) : IEnumerable
windowTitle string The window title string.
Результат IEnumerable

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

Gets all the windows that contain the specified title.
public GetWindowsByTitleContains ( string windowTitle ) : IEnumerable
windowTitle string A part a window title string.
Результат IEnumerable

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

Gets all the windows that have the same specified title.
public this ( string windowTitle ) : IEnumerable
windowTitle string The window title string.
Результат IEnumerable