3 implementations of GetData
Microsoft.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
170
public object?
GetData
(string format) => ManagedDataObject.GetData(format);
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
597
public object?
GetData
(string format) => GetData(format, autoConvert: true);
System\Private\Windows\Ole\DataStore.cs (1)
89
public object?
GetData
(string format) => GetData(format, autoConvert: true);
7 references to GetData
Microsoft.Private.Windows.Core (7)
System\Private\Windows\Ole\Composition.cs (1)
170
public object? GetData(string format) => ManagedDataObject.
GetData
(format);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (3)
62
if (_dataObject.
GetData
(formatName) is DragDropFormat dragDropFormat)
124
if (_dataObject.
GetData
(format) is not object data)
219
if (_dataObject.GetDataPresent(formatName) && _dataObject.
GetData
(formatName) is DragDropFormat dragDropFormat)
System\Private\Windows\Ole\DataRequest.cs (1)
34
/// <see cref="IDataObjectInternal.
GetData
(string)"/> API family, that returns an <see cref="object"/>. <see langword="true"/>
System\Private\Windows\Ole\DragDropHelper.cs (2)
138
&& dataObject.
GetData
(PInvokeCore.CFSTR_INDRAGLOOP) is DragDropFormat dragDropFormat)
183
if (dataObject.
GetData
(format) is DragDropFormat dragDropFormat)