Send method

Future<void> Send()
Sends this response without saving a copy. Calling this method results in a call to EWS.

Implementation

Future<void> Send() async {
  await this.InternalCreate(null, MessageDisposition.SendOnly);
}