38 references to Value
System.Private.Windows.Core (38)
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (13)
37
return nativeDataObject.
Value
->DAdvise(pformatetc, advf, pAdvSink, pdwConnection);
43
return nativeDataObject.
Value
->DUnadvise(dwConnection);
49
return nativeDataObject.
Value
->EnumDAdvise(ppenumAdvise);
55
return nativeDataObject.
Value
->EnumFormatEtc(dwDirection, ppenumFormatEtc);
61
return nativeDataObject.
Value
->GetData(pformatetcIn, pmedium);
67
return nativeDataObject.
Value
->GetDataHere(pformatetc, pmedium);
73
return nativeDataObject.
Value
->QueryGetData(pformatetc);
79
return nativeDataObject.
Value
->GetCanonicalFormatEtc(pformatectIn, pformatetcOut);
85
return nativeDataObject.
Value
->SetData(pformatetc, pmedium, fRelease);
372
pStream.
Value
->Stat(out Com.STATSTG sstg, (uint)Com.STATFLAG.STATFLAG_DEFAULT);
384
pStream.
Value
->Read((byte*)ptr, (uint)sstg.cbSize, null);
555
enumFORMATETC.
Value
->Reset();
559
while (enumFORMATETC.
Value
->Next(1, &formatEtc) == HRESULT.S_OK)
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (9)
36
return nativeDataObject.
Value
->DAdvise(nativeFormat, (uint)advf, nativeAdviseSink, (uint*)pConnection);
43
nativeDataObject.
Value
->DUnadvise((uint)connection).ThrowOnFailure();
50
HRESULT result = nativeDataObject.
Value
->EnumDAdvise(nativeStatData);
59
if (nativeDataObject.
Value
->EnumFormatEtc((uint)direction, nativeFormat).Failed)
70
HRESULT result = nativeDataObject.
Value
->GetCanonicalFormatEtc(Unsafe.As<FORMATETC, Com.FORMATETC>(ref formatIn), out Com.FORMATETC nativeFormat);
80
nativeDataObject.
Value
->GetData(&nativeFormat, &nativeMedium).ThrowOnFailure();
90
nativeDataObject.
Value
->GetDataHere(&nativeFormat, &nativeMedium).ThrowOnFailure();
98
return nativeDataObject.
Value
->QueryGetData(Unsafe.As<FORMATETC, Com.FORMATETC>(ref format));
106
HRESULT result = nativeDataObject.
Value
->SetData(&nativeFormat, &nativeMedium, release);
System\Private\Windows\Ole\DragDropHelper.cs (6)
68
dropTargetHelper.
Value
->DragEnter(targetWindowHandle, dataObjectScope, in point, effect);
82
dropTargetHelper.
Value
->DragLeave();
98
dropTargetHelper.
Value
->DragOver(&point, (DROPEFFECT)(uint)e.Effect);
115
dropTargetHelper.
Value
->Drop(dataObjectScope, in point, (DROPEFFECT)(uint)e.Effect);
283
if (dragSourceHelper.
Value
->SetFlags((uint)DSH_FLAGS.DSH_ALLOWDROPDESCRIPTIONTEXT).Failed)
290
if (dragSourceHelper.
Value
->InitializeFromBitmap(shDragImage, dataObjectScope).Failed)
Windows\Win32\System\Com\AgileComPointer.cs (4)
68
return currentUnknown.
Value
== otherUnknown.
Value
;
76
return currentUnknown.
Value
== otherUnknown.
Value
;
Windows\Win32\System\Com\ComHelpers.cs (4)
161
where TInterface : unmanaged, IComIID => TryGetObjectForIUnknown(comScope.
Value
, out @object);
258
return ccw.
Value
== unknown;
283
where TInterface : unmanaged, IComIID => GetObjectForIUnknown(comScope.
Value
);
343
typelib.
Value
->GetTypeInfoOfGuid(interfaceId, typeInfo).ThrowOnFailure();
Windows\Win32\System\Com\ComScope.cs (2)
63
hr = ((IUnknown*)
Value
)->QueryInterface(IID.Get<TTo>(), scope);
73
((IUnknown*)
Value
)->QueryInterface(IID.Get<TTo>(), scope).ThrowOnFailure();