I am currently setting custom ExtendedProperties
on a CalendarFolder
using EWS Managed API (C#):
myCalendar.SetExtendedProperty(customExtendedProperty, true);
I can also use the Managed API to load those settings when I bind the CalendarFolder
:
var myCalendar = CalendarFolder.Bind(service, folderId, requestedPropertySet);
I would next like to read these same ExtendedProperties
, but from an Outlook Add-In using the Office JavaScript libraries.
From the looks of the the Outlook library does not expose any methods off of Office.context.item
to access the ExtendedProperties
.
Are there methods in the library that allow me to access this? If not, can I use the schema approach which has the GUID in the URL path ("http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/yourProp"
)?