2 implementations of GetDataPresent
System.Private.Windows.Core (2)
System\Private\Windows\Ole\Composition.cs (1)
73public bool GetDataPresent(string format) => ManagedDataObject.GetDataPresent(format);
System\Private\Windows\Ole\DataStore.cs (1)
144public bool GetDataPresent(string format) => GetDataPresent(format, autoConvert: true);
6 references to GetDataPresent
System.Private.Windows.Core (5)
System\Private\Windows\Ole\Composition.cs (1)
73public bool GetDataPresent(string format) => ManagedDataObject.GetDataPresent(format);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (4)
51if (!_dataObject.GetDataPresent(formatName)) 114if (!_dataObject.GetDataPresent(format)) 175if (!_dataObject.GetDataPresent(DataFormatsCore<TDataFormat>.GetOrAddFormat(pformatetc->cfFormat).Name)) 210if (_dataObject.GetDataPresent(formatName) && _dataObject.GetData(formatName) is DragDropFormat dragDropFormat)
System.Windows.Forms (1)
System\Windows\Forms\OLE\IDataObject.cs (1)
34/// <inheritdoc cref="IDataObjectInternal.GetDataPresent(string)" />