DataBindingCollection Class
Provides a collection of DataBinding objects for an ASP.NET server control. This class cannot be inherited.
Namespace: System.Web.UI
Assembly: System.Web (in System.Web.dll)
The DataBindingCollection type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | DataBindingCollection | Initializes a new instance of the DataBindingCollection class. |
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of DataBinding objects in the DataBindingCollection object. |
![]() | IsReadOnly | Gets a value indicating whether the DataBindingCollection collection is read-only. |
![]() | IsSynchronized | Gets a value indicating whether the DataBindingCollection collection is synchronized (thread safe). |
![]() | Item | Gets the DataBinding object with the specified property name. |
![]() | RemovedBindings | Gets an array of the names of the DataBinding objects removed from the collection. |
![]() | SyncRoot | Gets an object that can be used to synchronize access to the DataBindingCollection collection. |
| Name | Description | |
|---|---|---|
![]() | Add | Adds the specified DataBinding object to the DataBindingCollection collection. |
![]() | Clear | Removes all DataBinding objects from the DataBindingCollection collection. |
![]() | Contains | Determines whether the data-binding collection contains a specific DataBinding object. |
![]() | CopyTo | Copies the DataBindingCollection values to a one-dimensional Array, beginning at the Array object's specified index. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | GetEnumerator | Returns an enumerator to iterate through the DataBindingCollection object. |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | Remove(DataBinding) | Removes the specified DataBinding object from the DataBindingCollection collection and adds it to the RemovedBindings collection. |
![]() | Remove(String) | Removes the DataBinding object associated with the specified property name from the DataBindingCollection collection and adds it to the RemovedBindings collection. |
![]() | Remove(String, Boolean) | Removes the DataBinding object, associated with the specified property name, from the DataBindingCollection collection and controls whether to add the binding to the RemovedBindings list. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() | AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
![]() | AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
![]() | Cast<TResult> | Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
![]() | OfType<TResult> | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
This collection is a dictionary containing all the DataBinding objects on an ASP.NET server control. You can access the objects contained in this collection through the Control class implementation of the IDataBindingsAccessor interface. Any DataBinding or DataBindingCollection objects associated with a server control exist only at design time. They do not exist at run time and, therefore, are not accessible during run time.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
