12 implementations of EnumFormatEtc
ComDisabled.Tests (1)
DataObjectComTests.cs (1)
93public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
PresentationCore (1)
System\Windows\dataobject.cs (1)
586IEnumFORMATETC IComDataObject.EnumFormatEtc(DATADIR dwDirection)
System.Windows.Forms (4)
System\Windows\Forms\OLE\DataObject.Composition.cs (1)
140public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Windows\Forms\OLE\DataObject.Composition.NativeToRuntimeAdapter.cs (1)
58IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR direction)
System\Windows\Forms\OLE\DataObject.Composition.RuntimeToNativeAdapter.cs (1)
27public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Windows\Forms\OLE\DataObject.cs (1)
474IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (6)
System\Windows\Forms\ClipboardTests.cs (2)
612ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 1157public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectComTests.cs (1)
72public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectTests.cs (2)
1867public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException(); 2674public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10261public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
16 references to EnumFormatEtc
PresentationCore (2)
System\Windows\dataobject.cs (2)
590return ((OleConverter)_innerData).OleDataObject.EnumFormatEtc(dwDirection); 3244return _innerData.EnumFormatEtc(dwDirection);
System.Windows.Forms (2)
System\Windows\Forms\OLE\DataObject.Composition.cs (1)
140public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Windows\Forms\OLE\DataObject.Composition.RuntimeToNativeAdapter.cs (1)
27public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System.Windows.Forms.Tests (12)
System\Windows\Forms\DataObjectTests.cs (12)
2004IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2059IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2121IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2146IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2169IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2219IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2248IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2311IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2338((Action)(() => comDataObject.EnumFormatEtc(dwDirection))).Should().Throw<ExternalException>(); 2360.Setup(o => o.EnumFormatEtc(dwDirection)) 2365comDataObject.EnumFormatEtc(dwDirection).Should().BeSameAs(result); 2366mockComDataObject.Verify(o => o.EnumFormatEtc(dwDirection), Times.Once());