2 implementations of IEnumFORMATETC
PresentationCore (1)
System\Windows\dataobject.cs (1)
2221private class FormatEnumerator : IEnumFORMATETC
System.Private.Windows.Core (1)
System\Private\Windows\Ole\FormatEnumerator.cs (1)
13internal unsafe class FormatEnumerator : ComTypes.IEnumFORMATETC, IEnumFORMATETC.Interface, IManagedWrapper<IEnumFORMATETC>
44 references to IEnumFORMATETC
ComDisabled.Tests (4)
ClipboardComTests.cs (3)
81public static extern int SHCreateStdEnumFmtEtc(uint cfmt, ComTypes.FORMATETC[] afmt, out ComTypes.IEnumFORMATETC ppenumFormatEtc); 86ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 91ComTypes.IEnumFORMATETC enumerator;
DataObjectComTests.cs (1)
93public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
netstandard (1)
netstandard.cs (1)
1648[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.InteropServices.ComTypes.IEnumFORMATETC))]
PresentationCore (4)
System\Windows\dataobject.cs (4)
582IEnumFORMATETC IComDataObject.EnumFormatEtc(DATADIR dwDirection) 2332public void Clone(out IEnumFORMATETC ppenum) 2441IEnumFORMATETC enumFORMATETC = EnumFormatEtcInner(DATADIR.DATADIR_GET); 3220private IEnumFORMATETC EnumFormatEtcInner(DATADIR dwDirection)
System (1)
src\libraries\shims\System\ref\System.cs (1)
824[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.InteropServices.ComTypes.IEnumFORMATETC))]
System.Private.Windows.Core (7)
System\Private\Windows\Ole\Composition.cs (1)
127public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (2)
55public IEnumFORMATETC EnumFormatEtc(DATADIR direction) 64return (IEnumFORMATETC)ComHelpers.GetObjectForIUnknown(nativeFormat);
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (2)
24public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction); 79var comTypeFormatEtc = EnumFormatEtc((DATADIR)(int)dwDirection);
System\Private\Windows\Ole\FormatEnumerator.cs (2)
101public void Clone(out ComTypes.IEnumFORMATETC ppenum) 143Clone(out var cloned);
System.Runtime.InteropServices (2)
System\Runtime\InteropServices\ComTypes\IDataObject.cs (1)
67IEnumFORMATETC EnumFormatEtc(DATADIR direction);
System\Runtime\InteropServices\ComTypes\IEnumFormatETC.cs (1)
47void Clone(out IEnumFORMATETC newEnum);
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.cs (1)
332IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (23)
System\Windows\Forms\ClipboardTests.cs (4)
600public static extern int SHCreateStdEnumFmtEtc(uint cfmt, ComTypes.FORMATETC[] afmt, out ComTypes.IEnumFORMATETC ppenumFormatEtc); 605ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 610ComTypes.IEnumFORMATETC enumerator; 1171public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectComTests.cs (1)
72public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectTests.cs (17)
1948public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException(); 2085IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2140IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2202IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2227IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2250IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2300IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2301source.Clone(out IEnumFORMATETC enumerator); 2329IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2330source.Clone(out IEnumFORMATETC enumerator); 2392IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2393source.Clone(out IEnumFORMATETC enumerator); 2422public static TheoryData<DATADIR, IEnumFORMATETC> EnumFormatEtc_CustomComDataObject_TheoryData() 2424TheoryData<DATADIR, IEnumFORMATETC> theoryData = []; 2425Mock<IEnumFORMATETC> mockEnumFormatEtc = new(MockBehavior.Strict); 2437public void DataObject_EnumFormatEtc_InvokeCustomComDataObject_Success(DATADIR dwDirection, IEnumFORMATETC result) 2755public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10261public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System.Windows.Forms.TestUtilities (1)
Data\ManagedAndRuntimeDataObject.cs (1)
15public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.DATADIR direction) => throw new NotImplementedException();