Contacts property

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

Implementation

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

Implementation

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