ILiveMemoryManagerReadMemory Method

Reads the target memory without having to create a live variable.

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
LiveVariableValue ReadMemory(
	ulong address,
	int size,
	LiveVariableQueryMode queryMode = LiveVariableQueryMode.UseCacheIfAvailable
)

Parameters

address  UInt64
The target address of the memory region.
size  Int32
The target size of the memory region.
queryMode  LiveVariableQueryMode  (Optional)

Return Value

LiveVariableValue
The value similar to the one returned by GetValue(LiveVariableQueryMode).

Remarks

If the requested address matches one of the active live variables, the cached value from it will be returned instead (if allowed by the queryMode)

See Also