Contacts property

StringList get Contacts
Gets or sets a list of contacts associated with the task.

Implementation

StringList get Contacts =>
    this.PropertyBag[TaskSchema.Contacts] as StringList;
set Contacts (StringList value)

Implementation

set Contacts(StringList value) =>
    this.PropertyBag[TaskSchema.Contacts] = value;