ModelDataSourceView.EvaluateSelectMethodParameters Method

Definition

Evaluates the select method parameters and also determines the options for processing the select result, such as auto paging and sorting behavior.

protected:
 virtual System::Web::UI::WebControls::ModelDataSourceMethod ^ EvaluateSelectMethodParameters(System::Web::UI::DataSourceSelectArguments ^ arguments, [Runtime::InteropServices::Out] System::Web::UI::WebControls::DataSourceSelectResultProcessingOptions ^ % selectResultProcessingOptions);
protected virtual System.Web.UI.WebControls.ModelDataSourceMethod EvaluateSelectMethodParameters (System.Web.UI.DataSourceSelectArguments arguments, out System.Web.UI.WebControls.DataSourceSelectResultProcessingOptions selectResultProcessingOptions);
abstract member EvaluateSelectMethodParameters : System.Web.UI.DataSourceSelectArguments * DataSourceSelectResultProcessingOptions -> System.Web.UI.WebControls.ModelDataSourceMethod
override this.EvaluateSelectMethodParameters : System.Web.UI.DataSourceSelectArguments * DataSourceSelectResultProcessingOptions -> System.Web.UI.WebControls.ModelDataSourceMethod
Protected Overridable Function EvaluateSelectMethodParameters (arguments As DataSourceSelectArguments, ByRef selectResultProcessingOptions As DataSourceSelectResultProcessingOptions) As ModelDataSourceMethod

Parameters

arguments
DataSourceSelectArguments

The DataSourceSelectArguments for the select operation.

selectResultProcessingOptions
DataSourceSelectResultProcessingOptions

The DataSourceSelectResultProcessingOptions to use for processing the select result once the select operation is complete. These options are determined in this method and later used by the ProcessSelectMethodResult(DataSourceSelectArguments, DataSourceSelectResultProcessingOptions, ModelDataMethodResult) method.

Returns

The information required to invoke the select method.

Applies to