BrowserInteropHelper.HostScript プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
XAML ブラウザー アプリケーション (XBAP) がフレームでホストされている場合に、HTML ウィンドウ オブジェクト、カスタム スクリプト関数、および HTML ページのグローバル変数へのアクセスを提供するスクリプト オブジェクトを取得します。
public:
static property System::Object ^ HostScript { System::Object ^ get(); };
public static dynamic HostScript { [System.Security.SecurityCritical] [System.Security.SecurityTreatAsSafe] get; }
public static dynamic HostScript { get; }
[<get: System.Security.SecurityCritical>]
[<get: System.Security.SecurityTreatAsSafe>]
static member HostScript : obj
static member HostScript : obj
Public Shared ReadOnly Property HostScript As Object
プロパティ値
XAML ブラウザー アプリケーション (XBAP) がフレームでホストされている場合に、HTML ウィンドウ オブジェクト、カスタム スクリプト関数、および HTML ページのグローバル変数へのアクセスを提供するスクリプト オブジェクト。それ以外の場合は null
。
- 属性
例
次の例では、オブジェクトを取得してブラウザー ウィンドウを HostScript 閉じる方法を示します。
<Grid>
<Button Width="160" Height="60" Click="Button_Click" Content="Close Browser Window" />
</Grid>
private void Button_Click(object sender, RoutedEventArgs e)
{
// Retrieve the script object. The XBAP must be hosted in a frame or
// the HostScript object will be null.
var scriptObject = BrowserInteropHelper.HostScript;
// Call close to close the browser window.
scriptObject.Close();
}
Private Sub Button_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
' Retrieve the script object The XBAP must be hosted in a frame or
' the HostScript object will be null.
Dim scriptObject = BrowserInteropHelper.HostScript
' Call close to close the browser window.
scriptObject.Close()
End Sub
注釈
返された HostScript オブジェクトを使用すると、HTML ウィンドウ オブジェクトのプロパティ、メソッド、およびイベントにアクセスしたり、スクリプト関数を直接呼び出したり、グローバル変数にアクセスしたりできます。 これらの項目にアクセスするための構文では、使い慣れたドット表記が使用されます。
window オブジェクトの詳細については、「 Window」を参照してください。
フレームがクロスドメインのnull
場所から に移動した場合、 プロパティは HostScript を返します。
この機能は、 ScriptInteropDisallow レジストリ値を設定することで、ブラウザーでオフにすることができます。 詳細については、「 セキュリティ (WPF)」を参照してください。
適用対象
.NET