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

CreateContentCollection() public method

Create a new PageContentCollection within this page. This is equivalent to calling PageManager.CreateContentCollection and then attachContentCollection.
public CreateContentCollection ( string typeName ) : Axiom.Components.Paging.PageContentCollection
typeName string The name of the type of content collection (see PageManager.GetContentCollectionFactories)
return Axiom.Components.Paging.PageContentCollection
        public virtual PageContentCollection CreateContentCollection(string typeName)
        {
            PageContentCollection coll = Manager.CreateContentCollection(typeName);
            AttachContentCollection(coll);
            return coll;
        }
        /// <summary>