01-25-2012 12:58 PM
IList<ICmisExtensionElement> cmisExtensionElements = cmisObject.GetExtensions(ExtensionLevel.Properties);
foreach (ICmisExtensionElement element in cmisExtensionElements)
{
foreach (var v in element.Children)
{
if (v.Name == "alf:properties")
{
if (v.Children != null)
{
foreach (var a in v.Children)
{
string propId = a.Attributes["propertyDefinitionId"];
string displayName = a.Attributes["displayName"];
if (a.Children == null || a.Children.Count == 1)
{
string value = a.Children == null ? null : a.Children[0].Value;
DoSomethingWithValue(value);
}
}
}
}
}
}
02-09-2012 04:30 PM
03-27-2013 06:23 AM
04-30-2013 02:58 AM
04-30-2013 03:35 AM
05-20-2015 06:39 AM
12-09-2015 05:53 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.