DataBoundControl.GetData Metodo

Definizione

Recupera un oggetto DataSourceView utilizzato dal controllo associato a dati per eseguire le operazioni sui dati.

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

Restituisce

DataSourceView

Oggetto DataSourceView utilizzata dal controllo con associazione a dati per eseguire operazioni relative ai dati. Se viene impostata la proprietà DataMember, viene restituito un oggetto specifico denominato DataSourceView; in caso contrario, viene restituito l'oggetto DataSourceView predefinito.

Eccezioni

Le proprietà DataSource e DataSourceID sono entrambe impostate.

-oppure- La proprietà DataMember è impostata, ma non esiste un oggetto DataSourceView con questo nome.

Esempio

Nell'esempio di codice seguente viene illustrato come viene chiamato il GetData metodo per recuperare l'oggetto DataSourceView dal controllo origine dati associato e viene chiamato il Select metodo per recuperare i dati. Questo esempio di codice fa parte di un esempio più ampio fornito per la 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

Commenti

Il GetData metodo recupera un DataSourceView oggetto dal controllo origine dati associato chiamando il GetDataSource metodo . Se la DataSource proprietà viene utilizzata per identificare un'origine dati, viene creato un oggetto predefinito DataSourceView .

Si applica a

Vedi anche