Ejemplo n.º 1
0
        public PageContent CreateContent(string typeName)
        {
            IPageContentFactory fact = GetContentFactory(typeName);

            if (fact == null)
            {
                throw new AxiomException("{0} is not the name of a valid PageContentFactory! PageManager.CreateContent", typeName);
            }

            return(fact.CreateInstance());
        }