VSNDK.DebugEngine.AD7ExpressionEvaluationCompleteEvent.GetExpression C# (CSharp) Method

GetExpression() public method

Gets the original expression. (http://msdn.microsoft.com/en-ca/library/bb162323.aspx)
public GetExpression ( IDebugExpression2 &ppExpr ) : int
ppExpr IDebugExpression2 Returns an IDebugExpression2 object that represents the expression that was parsed.
return int
        public int GetExpression(out IDebugExpression2 ppExpr)
        {
            ppExpr = m_expression;
            return VSConstants.S_OK;
        }