Id property

ItemId? Id
Gets or sets the Id of the contact the e-mail address represents. When Id is specified, Address should be set to null.

Implementation

ItemId? get Id => this.id;
void Id=(ItemId? value)

Implementation

set Id(ItemId? value) {
  if (this.CanSetFieldValue(this.id, value)) {
    this.id = value;
    this.Changed();
  }
}