Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EWS Appointment ID. Unique?

Is the Appointment.Id property or Appointment.Id.UniqueId really unique?

I have the simplest of methods, retrieving Appointments using ExchangeService.FindAppointments. My results are showing a few appointments with a different subject but the same Appointment.Id.UniqueId!

Am I missing something?

like image 348
Carl Clark Avatar asked Jan 13 '23 14:01

Carl Clark


1 Answers

They are definitely unique. However, they are generated to be sequential, or close to sequential, so appointments created close together are likely to have very similar unique IDs. It's also worth noting that they are case sensitive. Are you sure that you're making a case-sensitive comparison? See the comment next to the ID property at http://msdn.microsoft.com/en-us/library/aa580234.aspx.

like image 69
agt Avatar answered Mar 27 '23 09:03

agt