2 writes to HostBrowser
PresentationFramework (2)
src\Framework\MS\Internal\AppModel\ApplicationProxyInternal.cs (1)
223BrowserInteropHelper.HostBrowser = initData.HostBrowser;
src\Framework\System\Windows\Interop\BrowserInteropHelper.cs (1)
244HostBrowser = null;
20 references to HostBrowser
PresentationFramework (20)
src\Framework\MS\Internal\AppModel\RootBrowserWindow.cs (15)
431BrowserInteropHelper.HostBrowser.SetTitle(title); 459if (BrowserInteropHelper.HostBrowser != null) // could be null if shutting down 461BrowserInteropHelper.HostBrowser.SetStatusText(statusString); 482if (BrowserInteropHelper.HostBrowser != null) 494BrowserInteropHelper.HostBrowser.SetHeight(heightDeviceUnits); 508if (BrowserInteropHelper.HostBrowser != null) 520BrowserInteropHelper.HostBrowser.SetWidth(widthDeviceUnits); 550if (BrowserInteropHelper.HostBrowser != null) 554BrowserInteropHelper.HostBrowser.GoBack(); 579if (BrowserInteropHelper.HostBrowser != null) 583BrowserInteropHelper.HostBrowser.GoForward(); 839int browserLeft = BrowserInteropHelper.HostBrowser.GetLeft(); 840uint curBrowserWidth = BrowserInteropHelper.HostBrowser.GetWidth(); 860int browserTop = BrowserInteropHelper.HostBrowser.GetTop(); 861uint curBrowserHeight = BrowserInteropHelper.HostBrowser.GetHeight();
src\Framework\MS\Internal\AppModel\XappLauncher.cs (1)
1198BrowserInteropHelper.HostBrowser.SetStatusText(newStatusText);
src\Framework\System\Windows\Interop\BrowserInteropHelper.cs (3)
95IHostBrowser2 hb2 = HostBrowser as IHostBrowser2; 241if (HostBrowser != null) 243Marshal.ReleaseComObject(HostBrowser);
src\Framework\System\Windows\Navigation\NavigationService.cs (1)
1230BrowserInteropHelper.HostBrowser.GetTop();