NickName property

String? get NickName
Gets or sets the middle name of the contact.

Implementation

String? get NickName => this.PropertyBag[ContactSchema.NickName] as String?;
set NickName (String? value)

Implementation

set NickName(String? value) =>
    this.PropertyBag[ContactSchema.NickName] = value;