Binarysharp.MemoryManagement.Windows.WindowFactory.GetWindowsByTitleContains C# (CSharp) Méthode

GetWindowsByTitleContains() public méthode

Gets all the windows that contain the specified title.
public GetWindowsByTitleContains ( string windowTitle ) : IEnumerable
windowTitle string A part a window title string.
Résultat IEnumerable
        public IEnumerable<RemoteWindow> GetWindowsByTitleContains(string windowTitle)
        {
            return WindowHandles
                .Where(handle => WindowCore.GetWindowText(handle).Contains(windowTitle))
                .Select(handle => new RemoteWindow(_memorySharp, handle));
        }