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

WritePageStream() public method

public WritePageStream ( PageID pageId, PagedWorldSection section ) : StreamSerializer
pageId PageID
section PagedWorldSection
return Axiom.Serialization.StreamSerializer
        public StreamSerializer WritePageStream(PageID pageId, PagedWorldSection section)
        {
            StreamSerializer ser = null;

            if (mPageProvider != null)
                ser = mPageProvider.WritePageStream(pageId, section);
            if (ser == null)
            {
                // use default implementation
                string nameStr = string.Empty;
                nameStr += section.World.Name + "_" + section.Name + "_" + pageId.Value + ".page";

                // create file, overwrite if necessary
                
                
            }
            throw new NotImplementedException();
        }
        /// <summary>