4 implementations of SetData
Microsoft.Private.Windows.Core (4)
System\Private\Windows\Ole\Composition.cs (1)
216public HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) => _nativeDataObject.SetData(pformatetc, pmedium, fRelease);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (1)
203public HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease)
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (1)
82public HRESULT SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease)
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (1)
134HRESULT Com.IDataObject.Interface.SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease)
5 references to SetData
Microsoft.Private.Windows.Core (5)
System\Private\Windows\Ole\Composition.cs (1)
216public HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) => _nativeDataObject.SetData(pformatetc, pmedium, fRelease);
System\Private\Windows\Ole\DragDropHelper.cs (2)
228dataObject.SetData(&formatEtc, &medium, true); 400dataObject.SetData(&formatEtc, &medium, fRelease: true);
Windows.Win32.System_Com_IDataObject_Extensions.g.cs (2)
72 /// <inheritdoc cref="winmdroot.System.Com.IDataObject.Interface.SetData(winmdroot.System.Com.FORMATETC*, winmdroot.System.Com.STGMEDIUM*, winmdroot.Foundation.BOOL)"/> 79 winmdroot.Foundation.HRESULT __result = @this.SetData(pformatetcLocal, pmediumLocal, fRelease);