Axiom.Components.Paging.PageWorld.ReadPageStream C# (CSharp) Method

ReadPageStream() public method

Get a serialiser set up to read Page data for the given PageID.
public ReadPageStream ( PageID pageId, PagedWorldSection section ) : StreamSerializer
pageId PageID
section PagedWorldSection
return Axiom.Serialization.StreamSerializer
        public StreamSerializer ReadPageStream(PageID pageId, PagedWorldSection section)
        {
            StreamSerializer ser = null;
            if (mPageProvider != null)
                ser = mPageProvider.ReadPageStream(pageId, section);
            if (ser == null)
                ser = mManger.ReadPageStream(pageId, section);

            return ser;
        }
        /// <summary>