Size property

int? Size
Gets the size of the attachment.

Implementation

int? get Size {
  EwsUtilities.ValidatePropertyVersion(
      this._service, ExchangeVersion.Exchange2010, "Size");

  return this._size;
}
void Size=(int? value)

Implementation

set Size(int? value) {
  EwsUtilities.ValidatePropertyVersion(
      this._service, ExchangeVersion.Exchange2010, "Size");
  if (CanSetFieldValue(this._size, value)) {
    this._size = value;
    this.Changed();
  }
}