SqlDataSourceSelectingEventArgs.Arguments 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取传递给 DataSourceSelectArguments 方法的 Select(DataSourceSelectArguments) 对象。
public:
property System::Web::UI::DataSourceSelectArguments ^ Arguments { System::Web::UI::DataSourceSelectArguments ^ get(); };
public System.Web.UI.DataSourceSelectArguments Arguments { get; }
member this.Arguments : System.Web.UI.DataSourceSelectArguments
Public ReadOnly Property Arguments As DataSourceSelectArguments
属性值
DataSourceSelectArguments 对象,如果在 DataSourceSelectArguments 创建期间未指定 SqlDataSourceSelectingEventArgs 对象,则为 null
。
注解
您可以检查 DataSourceSelectArguments 对象,以确定是否在数据检索操作过程中请求排序、分页或行计数。
数据绑定控件使用 DataSourceSelectArguments 类请求对 SqlDataSource 结果集执行其他与数据相关的操作,例如,对数据进行排序或返回特定的数据子集。 这些与数据相关的操作通过枚举枚举 DataSourceCapabilities 。 有关详细信息,请参阅 DataSourceSelectArguments。