Nullable: System.Runtime.InteropServices.CustomMarshalers/WindowsRuntime (#23930)
[platform/upstream/coreclr.git] / src / System.Private.CoreLib / src / System / Runtime / InteropServices / WindowsRuntime / WindowsFoundationEventHandler.cs
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4
5 #nullable enable
6 namespace System.Runtime.InteropServices.WindowsRuntime
7 {
8     // WindowsFoundationEventHandler<T> a copy of the definition for the Windows.Foundation.EventHandler<T> delegate
9     [Guid("9de1c535-6ae1-11e0-84e1-18a905bcc53f")]
10     [WindowsRuntimeImport]
11     internal delegate void WindowsFoundationEventHandler<T>(object sender, T args);
12 }