Address property

String? get Address
Gets or sets the actual address associated with the e-mail address. The type of the Address property must match the specified routing type. If RoutingType is not set, Address is assumed to be an SMTP address.

Implementation

String? get Address => this.address;
set Address (String? value)

Implementation

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