RoutingType property

String? RoutingType
Gets or sets the routing type associated with the e-mail address. If RoutingType is not set, Address is assumed to be an SMTP address.

Implementation

String? get RoutingType => this.routingType;
void RoutingType=(String? value)

Implementation

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