WindowsRuntimeMarshal.RemoveEventHandler<T> 方法

定义

从 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

要移除的事件处理程序。

属性

例外

removeMethodnull

适用于