14 implementations of EnumFormatEtc
ComDisabled.Tests (2)
ClipboardComTests.cs (1)
86ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction)
DataObjectComTests.cs (1)
93public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
PresentationCore (1)
System\Windows\dataobject.cs (1)
572IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
196public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (1)
55public IEnumFORMATETC EnumFormatEtc(DATADIR direction)
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (1)
24public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.cs (1)
298IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (6)
System\Windows\Forms\ClipboardTests.cs (2)
511ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 1067public 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 (2)
1947public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException(); 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();
14 references to EnumFormatEtc
System.Private.Windows.Core (2)
System\Private\Windows\Ole\Composition.cs (1)
196public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (1)
24public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System.Windows.Forms.Tests (12)
System\Windows\Forms\DataObjectTests.cs (12)
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); 2328IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2391IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2418((Action)(() => comDataObject.EnumFormatEtc(dwDirection))).Should().Throw<ExternalException>(); 2440.Setup(o => o.EnumFormatEtc(dwDirection)) 2445comDataObject.EnumFormatEtc(dwDirection).Should().BeSameAs(result); 2446mockComDataObject.Verify(o => o.EnumFormatEtc(dwDirection), Times.Once());