41 references to DATADIR
ComDisabled.Tests (1)
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)
586IEnumFORMATETC IComDataObject.EnumFormatEtc(DATADIR dwDirection) 592if (dwDirection == DATADIR.DATADIR_GET) 2467IEnumFORMATETC enumFORMATETC = EnumFormatEtcInner(DATADIR.DATADIR_GET); 3242private 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.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComTypes\IDataObject.cs (1)
67IEnumFORMATETC EnumFormatEtc(DATADIR direction);
System.Windows.Forms (7)
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.NativeToWinFormsAdapter.cs (1)
585nativeDataObject.Value->EnumFormatEtc((uint)DATADIR.DATADIR_GET, enumFORMATETC).AssertSuccess();
System\Windows\Forms\OLE\DataObject.Composition.RuntimeToNativeAdapter.cs (2)
27public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => _runtimeDataObject.EnumFormatEtc(direction); 82var comTypeFormatEtc = EnumFormatEtc((DATADIR)(int)dwDirection);
System\Windows\Forms\OLE\DataObject.Composition.WinFormsToNativeAdapter.cs (1)
271if (dwDirection == (uint)ComTypes.DATADIR.DATADIR_GET)
System\Windows\Forms\OLE\DataObject.cs (1)
474IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (26)
System\Windows\Forms\ClipboardTests.cs (3)
612ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 614if (direction == ComTypes.DATADIR.DATADIR_GET) 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 (21)
1867public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException(); 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); 2331[InlineData(DATADIR.DATADIR_SET)] 2332[InlineData(DATADIR.DATADIR_GET - 1)] 2333[InlineData(DATADIR.DATADIR_SET + 1)] 2334public void DataObject_EnumFormatEtc_InvokeNotGet_ThrowsExternalException(DATADIR dwDirection) 2341public static TheoryData<DATADIR, IEnumFORMATETC> EnumFormatEtc_CustomComDataObject_TheoryData() 2343TheoryData<DATADIR, IEnumFORMATETC> theoryData = []; 2346theoryData.Add(DATADIR.DATADIR_GET, mockEnumFormatEtc.Object); 2347theoryData.Add(DATADIR.DATADIR_SET, mockEnumFormatEtc.Object); 2348theoryData.Add(DATADIR.DATADIR_GET - 1, mockEnumFormatEtc.Object); 2349theoryData.Add(DATADIR.DATADIR_SET + 1, mockEnumFormatEtc.Object); 2356public void DataObject_EnumFormatEtc_InvokeCustomComDataObject_Success(DATADIR dwDirection, IEnumFORMATETC result) 2674public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10261public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException();