9 implementations of GetData
PresentationCore (1)
System\Windows\dataobject.cs (1)
606HRESULT Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) =>
System.Private.Windows.Core (4)
System\Private\Windows\Ole\Composition.cs (1)
186public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _nativeDataObject.GetData(pformatetcIn, pmedium);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (1)
36public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium)
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
58public HRESULT GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium)
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (1)
87HRESULT Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium)
System.Private.Windows.Core.Tests (3)
System\Private\Windows\Ole\DataObjectProxy.cs (1)
47public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _original->GetData(pformatetcIn, pmedium);
System\Private\Windows\Ole\NativeDataObjectMock.cs (1)
11public virtual HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => throw new NotImplementedException();
System\Private\Windows\Ole\TestDataObject.cs (1)
117public unsafe HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _innerData.GetData(pformatetcIn, pmedium);
System.Windows.Forms (1)
System\Windows\Forms\OLE\DataObject.cs (1)
332HRESULT Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) =>
4 references to GetData
System.Private.Windows.Core (4)
System\Private\Windows\Ole\Composition.cs (1)
186public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _nativeDataObject.GetData(pformatetcIn, pmedium);
Windows.Win32.IDataObject.g.cs (1)
80 return __object.GetData(pformatetcIn, pmedium);
Windows.Win32.System_Com_IDataObject_Extensions.g.cs (2)
23 /// <inheritdoc cref="winmdroot.System.Com.IDataObject.Interface.GetData(winmdroot.System.Com.FORMATETC*, winmdroot.System.Com.STGMEDIUM*)"/> 30 winmdroot.Foundation.HRESULT __result = @this.GetData(pformatetcInLocal, pmediumLocal);