IsContactPhoto property

bool? IsContactPhoto
Gets or sets a value indicating whether this attachment is a contact photo.

Implementation

bool? get IsContactPhoto {
  EwsUtilities.ValidatePropertyVersion(
      this.Service, ExchangeVersion.Exchange2010, "IsContactPhoto");
  return this._isContactPhoto;
}
void IsContactPhoto=(bool? value)

Implementation

set IsContactPhoto(bool? value) {
  EwsUtilities.ValidatePropertyVersion(
      this.Service, ExchangeVersion.Exchange2010, "IsContactPhoto");
  this.ThrowIfThisIsNotNew();
  this._isContactPhoto = value;
}