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