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)
582
IEnumFORMATETC
IComDataObject.EnumFormatEtc(DATADIR dwDirection)
2332
public void Clone(out
IEnumFORMATETC
ppenum)
2441
IEnumFORMATETC
enumFORMATETC = EnumFormatEtcInner(DATADIR.DATADIR_GET);
3220
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)
127
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)
101
public void Clone(out ComTypes.
IEnumFORMATETC
ppenum)
143
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)
332
IEnumFORMATETC
ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (23)
System\Windows\Forms\ClipboardTests.cs (4)
600
public static extern int SHCreateStdEnumFmtEtc(uint cfmt, ComTypes.FORMATETC[] afmt, out ComTypes.
IEnumFORMATETC
ppenumFormatEtc);
605
ComTypes.
IEnumFORMATETC
ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction)
610
ComTypes.
IEnumFORMATETC
enumerator;
1171
public ComTypes.
IEnumFORMATETC
EnumFormatEtc(ComTypes.DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectComTests.cs (1)
72
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectTests.cs (17)
1948
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
2085
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2140
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2202
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2227
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2250
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2300
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2301
source.Clone(out
IEnumFORMATETC
enumerator);
2329
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2330
source.Clone(out
IEnumFORMATETC
enumerator);
2392
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2393
source.Clone(out
IEnumFORMATETC
enumerator);
2422
public static TheoryData<DATADIR,
IEnumFORMATETC
> EnumFormatEtc_CustomComDataObject_TheoryData()
2424
TheoryData<DATADIR,
IEnumFORMATETC
> theoryData = [];
2425
Mock<
IEnumFORMATETC
> mockEnumFormatEtc = new(MockBehavior.Strict);
2437
public void DataObject_EnumFormatEtc_InvokeCustomComDataObject_Success(DATADIR dwDirection,
IEnumFORMATETC
result)
2755
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10261
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();