IsInline property

bool? IsInline
Gets or sets a value indicating whether this is an inline attachment. Inline attachments are not visible to end users.

Implementation

bool? get IsInline {
  EwsUtilities.ValidatePropertyVersion(
      this._service, ExchangeVersion.Exchange2010, "IsInline");

  return this._isInline;
}
void IsInline=(bool? value)

Implementation

set IsInline(bool? value) {
  EwsUtilities.ValidatePropertyVersion(
      this._service, ExchangeVersion.Exchange2010, "IsInline");

  if (CanSetFieldValue(this._isInline, value)) {
    this._isInline = value;
    this.Changed();
  }
}