I created a new Alfresco document, and added a custom aspect (EXIF aspect) to it.
How to get the values of this metadata via OpenCMIS/DotCMIS?
I tried the following but it does not show the EXIF metadata (nor presumably any custom aspect metadata):
foreach(IProperty property in document.Properties)
{
if (property.IsMultiValued)
{
metadata.Add(property.Id, property.ValuesAsString);
}
else
{
metadata.Add(property.Id, property.ValueAsString);
}
}