GivenName property

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

Implementation

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

Implementation

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