Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

BrowserInteropHelper.IsBrowserHosted Property

Definition

Namespace:
System.Windows.Interop
Assembly:
PresentationFramework.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets a value that specifies whether the current Windows Presentation Foundation (WPF) application is browser hosted.

public:
 static property bool IsBrowserHosted { bool get(); };
public static bool IsBrowserHosted { get; }
static member IsBrowserHosted : bool
Public Shared ReadOnly Property IsBrowserHosted As Boolean

Property Value

true if the application is browser hosted; otherwise, false.

Examples

The following example demonstrates how to use BrowserInteropHelper.IsBrowserHosted to determine if a Page is hosted in a browser.

// Detect if browser hosted
if (BrowserInteropHelper.IsBrowserHosted) 
{
 // Note: can only inspect BrowserInteropHelper.Source property if page is browser-hosted.
 this.dataTextBlock.Text = "Is Browser Hosted: " + BrowserInteropHelper.Source.ToString();
}
else 
{
 this.dataTextBlock.Text = "Is not browser hosted";
}
' Detect if browser hosted
If BrowserInteropHelper.IsBrowserHosted Then
 ' Note: can only inspect BrowserInteropHelper.Source property if page is browser-hosted.
 Me.dataTextBlock.Text = "Is Browser Hosted: " & BrowserInteropHelper.Source.ToString()
Else
 Me.dataTextBlock.Text = "Is not browser hosted"
End If

Remarks

A Page can be host agnostic and, consequently, can be loaded into several different types of hosts, including a Frame, a NavigationWindow, or a browser. This can happen when you have a library assembly that contains one or more pages, and which is referenced by multiple standalone and browsable (XAML browser application (XBAP)) host applications.

Applies to


Feedback

Was this page helpful?