Body property

MessageBody? get Body
Gets or sets the body of this item.

Implementation

MessageBody? get Body => this.PropertyBag[ItemSchema.Body] as MessageBody?;
set Body (MessageBody? value)

Implementation

set Body(MessageBody? value) => this.PropertyBag[ItemSchema.Body] = value;