Regarding the return value of IsCancelled for FindItem in EWS
Since around 10/29, the return value of IsCancelled has returned the following.
'appt.IsCancelled' threw an exception of type 'Microsoft.Exchange.WebServices.Data.ServiceObjectPropertyException'
■Confirmation
The return value of the isCancelled property (type: BOOL) of the Appointment class obtained by the FindItems method is a string.
The timing is such that the property value contains a string around 10/29,
Are there any specification changes or errors in the FindItems method, Appointment class, or isCancelled property?
Environment: Exchange Server: 2013
Connection method: client secret
Permissions: full_access_as_app
-------------Add info-------------
var eventIsCancelled = evnt.TryGetProperty(AppointmentSchema.IsCancelled, out PropVal) ? evnt.IsCancelled : false;
That code gets the value of IsCancelled from TryGetProperty of the Appointment class and sets the value to eventIsCancelled.
As a result, if Ture or False is returned, it can be retrieved.
Do you know why it is now possible to retrieve the code?
I asked other QA.