DataSourceSelectArguments 构造函数

定义

初始化 DataSourceSelectArguments 类的新实例。

重载

DataSourceSelectArguments()

初始化 DataSourceSelectArguments 类的新默认实例。

DataSourceSelectArguments(String)

使用指定的排序表达式初始化 DataSourceSelectArguments 类的新实例。

DataSourceSelectArguments(Int32, Int32)

使用要为分页方案返回的起始位置和行数初始化 DataSourceSelectArguments 类的新实例。

DataSourceSelectArguments(String, Int32, Int32)

使用要为分页方案返回的指定排序表达式、起始位置和行数初始化 DataSourceSelectArguments 类的新实例。

DataSourceSelectArguments()

初始化 DataSourceSelectArguments 类的新默认实例。

public:
 DataSourceSelectArguments();
public DataSourceSelectArguments ();
Public Sub New ()

注解

无参数构造函数创建 类的实例,SortExpression其中 属性初始化为 ,String.EmptyStartRowIndexMaximumRows 属性初始化为零。

另请参阅

适用于

DataSourceSelectArguments(String)

使用指定的排序表达式初始化 DataSourceSelectArguments 类的新实例。

public:
 DataSourceSelectArguments(System::String ^ sortExpression);
public DataSourceSelectArguments (string sortExpression);
new System.Web.UI.DataSourceSelectArguments : string -> System.Web.UI.DataSourceSelectArguments
Public Sub New (sortExpression As String)

参数

sortExpression
String

在结果返回调用方之前,数据源控件用来排序数据检索操作结果的排序表达式。

注解

构造 DataSourceSelectArguments(String) 函数创建 类的实例,其中 SortExpression 使用指定的表达式初始化,和 StartRowIndexMaximumRows 属性初始化为零。

适用于

DataSourceSelectArguments(Int32, Int32)

使用要为分页方案返回的起始位置和行数初始化 DataSourceSelectArguments 类的新实例。

public:
 DataSourceSelectArguments(int startRowIndex, int maximumRows);
public DataSourceSelectArguments (int startRowIndex, int maximumRows);
new System.Web.UI.DataSourceSelectArguments : int * int -> System.Web.UI.DataSourceSelectArguments
Public Sub New (startRowIndex As Integer, maximumRows As Integer)

参数

startRowIndex
Int32

数据行的索引,标记数据检索操作返回数据的起始位置。

maximumRows
Int32

数据检索操作返回的最大行数。

注解

构造 DataSourceSelectArguments(Int32, Int32) 函数创建 类的实例,其中 SortExpression 初始化为 String.EmptyStartRowIndexMaximumRows 属性初始化为 为 startRowIndexmaximumRows 参数提供的值。

适用于

DataSourceSelectArguments(String, Int32, Int32)

使用要为分页方案返回的指定排序表达式、起始位置和行数初始化 DataSourceSelectArguments 类的新实例。

public:
 DataSourceSelectArguments(System::String ^ sortExpression, int startRowIndex, int maximumRows);
public DataSourceSelectArguments (string sortExpression, int startRowIndex, int maximumRows);
new System.Web.UI.DataSourceSelectArguments : string * int * int -> System.Web.UI.DataSourceSelectArguments
Public Sub New (sortExpression As String, startRowIndex As Integer, maximumRows As Integer)

参数

sortExpression
String

在结果返回调用方之前,数据源控件用来排序数据检索操作结果的排序表达式。

startRowIndex
Int32

数据行的索引,标记数据检索操作返回数据的起始位置。

maximumRows
Int32

数据检索操作返回的最大行数。

适用于