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

GetSection() public method

Retrieve a section of the world.
public GetSection ( string name ) : PagedWorldSection
name string
return PagedWorldSection
        public PagedWorldSection GetSection(string name)
        {
            PagedWorldSection section = null;
            mSections.TryGetValue(name, out section);

            return section;
        }
        /// <summary>