PrimarySmtpAddress property

String? PrimarySmtpAddress
Gets or sets the primary SMTP address or the user.

Implementation

String? get PrimarySmtpAddress => this._primarySmtpAddress;
void PrimarySmtpAddress=(String? value)

Implementation

set PrimarySmtpAddress(String? value) {
  if (this.CanSetFieldValue(this._primarySmtpAddress, value)) {
    this._primarySmtpAddress = value;
    this.Changed();
  }
}