9 implementations of GetDataPresent
PresentationCore (2)
System\Windows\dataobject.cs (1)
195public bool GetDataPresent(Type format) => GetDataPresent(format.OrThrowIfNull().FullName.OrThrowIfNull());
System\Windows\Ole\DataObjectAdapter.cs (1)
26public bool GetDataPresent(Type format) => DataObject.GetDataPresent(format);
System.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
147public bool GetDataPresent(Type format) => ManagedDataObject.GetDataPresent(format);
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
517public bool GetDataPresent(Type format) => GetDataPresent(format.FullName.OrThrowIfNull());
System\Private\Windows\Ole\DataStore.cs (1)
115public bool GetDataPresent(Type format) => GetDataPresent(format.FullName!);
System.Private.Windows.Core.Tests (2)
System\Private\Windows\Ole\TestDataObject.cs (1)
64public virtual bool GetDataPresent(Type format) => format is not null && GetDataPresent(format.FullName!);
System\Private\Windows\Ole\TestDataObjectAdapter.cs (1)
22public bool GetDataPresent(Type format) => DataObject.GetDataPresent(format);
System.Windows.Forms (2)
System\Windows\Forms\OLE\DataObject.cs (1)
133public virtual bool GetDataPresent(Type format) => format is not null && GetDataPresent(format.FullName!);
System\Windows\Forms\OLE\DataObjectAdapter.cs (1)
23public bool GetDataPresent(Type format) => DataObject.GetDataPresent(format);
3 references to GetDataPresent
System.Private.Windows.Core (1)
System\Private\Windows\Ole\Composition.cs (1)
147public bool GetDataPresent(Type format) => ManagedDataObject.GetDataPresent(format);
System.Private.Windows.Core.Tests (1)
System\Private\Windows\Ole\ITestDataObject.cs (1)
26/// <inheritdoc cref="IDataObjectInternal.GetDataPresent(Type)" />
System.Windows.Forms (1)
System\Windows\Forms\OLE\IDataObject.cs (1)
37/// <inheritdoc cref="IDataObjectInternal.GetDataPresent(Type)" />