9 implementations of GetData
PresentationCore (2)
System\Windows\dataobject.cs (1)
140public object? GetData(Type format) => GetData(format.OrThrowIfNull().FullName.OrThrowIfNull());
System\Windows\Ole\DataObjectAdapter.cs (1)
23public object? GetData(Type format) => DataObject.GetData(format);
System.Private.Windows.Core (3)
System\Private\Windows\Ole\Composition.cs (1)
144public object? GetData(Type format) => ManagedDataObject.GetData(format);
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
516public object? GetData(Type format) => GetData(format.FullName.OrThrowIfNull());
System\Private\Windows\Ole\DataStore.cs (1)
80public object? GetData(Type format) => GetData(format.FullName!);
System.Private.Windows.Core.Tests (2)
System\Private\Windows\Ole\TestDataObject.cs (1)
60public virtual object? GetData(Type format) => format is null ? null : GetData(format.FullName!);
System\Private\Windows\Ole\TestDataObjectAdapter.cs (1)
19public object? GetData(Type format) => DataObject.GetData(format);
System.Windows.Forms (2)
System\Windows\Forms\OLE\DataObject.cs (1)
127public virtual object? GetData(Type format) => format is null ? null : GetData(format.FullName!);
System\Windows\Forms\OLE\DataObjectAdapter.cs (1)
20public object? GetData(Type format) => DataObject.GetData(format);
3 references to GetData
System.Private.Windows.Core (1)
System\Private\Windows\Ole\Composition.cs (1)
144public object? GetData(Type format) => ManagedDataObject.GetData(format);
System.Private.Windows.Core.Tests (1)
System\Private\Windows\Ole\ITestDataObject.cs (1)
17/// <inheritdoc cref="IDataObjectInternal.GetData(Type)" />
System.Windows.Forms (1)
System\Windows\Forms\OLE\IDataObject.cs (1)
28/// <inheritdoc cref="IDataObjectInternal.GetData(Type)" />