BrowserInteropHelper.IsBrowserHosted 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 WPF(Windows Presentation Foundation) 애플리케이션이 브라우저에 호스트되는지 여부를 지정하는 값을 가져옵니다.
public:
static property bool IsBrowserHosted { bool get(); };
public static bool IsBrowserHosted { get; }
member this.IsBrowserHosted : bool
Public Shared ReadOnly Property IsBrowserHosted As Boolean
속성 값
애플리케이션이 브라우저에서 호스팅되면 true
이고, 그렇지 않으면 false
입니다.
예제
다음 예제에서는 브라우저에서 호스트되는지 여부를 Page 확인하는 데 사용하는 BrowserInteropHelper.IsBrowserHosted 방법을 보여 줍니다.
// 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
설명
A Page 는 호스트에 구애받지 않을 수 있으며, 따라서 여러 가지 유형의 호스트(예: , 브라우저 또는 브라우저)FrameNavigationWindow로 로드할 수 있습니다. 이 문제는 하나 이상의 페이지를 포함하는 라이브러리 어셈블리가 있고 여러 독립 실행형 및 검색 가능(XBAP(XAML 브라우저 애플리케이션)) 호스트 애플리케이션에서 참조하는 경우에 발생할 수 있습니다.