ObjectDataSourceSelectingEventArgs Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ObjectDataSourceSelectingEventArgs class.
public:
ObjectDataSourceSelectingEventArgs(System::Collections::Specialized::IOrderedDictionary ^ inputParameters, System::Web::UI::DataSourceSelectArguments ^ arguments, bool executingSelectCount);
public ObjectDataSourceSelectingEventArgs (System.Collections.Specialized.IOrderedDictionary inputParameters, System.Web.UI.DataSourceSelectArguments arguments, bool executingSelectCount);
new System.Web.UI.WebControls.ObjectDataSourceSelectingEventArgs : System.Collections.Specialized.IOrderedDictionary * System.Web.UI.DataSourceSelectArguments * bool -> System.Web.UI.WebControls.ObjectDataSourceSelectingEventArgs
Public Sub New (inputParameters As IOrderedDictionary, arguments As DataSourceSelectArguments, executingSelectCount As Boolean)
Parameters
- inputParameters
- IOrderedDictionary
An IDictionary of Parameter objects.
- arguments
- DataSourceSelectArguments
A DataSourceSelectArguments that specifies which additional data-related operations the ObjectDataSource should perform on a results set, such as sorting the data or returning a specific subset of data.
- executingSelectCount
- Boolean
true
to indicate the ObjectDataSource is retrieving the number of rows of data, in addition to the data itself; otherwise, false
.
Remarks
The inputParameters
parameter is an IDictionary collection of name/value pairs that match those in the method signature and are passed by reference.