namespace System.Web.UI.WebControls { /// /// This is used to encapsulate the options required for processing a select method result from a select operation. /// public class DataSourceSelectResultProcessingOptions { /// /// Indicates whether paging is done automatically by . /// public bool AutoPage { get; set; } /// /// Indicates whether sorting is done automatically by . /// public bool AutoSort { get; set; } /// /// The type which is used for auto paging and sorting. /// public Type ModelType { get; set; } } }