Profession property
String?
get
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?;
set
Profession
(String? value)
Implementation
set Profession(String? value) =>
this.PropertyBag[ContactSchema.Profession] = value;