MaximumBodySize property

int? get MaximumBodySize
Gets or sets the maximum size of the body to be retrieved.

Implementation

int? get MaximumBodySize => this._maximumBodySize;
set MaximumBodySize (int? value)

Implementation

set MaximumBodySize(int? value) {
  this._ThrowIfReadonly();
  this._maximumBodySize = value;
}