RequestedBodyType property

BodyType? RequestedBodyType
Gets or sets type of body that should be loaded on items. If RequestedBodyType is null, body is returned as HTML if available, plain text otherwise.

Implementation

BodyType? get RequestedBodyType => this._requestedBodyType;
void RequestedBodyType=(BodyType? value)

Implementation

set RequestedBodyType(BodyType? value) {
  this._ThrowIfReadonly();
  this._requestedBodyType = value;
}