ModelDataSourceView.ProcessSelectMethodResult Method

Definition

Performs operations on the select method result like auto paging and sorting if applicable.

protected:
 virtual System::Object ^ ProcessSelectMethodResult(System::Web::UI::DataSourceSelectArguments ^ arguments, System::Web::UI::WebControls::DataSourceSelectResultProcessingOptions ^ selectResultProcessingOptions, System::Web::UI::WebControls::ModelDataMethodResult ^ result);
protected virtual object ProcessSelectMethodResult (System.Web.UI.DataSourceSelectArguments arguments, System.Web.UI.WebControls.DataSourceSelectResultProcessingOptions selectResultProcessingOptions, System.Web.UI.WebControls.ModelDataMethodResult result);
abstract member ProcessSelectMethodResult : System.Web.UI.DataSourceSelectArguments * System.Web.UI.WebControls.DataSourceSelectResultProcessingOptions * System.Web.UI.WebControls.ModelDataMethodResult -> obj
override this.ProcessSelectMethodResult : System.Web.UI.DataSourceSelectArguments * System.Web.UI.WebControls.DataSourceSelectResultProcessingOptions * System.Web.UI.WebControls.ModelDataMethodResult -> obj
Protected Overridable Function ProcessSelectMethodResult (arguments As DataSourceSelectArguments, selectResultProcessingOptions As DataSourceSelectResultProcessingOptions, result As ModelDataMethodResult) As Object

Parameters

arguments
DataSourceSelectArguments

The DataSourceSelectArguments object for the select operation.

selectResultProcessingOptions
DataSourceSelectResultProcessingOptions

The DataSourceSelectResultProcessingOptions object to use for processing the select result. These options are determined in an earlier call to EvaluateSelectMethodParameters(DataSourceSelectArguments, DataSourceSelectResultProcessingOptions).

result
ModelDataMethodResult

The result after operations like auto paging/sorting are done.

Returns

The select method result.

Applies to