3 implementations of GetData
Microsoft.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
170public object? GetData(string format) => ManagedDataObject.GetData(format);
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
597public object? GetData(string format) => GetData(format, autoConvert: true);
System\Private\Windows\Ole\DataStore.cs (1)
89public object? GetData(string format) => GetData(format, autoConvert: true);
7 references to GetData
Microsoft.Private.Windows.Core (7)
System\Private\Windows\Ole\Composition.cs (1)
170public object? GetData(string format) => ManagedDataObject.GetData(format);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (3)
62if (_dataObject.GetData(formatName) is DragDropFormat dragDropFormat) 124if (_dataObject.GetData(format) is not object data) 219if (_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) 183if (dataObject.GetData(format) is DragDropFormat dragDropFormat)