MaximumBodySize property

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

Implementation

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

Implementation

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