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)
583IEnumFORMATETC IComDataObject.EnumFormatEtc(DATADIR dwDirection) 2332public void Clone(out IEnumFORMATETC ppenum) 2441IEnumFORMATETC enumFORMATETC = EnumFormatEtcInner(DATADIR.DATADIR_GET); 3219private 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)
196public 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)
103public void Clone(out ComTypes.IEnumFORMATETC ppenum) 145Clone(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)
298IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (23)
System\Windows\Forms\ClipboardTests.cs (4)
603public static extern int SHCreateStdEnumFmtEtc(uint cfmt, ComTypes.FORMATETC[] afmt, out ComTypes.IEnumFORMATETC ppenumFormatEtc); 608ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 613ComTypes.IEnumFORMATETC enumerator; 1164public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectComTests.cs (1)
74public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectTests.cs (17)
1947public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException(); 2084IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2139IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2201IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2226IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2249IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2299IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2300source.Clone(out IEnumFORMATETC enumerator); 2328IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2329source.Clone(out IEnumFORMATETC enumerator); 2391IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2392source.Clone(out IEnumFORMATETC enumerator); 2421public static TheoryData<DATADIR, IEnumFORMATETC> EnumFormatEtc_CustomComTheoryData() 2423TheoryData<DATADIR, IEnumFORMATETC> theoryData = []; 2424Mock<IEnumFORMATETC> mockEnumFormatEtc = new(MockBehavior.Strict); 2436public void EnumFormatEtc_InvokeCustomComSuccess(DATADIR dwDirection, IEnumFORMATETC result) 2754public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10263public 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();