LiveVariableQueryMode Enumeration
Specifies how the live variable value should be queried.
Namespace: VisualGDBExtensibility.LiveWatchAssembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
public enum LiveVariableQueryMode
UseCacheIfAvailable | 0 |
If the live variable value was already read and cached, it is returned. Otherwise, it is queried directly.
|
QueryDirectly | 1 |
The variable is queried directly regardless of the cache contents. Using this mode will result in considerable
performance degradation and is not recommended.
|
UseCacheOrReturnNull | 2 |
If the live variable value was already read and cached, it is returned. Otherwise, an invalid instance of LiveVariableValue is returned.
|