2 implementations of IEnumFORMATETC
PresentationCore (1)
System\Windows\dataobject.cs (1)
2221
private class FormatEnumerator :
IEnumFORMATETC
System.Private.Windows.Core (1)
System\Private\Windows\Ole\FormatEnumerator.cs (1)
13
internal unsafe class FormatEnumerator : ComTypes.
IEnumFORMATETC
, IEnumFORMATETC.Interface, IManagedWrapper<IEnumFORMATETC>
44 references to IEnumFORMATETC
ComDisabled.Tests (4)
ClipboardComTests.cs (3)
81
public static extern int SHCreateStdEnumFmtEtc(uint cfmt, ComTypes.FORMATETC[] afmt, out ComTypes.
IEnumFORMATETC
ppenumFormatEtc);
86
ComTypes.
IEnumFORMATETC
ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction)
91
ComTypes.
IEnumFORMATETC
enumerator;
DataObjectComTests.cs (1)
93
public
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)
583
IEnumFORMATETC
IComDataObject.EnumFormatEtc(DATADIR dwDirection)
2332
public void Clone(out
IEnumFORMATETC
ppenum)
2441
IEnumFORMATETC
enumFORMATETC = EnumFormatEtcInner(DATADIR.DATADIR_GET);
3219
private
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)
196
public ComTypes.
IEnumFORMATETC
EnumFormatEtc(ComTypes.DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (2)
55
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction)
64
return (
IEnumFORMATETC
)ComHelpers.GetObjectForIUnknown(nativeFormat);
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (2)
24
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
79
var
comTypeFormatEtc = EnumFormatEtc((DATADIR)(int)dwDirection);
System\Private\Windows\Ole\FormatEnumerator.cs (2)
103
public void Clone(out ComTypes.
IEnumFORMATETC
ppenum)
145
Clone(out
var
cloned);
System.Runtime.InteropServices (2)
System\Runtime\InteropServices\ComTypes\IDataObject.cs (1)
67
IEnumFORMATETC
EnumFormatEtc(DATADIR direction);
System\Runtime\InteropServices\ComTypes\IEnumFormatETC.cs (1)
47
void Clone(out
IEnumFORMATETC
newEnum);
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.cs (1)
298
IEnumFORMATETC
ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (23)
System\Windows\Forms\ClipboardTests.cs (4)
603
public static extern int SHCreateStdEnumFmtEtc(uint cfmt, ComTypes.FORMATETC[] afmt, out ComTypes.
IEnumFORMATETC
ppenumFormatEtc);
608
ComTypes.
IEnumFORMATETC
ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction)
613
ComTypes.
IEnumFORMATETC
enumerator;
1164
public ComTypes.
IEnumFORMATETC
EnumFormatEtc(ComTypes.DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectComTests.cs (1)
74
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectTests.cs (17)
1947
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
2084
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2139
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2201
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2226
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2249
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2299
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2300
source.Clone(out
IEnumFORMATETC
enumerator);
2328
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2329
source.Clone(out
IEnumFORMATETC
enumerator);
2391
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2392
source.Clone(out
IEnumFORMATETC
enumerator);
2421
public static TheoryData<DATADIR,
IEnumFORMATETC
> EnumFormatEtc_CustomComTheoryData()
2423
TheoryData<DATADIR,
IEnumFORMATETC
> theoryData = [];
2424
Mock<
IEnumFORMATETC
> mockEnumFormatEtc = new(MockBehavior.Strict);
2436
public void EnumFormatEtc_InvokeCustomComSuccess(DATADIR dwDirection,
IEnumFORMATETC
result)
2754
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10263
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System.Windows.Forms.TestUtilities (1)
Data\ManagedAndRuntimeDataObject.cs (1)
15
public ComTypes.
IEnumFORMATETC
EnumFormatEtc(ComTypes.DATADIR direction) => throw new NotImplementedException();