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