Axiom.Components.Paging.PagedWorldSection.UnprepareProcedualPage C# (CSharp) Method

UnprepareProcedualPage() public method

Give a section the opportunity to unprepare page content procedurally.
This method indicates that a page should be retained if it's already in memory, but if it's not then it won't trigger a load. This is useful for retaining pages that have just gone out of range, but which you don't want to unload just yet because it's quite possible they may come back into the active set again very quickly / easily. But at the same time, if they've already been purged you don't want to force them to load. This is the 'maybe' region of pages.
public UnprepareProcedualPage ( Page page ) : bool
page Page
return bool
        public virtual bool UnprepareProcedualPage(Page page)
        {
            bool generated = false;
            if (mPageProvider != null)
                generated = mPageProvider.UnPrepareProcedualPage(page, this);
            if (!generated)
                generated = mParent.UnPrepareProcedualPage(page, this);

            return generated;
        }
        /// <summary>