7 implementations of GetFormats
PresentationCore (2)
System\Windows\dataobject.cs (1)
218
public string[]
GetFormats
() => GetFormats(autoConvert: true);
System\Windows\Ole\DataObjectAdapter.cs (1)
28
public string[]
GetFormats
() => DataObject.GetFormats();
System.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
183
public string[]
GetFormats
() => ManagedDataObject.GetFormats();
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
708
public string[]
GetFormats
() => GetFormats(autoConvert: true);
System\Private\Windows\Ole\DataStore.cs (1)
195
public string[]
GetFormats
() => GetFormats(autoConvert: true);
System.Windows.Forms (2)
System\Windows\Forms\OLE\DataObject.cs (1)
137
public virtual string[]
GetFormats
() => GetFormats(autoConvert: true);
System\Windows\Forms\OLE\DataObjectAdapter.cs (1)
25
public string[]
GetFormats
() => DataObject.GetFormats();
4 references to GetFormats
System.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
183
public string[] GetFormats() => ManagedDataObject.
GetFormats
();
System\Private\Windows\Ole\DragDropHelper.cs (1)
181
foreach (string format in dataObject.
GetFormats
())
System\Private\Windows\Ole\FormatEnumerator.cs (1)
34
if (dataObject.
GetFormats
() is not string[] formats)
System.Windows.Forms (1)
System\Windows\Forms\OLE\IDataObject.cs (1)
43
/// <inheritdoc cref="IDataObjectInternal.
GetFormats
()" />