2 implementations of GetData
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.cs (1)
120public virtual object? GetData(string format) => GetData(format, autoConvert: true);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\OleDragDropHandler.ComponentDataObject.cs (1)
131public virtual object? GetData(string format)
2 references to GetData
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObjectAdapter.cs (1)
19public object? GetData(string format) => DataObject.GetData(format);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\CommandSet.cs (1)
1852object? data = dataObj?.GetData(CF_DESIGNER);