共用方式為


WindowsRuntimeMarshal.AddEventHandler<T> 方法

定義

將指定的事件處理常式加入至Windows 執行階段事件。

此 API 支援此產品基礎結構,但無法直接用於程式碼之中。

public:
generic <typename T>
 static void AddEventHandler(Func<T, System::Runtime::InteropServices::WindowsRuntime::EventRegistrationToken> ^ addMethod, Action<System::Runtime::InteropServices::WindowsRuntime::EventRegistrationToken> ^ removeMethod, T handler);
[System.Security.SecurityCritical]
public static void AddEventHandler<T> (Func<T,System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> addMethod, Action<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> removeMethod, T handler);
public static void AddEventHandler<T> (Func<T,System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> addMethod, Action<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> removeMethod, T handler);
[<System.Security.SecurityCritical>]
static member AddEventHandler : Func<'T, System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> * Action<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> * 'T -> unit
static member AddEventHandler : Func<'T, System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> * Action<System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken> * 'T -> unit
Public Shared Sub AddEventHandler(Of T) (addMethod As Func(Of T, EventRegistrationToken), removeMethod As Action(Of EventRegistrationToken), handler As T)

類型參數

T

代表事件處理常式之委派的型別。

參數

addMethod
Func<T,EventRegistrationToken>

委派,表示將事件處理常式加入至 Windows 執行階段 事件的方法。

removeMethod
Action<EventRegistrationToken>

委派,表示從 Windows 執行階段 事件中移除事件處理常式的方法。

handler
T

代表新增之事件處理常式的委派。

屬性

例外狀況

addMethodnull

-或-

removeMethodnull

適用於