Remove method

bool Remove(
  1. Attachment attachment
)
Removes the specified attachment. The attachment to remove.

Implementation

bool Remove(Attachment attachment) {
  EwsUtilities.ValidateParam(attachment, "attachment");

  return this.InternalRemove(attachment);
}