12 implementations of GetCanonicalFormatEtc
ComDisabled.Tests (1)
DataObjectComTests.cs (1)
94
public int
GetCanonicalFormatEtc
(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
PresentationCore (1)
System\Windows\dataobject.cs (1)
605
int IComDataObject.
GetCanonicalFormatEtc
(ref FORMATETC pformatetcIn, out FORMATETC pformatetcOut)
System.Windows.Forms (4)
System\Windows\Forms\OLE\DataObject.Composition.cs (1)
141
public int
GetCanonicalFormatEtc
(ref FORMATETC formatIn, out FORMATETC formatOut) => _runtimeDataObject.GetCanonicalFormatEtc(ref formatIn, out formatOut);
System\Windows\Forms\OLE\DataObject.Composition.NativeToRuntimeAdapter.cs (1)
70
int ComTypes.IDataObject.
GetCanonicalFormatEtc
(ref FORMATETC formatIn, out FORMATETC formatOut)
System\Windows\Forms\OLE\DataObject.Composition.RuntimeToNativeAdapter.cs (1)
28
public int
GetCanonicalFormatEtc
(ref FORMATETC formatIn, out FORMATETC formatOut) => _runtimeDataObject.GetCanonicalFormatEtc(ref formatIn, out formatOut);
System\Windows\Forms\OLE\DataObject.cs (1)
477
int ComTypes.IDataObject.
GetCanonicalFormatEtc
(ref FORMATETC pformatetcIn, out FORMATETC pformatetcOut) =>
System.Windows.Forms.Tests (6)
System\Windows\Forms\ClipboardTests.cs (2)
627
int ComTypes.IDataObject.
GetCanonicalFormatEtc
(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => throw new NotImplementedException();
1158
public int
GetCanonicalFormatEtc
(ref ComTypes.FORMATETC formatIn, out ComTypes.FORMATETC formatOut) => throw new NotImplementedException();
System\Windows\Forms\DataObjectComTests.cs (1)
73
public int
GetCanonicalFormatEtc
(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
System\Windows\Forms\DataObjectTests.cs (2)
1869
public int
GetCanonicalFormatEtc
(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
2675
public int
GetCanonicalFormatEtc
(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
System\Windows\Forms\ToolStripItemTests.cs (1)
10259
public int
GetCanonicalFormatEtc
(ref FORMATETC formatIn, out FORMATETC formatOut) => throw new NotImplementedException();
3 references to GetCanonicalFormatEtc
PresentationCore (1)
System\Windows\dataobject.cs (1)
618
return ((OleConverter)_innerData).OleDataObject.
GetCanonicalFormatEtc
(ref pformatetcIn, out pformatetcOut);
System.Windows.Forms (2)
System\Windows\Forms\OLE\DataObject.Composition.cs (1)
141
public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => _runtimeDataObject.
GetCanonicalFormatEtc
(ref formatIn, out formatOut);
System\Windows\Forms\OLE\DataObject.Composition.RuntimeToNativeAdapter.cs (1)
28
public int GetCanonicalFormatEtc(ref FORMATETC formatIn, out FORMATETC formatOut) => _runtimeDataObject.
GetCanonicalFormatEtc
(ref formatIn, out formatOut);