Jak zaktualizować termin z Exchange Web Service Managed API 2.0 w ASP.NET

Używam API EWS Managed 2.0, aby utworzyć Appontment. To działa dobrze. Ale chcesz również zaktualizować istniejące spotkanie. Przeczytałem, że potrzebuję ID spotkania, aby określić, które spotkanie powinno być edytowane. Ale gdzie jest identyfikator?

Oto jak utworzyć spotkanie:

        'Creates the Appointment
        Dim appointment As New EWS.Appointment(esb)
        appointment.Subject = txtThema.Text
        appointment.Body = txtBemerkung.Text
        appointment.Start = Von
        appointment.End = Bis
        appointment.Location = lbRaumInfo.Text

        'Adds the Attendees
        For i = 1 To emaillist.Length - 1
            appointment.RequiredAttendees.Add(emaillist(i))
        Next

        'Sending
        appointment.Save(EWS.SendInvitationsMode.SendToAllAndSaveCopy)

questionAnswers(2)

yourAnswerToTheQuestion