DisplayName property

String? DisplayName
Gets or sets the display name of the contact group.

Implementation

String? get DisplayName {
  return this.PropertyBag[ContactSchema.DisplayName] as String?;
}
void DisplayName=(String? value)

Implementation

set DisplayName(String? value) {
  this.PropertyBag[ContactSchema.DisplayName] = value;
}