Axiom.Components.Paging.PageManager.CreateContentCollection C# (CSharp) Method

CreateContentCollection() public method

public CreateContentCollection ( string typeName ) : Axiom.Components.Paging.PageContentCollection
typeName string
return Axiom.Components.Paging.PageContentCollection
        public PageContentCollection CreateContentCollection(string typeName)
        {
            IPageContentCollectionFactory fact = GetContentCollectionFactory(typeName);
            if (fact == null)
                throw new Exception(typeName + " is not the of a valid PageContentCollectionFactory!" +
                    "PageManager.CreateContentCollection");

            return fact.CreateInstance();
        }
        /// <summary>