CreateDataSourceSelectArguments Method
.NET Framework Class Library
DataBoundControl..::.CreateDataSourceSelectArguments Method

Creates a default DataSourceSelectArguments object used by the data-bound control if no arguments are specified.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
Visual Basic (Declaration)
Protected Overridable Function CreateDataSourceSelectArguments As DataSourceSelectArguments
Visual Basic (Usage)
Dim returnValue As DataSourceSelectArguments

returnValue = Me.CreateDataSourceSelectArguments()
C#
protected virtual DataSourceSelectArguments CreateDataSourceSelectArguments()
Visual C++
protected:
virtual DataSourceSelectArguments^ CreateDataSourceSelectArguments()
JScript
protected function CreateDataSourceSelectArguments() : DataSourceSelectArguments

The CreateDataSourceSelectArguments method is used by the SelectArguments property to initialize a default arguments object, and by the DataBoundControl class's implementation of the PerformSelect method.

The following code example demonstrates how the CreateDataSourceSelectArguments method can be used in a derived class to retrieve a default DataSourceSelectArguments object.

Visual Basic
Protected Overrides Sub PerformSelect()

    ' Call OnDataBinding here if bound to a data source using the 
    ' DataSource property (instead of a DataSourceID) because the 
    ' data-binding statement is evaluated before the call to GetData.
    If Not IsBoundUsingDataSourceID Then
        OnDataBinding(EventArgs.Empty)
    End If

    ' The GetData method retrieves the DataSourceView object from the 
    ' IDataSource associated with the data-bound control.            
    GetData().Select(CreateDataSourceSelectArguments(), _
        AddressOf OnDataSourceViewSelectCallback)

    ' The PerformDataBinding method has completed.
    RequiresDataBinding = False
    MarkAsDataBound()

    ' Raise the DataBound event.
        OnDataBound(EventArgs.Empty)

End Sub 'PerformSelect

C#
protected override void PerformSelect() {            

   // Call OnDataBinding here if bound to a data source using the
   // DataSource property (instead of a DataSourceID), because the
   // databinding statement is evaluated before the call to GetData.       
    if (! IsBoundUsingDataSourceID) {
        OnDataBinding(EventArgs.Empty);
    }            

    // The GetData method retrieves the DataSourceView object from  
    // the IDataSource associated with the data-bound control.            
    GetData().Select(CreateDataSourceSelectArguments(), 
        OnDataSourceViewSelectCallback);

    // The PerformDataBinding method has completed.
    RequiresDataBinding = false;
    MarkAsDataBound();

    // Raise the DataBound event.
    OnDataBound(EventArgs.Empty);
}

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
Page view tracker