14 implementations of GetCanonicalFormatEtc
ComDisabled.Tests (2)
ClipboardComTests.cs (1)
101int ComTypes.IDataObject.GetCanonicalFormatEtc(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => throw new NotImplementedException();
DataObjectComTests.cs (1)
94public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
PresentationCore (1)
System\Windows\dataobject.cs (1)
575int ComTypes.IDataObject.GetCanonicalFormatEtc(ref FORMATETC pformatetcIn, out FORMATETC pformatetcOut) =>
System.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
197public int GetCanonicalFormatEtc(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => _runtimeDataObject.GetCanonicalFormatEtc(ref formatIn, out formatOut);
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (1)
67public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut)
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (1)
25public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => _runtimeDataObject.GetCanonicalFormatEtc(ref formatIn, out formatOut);
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.cs (1)
301int ComTypes.IDataObject.GetCanonicalFormatEtc(ref FORMATETC pformatetcIn, out FORMATETC pformatetcOut) =>
System.Windows.Forms.Tests (6)
System\Windows\Forms\ClipboardTests.cs (2)
526int ComTypes.IDataObject.GetCanonicalFormatEtc(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => throw new NotImplementedException(); 1068public int GetCanonicalFormatEtc(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => throw new NotImplementedException();
System\Windows\Forms\DataObjectComTests.cs (1)
75public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
System\Windows\Forms\DataObjectTests.cs (2)
1949public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException(); 2755public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10261public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
System.Windows.Forms.TestUtilities (1)
Data\ManagedAndRuntimeDataObject.cs (1)
16public int GetCanonicalFormatEtc(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => throw new NotImplementedException();
2 references to GetCanonicalFormatEtc
System.Private.Windows.Core (2)
System\Private\Windows\Ole\Composition.cs (1)
197public int GetCanonicalFormatEtc(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => _runtimeDataObject.GetCanonicalFormatEtc(ref formatIn, out formatOut);
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (1)
25public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => _runtimeDataObject.GetCanonicalFormatEtc(ref formatIn, out formatOut);