allowPartial property

bool? allowPartial
final

Property to control partial writes. If true, the debug adapter should attempt to write memory even if the entire memory region is not writable. In such a case the debug adapter should stop after hitting the first byte of memory that cannot be written and return the number of bytes written in the response via the offset and bytesWritten properties. If false or missing, a debug adapter should attempt to verify the region is writable before writing, and fail the response if it is not.

Implementation

final bool? allowPartial;