public void ApplySort(SortField[] sorts)
 {
     if (sorts == null)
     {
         m_req.ClearSort();
     }
     else
     {
         m_req.Sort = sorts;
     }
 }