2 implementations of GetDataPresent
System.Private.Windows.Core (2)
System\Private\Windows\Ole\Composition.cs (1)
146public bool GetDataPresent(string format) => ManagedDataObject.GetDataPresent(format);
System\Private\Windows\Ole\DataStore.cs (1)
142public bool GetDataPresent(string format) => GetDataPresent(format, autoConvert: true);
7 references to GetDataPresent
System.Private.Windows.Core (5)
System\Private\Windows\Ole\Composition.cs (1)
146public 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.Private.Windows.Core.Tests (1)
System\Private\Windows\Ole\ITestDataObject.cs (1)
23/// <inheritdoc cref="IDataObjectInternal.GetDataPresent(string)" />
System.Windows.Forms (1)
System\Windows\Forms\OLE\IDataObject.cs (1)
34/// <inheritdoc cref="IDataObjectInternal.GetDataPresent(string)" />