ExtRemoteData::Read method (engextcpp.hpp)

The Read method reads the contents of the target's memory, represented by the ExtRemoteData object, and then caches the data.

Syntax

void Read();

Return value

None

Remarks

When the region of memory is specified either by the ExtRemoteData::ExtRemoteData constructor or by the ExtRemoteData::Set(Typed) or ExtRemoteData::Set(Offset Bytes) methods, the contents are automatically read from the target and cached. This method only needs to be called if the memory on the target might have changed.

The data can be retrieved using ExtRemoteData::GetData or one of the typed "get" methods.

Returns

This method does not return a value.

Requirements

Requirement Value
Target Platform Desktop
Header engextcpp.hpp (include Engextcpp.hpp)

See also

ExtRemoteData

ExtRemoteData::ExtRemoteData

ExtRemoteData::GetData

ExtRemoteData::Set(Offset Bytes)

ExtRemoteData::Set(Typed)