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

GetWindowsByTitle() public method

Gets all the windows that have the same specified title.
public GetWindowsByTitle ( string windowTitle ) : IEnumerable
windowTitle string The window title string.
return IEnumerable
        public IEnumerable<RemoteWindow> GetWindowsByTitle(string windowTitle)
        {
            return WindowHandles
                .Where(handle => WindowCore.GetWindowText(handle) == windowTitle)
                .Select(handle => new RemoteWindow(_memorySharp, handle));
        }