Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.47 KB

idebugexpressionevaluationcompleteevent2-getresult.md

File metadata and controls

50 lines (43 loc) · 1.47 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Gets the result of expression evaluation.
IDebugExpressionEvaluationCompleteEvent2::GetResult
11/04/2016
reference
IDebugExpressionEvaluationCompleteEvent2::GetResult
IDebugExpressionEvaluationCompleteEvent2::GetResult
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IDebugExpressionEvaluationCompleteEvent2::GetResult

Gets the result of expression evaluation.

Syntax

int GetResult( 
   out IDebugProperty2 ppResult
);
HRESULT GetResult( 
   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.

See also