Body property

MessageBody? Body
Gets or sets the body of the response.

Implementation

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

Implementation

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