44 references to DATADIR
ComDisabled.Tests (3)
ClipboardComTests.cs (2)
86ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 88if (direction == ComTypes.DATADIR.DATADIR_GET)
DataObjectComTests.cs (1)
93public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
netstandard (1)
netstandard.cs (1)
1628[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.InteropServices.ComTypes.DATADIR))]
PresentationCore (4)
System\Windows\dataobject.cs (4)
582IEnumFORMATETC IComDataObject.EnumFormatEtc(DATADIR dwDirection) 588if (dwDirection == DATADIR.DATADIR_GET) 2441IEnumFORMATETC enumFORMATETC = EnumFormatEtcInner(DATADIR.DATADIR_GET); 3220private IEnumFORMATETC EnumFormatEtcInner(DATADIR dwDirection)
System (1)
src\libraries\shims\System\ref\System.cs (1)
819[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.InteropServices.ComTypes.DATADIR))]
System.Private.Windows.Core (6)
System\Private\Windows\Ole\Composition.cs (1)
127public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (1)
232if (dwDirection == (uint)ComTypes.DATADIR.DATADIR_GET)
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
547nativeDataObject.Value->EnumFormatEtc((uint)DATADIR.DATADIR_GET, enumFORMATETC).AssertSuccess();
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (1)
55public IEnumFORMATETC EnumFormatEtc(DATADIR direction)
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (2)
24public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction); 79var comTypeFormatEtc = EnumFormatEtc((DATADIR)(int)dwDirection);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComTypes\IDataObject.cs (1)
67IEnumFORMATETC EnumFormatEtc(DATADIR direction);
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.cs (1)
332IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (26)
System\Windows\Forms\ClipboardTests.cs (3)
605ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 607if (direction == ComTypes.DATADIR.DATADIR_GET) 1171public 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 (21)
1948public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException(); 2085IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2140IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2202IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2227IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2250IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2300IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2329IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2392IEnumFORMATETC source = comDataObject.EnumFormatEtc(DATADIR.DATADIR_GET); 2412[InlineData(DATADIR.DATADIR_SET)] 2413[InlineData(DATADIR.DATADIR_GET - 1)] 2414[InlineData(DATADIR.DATADIR_SET + 1)] 2415public void DataObject_EnumFormatEtc_InvokeNotGet_ThrowsExternalException(DATADIR dwDirection) 2422public static TheoryData<DATADIR, IEnumFORMATETC> EnumFormatEtc_CustomComDataObject_TheoryData() 2424TheoryData<DATADIR, IEnumFORMATETC> theoryData = []; 2427theoryData.Add(DATADIR.DATADIR_GET, mockEnumFormatEtc.Object); 2428theoryData.Add(DATADIR.DATADIR_SET, mockEnumFormatEtc.Object); 2429theoryData.Add(DATADIR.DATADIR_GET - 1, mockEnumFormatEtc.Object); 2430theoryData.Add(DATADIR.DATADIR_SET + 1, mockEnumFormatEtc.Object); 2437public void DataObject_EnumFormatEtc_InvokeCustomComDataObject_Success(DATADIR dwDirection, IEnumFORMATETC result) 2755public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10261public 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();