BaseDataBoundControl.IsBoundUsingDataSourceID Propriedade

Definição

Obtém um valor que indica se a propriedade DataSourceID foi definida.

protected:
 property bool IsBoundUsingDataSourceID { bool get(); };
protected bool IsBoundUsingDataSourceID { get; }
member this.IsBoundUsingDataSourceID : bool
Protected ReadOnly Property IsBoundUsingDataSourceID As Boolean

Valor da propriedade

O valor true será retornado se a DataSourceID propriedade for definida como valor diferente de Empty; caso contrário, o valor será false.

Exemplos

O exemplo de código a seguir demonstra como a IsBoundUsingDataSourceID propriedade é usada por uma classe de controle associada a dados derivada. A IsBoundUsingDataSourceID propriedade é usada na implementação do PerformSelect método para determinar se o DataBinding evento deve ser gerado. 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

Controles como GridView, DetailsView, FormViewe Menu usam a IsBoundUsingDataSourceID propriedade para determinar se o controle associado a dados está associado a um controle de fonte de dados ASP.NET 2.0, como um ObjectDataSource ou SqlDataSource.

Aplica-se a

Confira também