CreateAttachmentResponse constructor

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

Implementation

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

  this.attachment = attachment;
}