BusinessHomePage property

String? get BusinessHomePage
Gets or sets the business home page of the contact.

Implementation

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

Implementation

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