C# 클래스 Binarysharp.MemoryManagement.Windows.WindowFactory

Class providing tools for manipulating windows.
상속: IFactory
파일 보기 프로젝트 열기: ZenLulz/MemorySharp

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