LiveVariableQueryMode Enumeration

Specifies how the live variable value should be queried.

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
public enum LiveVariableQueryMode

Members

UseCacheIfAvailable0 If the live variable value was already read and cached, it is returned. Otherwise, it is queried directly.
QueryDirectly1 The variable is queried directly regardless of the cache contents. Using this mode will result in considerable performance degradation and is not recommended.
UseCacheOrReturnNull2 If the live variable value was already read and cached, it is returned. Otherwise, an invalid instance of LiveVariableValue is returned.

See Also