TypedEventHandler<TSender,TResult> Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a method that handles general events.
/// [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)
Type Parameters
- TSender
- TResult
Parameters
- sender
- TSender
The event source.
- args
- TResult
The event data. If there is no event data, this parameter will be null.
- Attributes
Windows requirements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.FoundationContract (introduced in v1.0)
|