AdjacentMeetings property

ItemCollection<Appointment>? AdjacentMeetings
Gets a list of meetings that conflict with this appointment in the authenticated user's calendar.

Implementation

ItemCollection<Appointment>? get AdjacentMeetings =>
    this.PropertyBag[AppointmentSchema.AdjacentMeetings]
        as ItemCollection<Appointment>?;