DataBoundControl.GetData Método

Definição

Recupera um objeto DataSourceView que o controle com associação de dados usa para executar operações de dados.

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

Retornos

DataSourceView

Um DataSourceView que o controle com associação de dados usa para executar operações de dados. Se a propriedade DataMember estiver definida, um DataSourceView nomeado específico será retornado. Caso contrário, o DataSourceView padrão será retornado.

Exceções

As propriedades DataSource e DataSourceID foram definidas.

- ou - A propriedade DataMember foi definida, mas um objeto DataSourceView com esse nome não existe.

Exemplos

O exemplo de código a seguir demonstra como o GetData método é chamado para recuperar o DataSourceView objeto do controle de fonte de dados associado e o Select método é chamado para recuperar os dados. Este exemplo de código faz parte de um exemplo maior fornecido para a DataBoundControl classe.

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

Comentários

O GetData método recupera um DataSourceView objeto do controle de fonte de dados associado chamando o GetDataSource método. Se a DataSource propriedade for usada para identificar uma fonte de dados, um objeto padrão DataSourceView será criado.

Aplica-se a

Confira também