IDebugReference2::SetValueAsReference

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

Sets the value of a reference from another reference. Reserved for future use.

Syntax

HRESULT SetValueAsReference ( 
   IDebugReference2** rgpArgs,
   DWORD              dwArgCount,
   IDebugReference2*  pValue,
   DWORD              dwTimeout
);
int SetValueAsReference ( 
   IDebugReference2[] rgpArgs,
   uint               dwArgCount,
   IDebugReference2   pValue,
   uint               dwTimeout
);

Parameters

rgpArgs
[in] An array of IDebugReference2 objects used to determine how to set the reference value.

dwArgCount
[in] The number of references in the array.

pValue
[in] An IDebugReference2 object from which to set the property value.

dwTimeout
[in] Maximum time, in milliseconds, to wait before returning from this method. Use INFINITE to wait indefinitely.

Return Value

Always returns E_NOTIMPL.

See also