IDebugExpressionEvaluationCompleteEvent2::GetResult
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
Gets the result of expression evaluation.
Syntax
HRESULT GetResult(
IDebugProperty2** ppResult
);
int GetResult(
out IDebugProperty2 ppResult
);
Parameters
ppResult
[out] Returns an IDebugProperty2 object that represents the result of the expression evaluation.
Return Value
If successful, returns S_OK
; otherwise, returns an error code.
Remarks
The returned IDebugProperty2 object contains the value of the evaluated expression. Note that this value could be a complex value such as an array but the final result must be a numerical or string value that is displayed to the user.