Binarysharp.MemoryManagement.Windows.WindowFactory.this C# (CSharp) Method

this() public method

Gets all the windows that have the same specified title.
public this ( string windowTitle ) : IEnumerable
windowTitle string The window title string.
return IEnumerable
        public IEnumerable<RemoteWindow> this[string windowTitle]
        {
            get { return GetWindowsByTitle(windowTitle); }
        }