LiveVariableValue Structure

Represents the value of a single live variable queried via GetValue(LiveVariableQueryMode) or ReadMemory(UInt64, Int32, LiveVariableQueryMode)

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
public struct LiveVariableValue
Inheritance
Object    ValueType    LiveVariableValue

Constructors

LiveVariableValueInitializes a new instance of the LiveVariableValue class

Properties

IsValid Specifies whether the value is valid.

Methods

ToNullTerminatedString Parses the value as a null-terminated string and converts it to a .Net string given the specified encoding.
ToString
(Overrides ValueTypeToString)
ToUlong Converts unsigned 64-bit, 32-bit, 16-bit or 8-bit values to ulong, padding them as needed.

Fields

Generation Contains the internal generation counter shared between all variables. The counter is incremented each time all variables are updated.
OutOfScheduleGeneration 
Timestamp Contains the physical time, on the debugger host, when the value was fetched.
Value Contains the value of the variable. If the variable is a bitfield member, call ShiftAndMask(Byte) to translate it to a properly shifted/masked value.

See Also