-
Notifications
You must be signed in to change notification settings - Fork 76
Open
Description
Hey Gautam,
I'm using your package and found an error in the code.
Starting from Exchange2013 when requesting Item with 'All properties', Exchange starts to add EntityExtractionResult property (for example in letters from GMail).
But the package can't finish parse normally of jsObject of Item and breaks down on the next line:
this.Addresses.LoadFromXmlJsObject(jsObject[key], service); |
I've tried to change locally line 84 and it works fine now
From
this.EmailAddresses = new StringList(XmlElementNames.NlgEmailAddress);
To
this.Addresses= new StringList(XmlElementNames.NlgEmailAddress);
So, could you fix this typo.
Regards,
Oleksii Honcharov