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, используемый элементом управления с привязкой к данным для выполнения операций с данными. Если задано свойство DataMember возвращается особый именованный объект DataSourceView; в противном случае — возвращается объект DataSourceView.

Исключения

Заданы одновременно оба свойства DataSource и DataSourceID.

-или-

Свойство DataMember задано, но объект DataSourceView с соответствующим именем не существует.

Примеры

В следующем примере кода показано, как GetData вызывается метод для получения DataSourceView объекта из связанного элемента управления источником данных, а Select метод вызывается для получения данных. Этот пример входит в состав более крупного примера использования класса 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.

Применяется к

См. также раздел