DeleteAttachmentResponse constructor

DeleteAttachmentResponse(
  1. Attachment? attachment
)
Initializes a new instance of the The attachment.

Implementation

DeleteAttachmentResponse(complex.Attachment? attachment) : super() {
  EwsUtilities.Assert(attachment != null, "DeleteAttachmentResponse.ctor",
      "attachment is null");

  this._attachment = attachment;
}