RequiredAttendees property

AttendeeCollection RequiredAttendees
Gets the organizer of this meeting. Gets a list of required attendees for this meeting.

Implementation

//        EmailAddress get Organizer => this.PropertyBag[AppointmentSchema.Organizer];

/// <summary>
/// Gets a list of required attendees for this meeting.
/// </summary>
AttendeeCollection get RequiredAttendees =>
    this.PropertyBag[AppointmentSchema.RequiredAttendees]
        as AttendeeCollection;