BaseDataBoundControl.IsBoundUsingDataSourceID Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene un valor que indica si la propiedad DataSourceID está establecida.
protected:
property bool IsBoundUsingDataSourceID { bool get(); };
protected bool IsBoundUsingDataSourceID { get; }
member this.IsBoundUsingDataSourceID : bool
Protected ReadOnly Property IsBoundUsingDataSourceID As Boolean
Valor de propiedad
El valor true
se devuelve si la DataSourceID propiedad se establece en un valor distinto Emptyde ; de lo contrario, el valor es false
.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usa la IsBoundUsingDataSourceID propiedad una clase de control enlazada a datos derivada. La IsBoundUsingDataSourceID propiedad se usa en la implementación del PerformSelect método para determinar si se debe generar el DataBinding evento. Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase 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
Comentarios
Los controles como GridView, DetailsView, FormViewy Menu usan la IsBoundUsingDataSourceID propiedad para determinar si el control enlazado a datos está enlazado a un control de origen de datos de ASP.NET 2.0, como o ObjectDataSourceSqlDataSource.