WindowsRuntimeMarshal.RemoveEventHandler<T> メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したイベントハンドラーを Windows ランタイムイベントから削除します。
この API は製品インフラストラクチャをサポートします。コードから直接使用するものではありません。
public:
generic <typename T>
static void RemoveEventHandler(Action<System::Runtime::InteropServices::WindowsRuntime::EventRegistrationToken> ^ removeMethod, T handler);
[System.Security.SecurityCritical]
public static void RemoveEventHandler<T> (Action<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> removeMethod, T handler);
public static void RemoveEventHandler<T> (Action<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> removeMethod, T handler);
[<System.Security.SecurityCritical>]
static member RemoveEventHandler : Action<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> * 'T -> unit
static member RemoveEventHandler : Action<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> * 'T -> unit
Public Shared Sub RemoveEventHandler(Of T) (removeMethod As Action(Of EventRegistrationToken), handler As T)
型パラメーター
- T
イベント ハンドラーを表すデリゲートの型。
パラメーター
- removeMethod
- Action<EventRegistrationToken>
Windows ランタイムイベントからイベントハンドラーを削除するメソッドを表すデリゲート。
- handler
- T
削除されるイベント ハンドラー。
- 属性
例外
removeMethod
が null
です。