GivenName property

String? GivenName
Gets or sets the given name of the contact.

Implementation

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

Implementation

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