BrowserTools.Screenshot.GetChildWindowName C# (CSharp) Метод

GetChildWindowName() статический приватный Метод

static private GetChildWindowName ( string processName ) : string
processName string
Результат string
        static string GetChildWindowName(string processName)
        {
            if (processName == "chrome" || processName == "opera")
                return "Chrome_RenderWidgetHostHWND";
            else if (processName == "iexplore")
                return "Internet Explorer_Server";
            else if (isMSEdgeBrowser(processName))
                return "ApplicationFrameInputSinkWindow";

            return "";
        }