41 references to DATADIR
ComDisabled.Tests (3)
ClipboardComTests.cs (2)
86
ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.
DATADIR
direction)
88
if (direction == ComTypes.
DATADIR
.DATADIR_GET)
DataObjectComTests.cs (1)
93
public 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)
572
IEnumFORMATETC 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)
196
public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.
DATADIR
direction) => _runtimeDataObject.EnumFormatEtc(direction);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (1)
232
if (dwDirection == (uint)ComTypes.
DATADIR
.DATADIR_GET)
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
550
nativeDataObject.Value->EnumFormatEtc((uint)
DATADIR
.DATADIR_GET, enumFORMATETC).AssertSuccess();
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (1)
55
public IEnumFORMATETC EnumFormatEtc(
DATADIR
direction)
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (2)
24
public IEnumFORMATETC EnumFormatEtc(
DATADIR
direction) => _runtimeDataObject.EnumFormatEtc(direction);
79
var comTypeFormatEtc = EnumFormatEtc((
DATADIR
)(int)dwDirection);
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComTypes\IDataObject.cs (1)
67
IEnumFORMATETC EnumFormatEtc(
DATADIR
direction);
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.cs (1)
298
IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(
DATADIR
dwDirection) =>
System.Windows.Forms.Tests (26)
System\Windows\Forms\ClipboardTests.cs (3)
511
ComTypes.IEnumFORMATETC ComTypes.IDataObject.EnumFormatEtc(ComTypes.
DATADIR
direction)
513
if (direction == ComTypes.
DATADIR
.DATADIR_GET)
1067
public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.
DATADIR
direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectComTests.cs (1)
74
public IEnumFORMATETC EnumFormatEtc(
DATADIR
direction) => throw new NotImplementedException();
System\Windows\Forms\DataObjectTests.cs (21)
1947
public IEnumFORMATETC EnumFormatEtc(
DATADIR
direction) => throw new NotImplementedException();
2084
IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(
DATADIR
.DATADIR_GET);
2139
IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(
DATADIR
.DATADIR_GET);
2201
IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(
DATADIR
.DATADIR_GET);
2226
IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(
DATADIR
.DATADIR_GET);
2249
IEnumFORMATETC enumerator = comDataObject.EnumFormatEtc(
DATADIR
.DATADIR_GET);
2299
IEnumFORMATETC source = comDataObject.EnumFormatEtc(
DATADIR
.DATADIR_GET);
2328
IEnumFORMATETC source = comDataObject.EnumFormatEtc(
DATADIR
.DATADIR_GET);
2391
IEnumFORMATETC source = comDataObject.EnumFormatEtc(
DATADIR
.DATADIR_GET);
2411
[InlineData(
DATADIR
.DATADIR_SET)]
2412
[InlineData(
DATADIR
.DATADIR_GET - 1)]
2413
[InlineData(
DATADIR
.DATADIR_SET + 1)]
2414
public void EnumFormatEtc_InvokeNotGet_ThrowsExternalException(
DATADIR
dwDirection)
2421
public static TheoryData<
DATADIR
, IEnumFORMATETC> EnumFormatEtc_CustomComTheoryData()
2423
TheoryData<
DATADIR
, IEnumFORMATETC> theoryData = [];
2426
theoryData.Add(
DATADIR
.DATADIR_GET, mockEnumFormatEtc.Object);
2427
theoryData.Add(
DATADIR
.DATADIR_SET, mockEnumFormatEtc.Object);
2428
theoryData.Add(
DATADIR
.DATADIR_GET - 1, mockEnumFormatEtc.Object);
2429
theoryData.Add(
DATADIR
.DATADIR_SET + 1, mockEnumFormatEtc.Object);
2436
public void EnumFormatEtc_InvokeCustomComSuccess(
DATADIR
dwDirection, IEnumFORMATETC result)
2754
public IEnumFORMATETC EnumFormatEtc(
DATADIR
direction) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10263
public IEnumFORMATETC EnumFormatEtc(
DATADIR
direction) => throw new NotImplementedException();
System.Windows.Forms.TestUtilities (1)
Data\ManagedAndRuntimeDataObject.cs (1)
15
public ComTypes.IEnumFORMATETC EnumFormatEtc(ComTypes.
DATADIR
direction) => throw new NotImplementedException();