Profession property

String? Profession
Gets or sets the index of the contact's postal address. When set, PostalAddressIndex refers to an entry in the PhysicalAddresses indexed list. Gets or sets the contact's profession.

Implementation

//        PhysicalAddressIndex? get PostalAddressIndex => this.PropertyBag[ContactSchema.PostalAddressIndex];
//        set PostalAddressIndex(PhysicalAddressIndex? value) => this.PropertyBag[ContactSchema.PostalAddressIndex] = value;

/// <summary>
/// Gets or sets the contact's profession.
/// </summary>
String? get Profession =>
    this.PropertyBag[ContactSchema.Profession] as String?;
void Profession=(String? value)

Implementation

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