C# Class VSNDK.DebugEngine.AD7ExpressionEvaluationCompleteEvent

This interface is sent by the debug engine (DE) to the session debug manager (SDM) when asynchronous expression evaluation is complete. (http://msdn.microsoft.com/en-ca/library/bb161810.aspx)
Inheritance: AD7AsynchronousEvent, IDebugExpressionEvaluationCompleteEvent2
Exibir arquivo Open project: blackberry/VSPlugin

Public Methods

Method Description
AD7ExpressionEvaluationCompleteEvent ( IDebugExpression2 expression, IDebugProperty2 property ) : System

Constructor.

GetExpression ( IDebugExpression2 &ppExpr ) : int

Gets the original expression. (http://msdn.microsoft.com/en-ca/library/bb162323.aspx)

GetResult ( IDebugProperty2 &ppResult ) : int

Gets the result of expression evaluation. (http://msdn.microsoft.com/en-ca/library/bb161962.aspx)

Method Details

AD7ExpressionEvaluationCompleteEvent() public method

Constructor.
public AD7ExpressionEvaluationCompleteEvent ( IDebugExpression2 expression, IDebugProperty2 property ) : System
expression IDebugExpression2 The IDebugExpression2 object that represents the expression.
property IDebugProperty2 The IDebugProperty2 object that represents the result of the expression evaluation.
return System

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

GetResult() public method

Gets the result of expression evaluation. (http://msdn.microsoft.com/en-ca/library/bb161962.aspx)
public GetResult ( IDebugProperty2 &ppResult ) : int
ppResult IDebugProperty2 Returns an IDebugProperty2 object that represents the result of the expression evaluation.
return int