IDebugReference2::SetValueAsString
Applies to: Visual Studio Visual 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 a string. Reserved for future use.
Syntax
HRESULT SetValueAsString (
LPCOLESTR pszValue,
DWORD dwRadix,
DWORD dwTimeout
);
int SetValueAsString (
string pszValue,
uint dwRadix,
uint dwTimeout
);
Parameters
pszValue
[in] The value as a string.
dwRadix
[in] The radix to be used in formatting any numerical information.
dwTimeout
[in] Maximum time, in milliseconds, to wait before returning from this method. Use INFINITE
to wait indefinitely.
Return Value
Always returns E_NOTIMPL
.