2 implementations of IEnumFORMATETC
PresentationCore (1)
System\Windows\dataobject.cs (1)
2249
private class FormatEnumerator :
IEnumFORMATETC
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.FormatEnumerator.cs (1)
15
private unsafe class FormatEnumerator : ComTypes.
IEnumFORMATETC
, IEnumFORMATETC.Interface, IManagedWrapper<IEnumFORMATETC>
40 references to IEnumFORMATETC
ComDisabled.Tests (1)
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)
586
IEnumFORMATETC
IComDataObject.EnumFormatEtc(DATADIR dwDirection)
2358
public void Clone(out
IEnumFORMATETC
ppenum)
2467
IEnumFORMATETC
enumFORMATETC = EnumFormatEtcInner(DATADIR.DATADIR_GET);
3242
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.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 (8)
System\Windows\Forms\OLE\DataObject.Composition.cs (1)
140
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Windows\Forms\OLE\DataObject.Composition.NativeToRuntimeAdapter.cs (2)
58
IEnumFORMATETC
ComTypes.IDataObject.EnumFormatEtc(DATADIR direction)
67
return (
IEnumFORMATETC
)ComHelpers.GetObjectForIUnknown(nativeFormat);
System\Windows\Forms\OLE\DataObject.Composition.RuntimeToNativeAdapter.cs (2)
27
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
82
var
comTypeFormatEtc = EnumFormatEtc((DATADIR)(int)dwDirection);
System\Windows\Forms\OLE\DataObject.cs (1)
474
IEnumFORMATETC
ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System\Windows\Forms\OLE\DataObject.FormatEnumerator.cs (2)
105
public void Clone(out ComTypes.
IEnumFORMATETC
ppenum)
147
Clone(out
var
cloned);
System.Windows.Forms.Tests (23)
System\Windows\Forms\ClipboardTests.cs (4)
607
public static extern int SHCreateStdEnumFmtEtc(uint cfmt, ComTypes.FORMATETC[] afmt, out ComTypes.
IEnumFORMATETC
ppenumFormatEtc);
612
ComTypes.
IEnumFORMATETC
ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction)
617
ComTypes.
IEnumFORMATETC
enumerator;
1157
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)
1867
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
2004
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2059
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2121
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2146
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2169
IEnumFORMATETC
enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2219
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2220
source.Clone(out
IEnumFORMATETC
enumerator);
2248
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2249
source.Clone(out
IEnumFORMATETC
enumerator);
2311
IEnumFORMATETC
source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET);
2312
source.Clone(out
IEnumFORMATETC
enumerator);
2341
public static TheoryData<DATADIR,
IEnumFORMATETC
> EnumFormatEtc_CustomComDataObject_TheoryData()
2343
TheoryData<DATADIR,
IEnumFORMATETC
> theoryData = [];
2344
Mock<
IEnumFORMATETC
> mockEnumFormatEtc = new(MockBehavior.Strict);
2356
public void DataObject_EnumFormatEtc_InvokeCustomComDataObject_Success(DATADIR dwDirection,
IEnumFORMATETC
result)
2674
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10261
public
IEnumFORMATETC
EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();