TypedEventHandler<TSender,TResult> 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示處理一般事件的方法。
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.FoundationContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(2648818996, 27361, 4576, 132, 225, 24, 169, 5, 188, 197, 63)]
template <typename TSender, typename TResult>
class TypedEventHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.FoundationContract), 65536)]
[Windows.Foundation.Metadata.Guid(2648818996, 27361, 4576, 132, 225, 24, 169, 5, 188, 197, 63)]
public delegate void TypedEventHandler<TSender,TResult>(TSender sender, TResult args);
Public Delegate Sub TypedEventHandler(Of TSender, TResult)(sender As TSender, args As TResult)
類型參數
- TSender
- TResult
參數
- sender
- TSender
事件的來源。
- args
- TResult
事件資料。 如果沒有事件資料,此參數會是 null。
- 屬性
Windows 需求
裝置系列 |
Windows 10 (已於 10.0.10240.0 引進)
|
API contract |
Windows.Foundation.FoundationContract (已於 v1.0 引進)
|