DataBoundControl.GetData メソッド

定義

データ操作を実行するために、データ バインド コントロールが使用する DataSourceView オブジェクトを取得します。

protected:
 virtual System::Web::UI::DataSourceView ^ GetData();
protected virtual System.Web.UI.DataSourceView GetData ();
abstract member GetData : unit -> System.Web.UI.DataSourceView
override this.GetData : unit -> System.Web.UI.DataSourceView
Protected Overridable Function GetData () As DataSourceView

戻り値

DataSourceView

データ操作を実行するためにデータ バインド コントロールが使用する DataSourceViewDataMember プロパティが設定されている場合、特定の、名前付き DataSourceView が返されます。それ以外の場合は、既定の DataSourceView が返されます。

例外

DataSource プロパティと DataSourceID プロパティの両方が設定されています。

  • または - DataMember プロパティが設定されていますが、その名前の DataSourceView オブジェクトが存在しません。

次のコード例は、関連付けられているデータ ソース コントロールからオブジェクトをDataSourceView取得するためにメソッドを呼び出す方法と、データをSelect取得するためにメソッドを呼び出す方法GetDataを示しています。 このコード例は、DataBoundControl クラスのために提供されている大規模な例の一部です。

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);
}
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

注釈

このメソッドは GetData 、メソッドを DataSourceView 呼び出して、関連付けられているデータ ソース コントロールからオブジェクトを GetDataSource 取得します。 このプロパティを DataSource 使用してデータ ソースを識別する場合は、既定 DataSourceView のオブジェクトが作成されます。

適用対象

こちらもご覧ください