41 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 (1)
System\Windows\dataobject.cs (1)
572IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(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)
196public 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)
550nativeDataObject.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)
298IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection) =>
System.Windows.Forms.Tests (26)
System\Windows\Forms\ClipboardTests.cs (3)
511ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.DATADIR direction) 513if (direction == ComTypes.DATADIR.DATADIR_GET) 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 (21)
1947public IEnumFORMATETC EnumFormatEtc(DATADIR direction) => throw new NotImplementedException(); 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); 2411[InlineData(DATADIR.DATADIR_SET)] 2412[InlineData(DATADIR.DATADIR_GET - 1)] 2413[InlineData(DATADIR.DATADIR_SET + 1)] 2414public void EnumFormatEtc_InvokeNotGet_ThrowsExternalException(DATADIR dwDirection) 2421public static TheoryData<DATADIR, IEnumFORMATETC> EnumFormatEtc_CustomComTheoryData() 2423TheoryData<DATADIR, IEnumFORMATETC> theoryData = []; 2426theoryData.Add(DATADIR.DATADIR_GET, mockEnumFormatEtc.Object); 2427theoryData.Add(DATADIR.DATADIR_SET, mockEnumFormatEtc.Object); 2428theoryData.Add(DATADIR.DATADIR_GET - 1, mockEnumFormatEtc.Object); 2429theoryData.Add(DATADIR.DATADIR_SET + 1, mockEnumFormatEtc.Object); 2436public void EnumFormatEtc_InvokeCustomComSuccess(DATADIR dwDirection, IEnumFORMATETC result) 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();