IExpressionChildProvider Interface

Allows querying various information about the children of an expression.

Definition

Namespace: VisualGDBExpressions
Assembly: VisualGDBExpressions (in VisualGDBExpressions.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
public interface IExpressionChildProvider

Properties

ChildrenAvailable Returns true if the expression can have children. Visual Studio will show the '+' icon allowing the user to expand the expression. This is faster than calling QueryChildren(), as it involves running less GDB commands.

Methods

QueryChildren Queries the children of an expression (e.g. values of the fields in a C++ class).
QueryChildrenCount Returns the children count of the expression.

See Also