Exemple #1
0
        public EntryID[] GetAdditionalEntryIds()
        {
            List <EntryID> result = new List <definition.util.primitives.EntryID>();

            if (_propBag.PropertyExists(PropId.KnownValue.PR_ADDITIONAL_REN_ENTRYIDS))
            {
                var entries = PropertyUtils.GetMultipleBinaryValues(_propBag.ReadProperty(PropId.KnownValue.PR_ADDITIONAL_REN_ENTRYIDS));
                foreach (var entry in entries)
                {
                    result.Add(entry);
                }
            }

            return(result.ToArray());
        }