ILiveMemoryManager Interface

Allows reading/writing the target memory without stopping it.

Definition

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

Remarks

Note that this class can only read/write memory given the raw addresses. To get the addresses of various symbols or struct fields, see ILiveSymbolParser

Methods

CreateLiveVariable Creates a live variable given the address and type.
ReadMemory Reads the target memory without having to create a live variable.
TriggerUpdate Forces an immediate update of all active live variables.

Events

LiveVariableUpdatingCompleted Called from the worker thread when VisualGDB completes a single iteration of updating all active live variables (even if no variables were active).
UpdateLiveVariableGUI Called from the GUI thread after LiveVariableUpdatingCompleted.

See Also