3 implementations of GetDataPresent
Microsoft.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
173public bool GetDataPresent(string format) => ManagedDataObject.GetDataPresent(format);
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
629public bool GetDataPresent(string format) => GetDataPresent(format, autoConvert: true);
System\Private\Windows\Ole\DataStore.cs (1)
157public bool GetDataPresent(string format) => GetDataPresent(format, autoConvert: true);
6 references to GetDataPresent
Microsoft.Private.Windows.Core (6)
System\Private\Windows\Ole\Composition.cs (1)
173public bool GetDataPresent(string format) => ManagedDataObject.GetDataPresent(format);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (4)
56if (!_dataObject.GetDataPresent(formatName)) 119if (!_dataObject.GetDataPresent(format)) 184if (!_dataObject.GetDataPresent(DataFormatsCore<TDataFormat>.GetOrAddFormat(pformatetc->cfFormat).Name)) 219if (_dataObject.GetDataPresent(formatName) && _dataObject.GetData(formatName) is DragDropFormat dragDropFormat)
System\Private\Windows\Ole\DragDropHelper.cs (1)
137if (dataObject.GetDataPresent(PInvokeCore.CFSTR_INDRAGLOOP)