Nullable: System.Runtime.InteropServices.CustomMarshalers/WindowsRuntime (#23930)
[platform/upstream/coreclr.git] / src / System.Private.CoreLib / src / System / Runtime / InteropServices / ComTypes / IEnumerable.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.ComTypes
7 {
8     /*==========================================================================
9     ** Interface: IEnumerable
10     ** Purpose:
11     ** This interface is redefined here since the original IEnumerable interface
12     ** has all its methods marked as ecall's since it is a managed standard
13     ** interface. This interface is used from within the runtime to make a call
14     ** on the COM server directly when it implements the IEnumerable interface.
15     ==========================================================================*/
16     [Guid("496B0ABE-CDEE-11d3-88E8-00902754C43A")]
17     internal interface IEnumerable
18     {
19         [DispId(-4)]
20         System.Collections.IEnumerator GetEnumerator();
21     }
22 }