Example #1
0
        public object[] GetExtensionObjects(string path, Type arrayElementType, bool reuseCachedInstance)
        {
            ExtensionNode node = GetExtensionNode(path);

            if (node == null)
            {
                throw new InvalidOperationException("Extension node not found in path: " + path);
            }
            return(node.GetChildObjects(arrayElementType, reuseCachedInstance));
        }