Carrotware.Web.UI.Components.PagedDataBase.ParseSort C# (CSharp) 메소드

ParseSort() 공개 메소드

public ParseSort ( ) : SortParm
리턴 SortParm
        public SortParm ParseSort()
        {
            SortParm sort = new SortParm(this.OrderBy);

            if (this.DefaultMax && this.TotalPages > 0) {
                this.PageNumber = this.TotalPages;
            }

            return sort;
        }