DataBindingCollection Class

Definition

Provides a collection of DataBinding objects for an ASP.NET server control. This class cannot be inherited.

public ref class DataBindingCollection sealed : System::Collections::ICollection
public sealed class DataBindingCollection : System.Collections.ICollection
type DataBindingCollection = class
    interface ICollection
    interface IEnumerable
Public NotInheritable Class DataBindingCollection
Implements ICollection
Inheritance
DataBindingCollection
Implements

Remarks

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.

Constructors

DataBindingCollection()

Initializes a new instance of the DataBindingCollection class.

Properties

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[String]

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.

Methods

Add(DataBinding)

Adds the specified DataBinding object to the DataBindingCollection collection.

Clear()

Removes all DataBinding objects from the DataBindingCollection collection.

Contains(String)

Determines whether the data-binding collection contains a specific DataBinding object.

CopyTo(Array, Int32)

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 the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(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)

Events

Changed

Occurs when the collection of DataBinding objects is changed.

Extension Methods

Cast<TResult>(IEnumerable)

Casts the elements of an IEnumerable to the specified type.

OfType<TResult>(IEnumerable)

Filters the elements of an IEnumerable based on a specified type.

AsParallel(IEnumerable)

Enables parallelization of a query.

AsQueryable(IEnumerable)

Converts an IEnumerable to an IQueryable.

Applies to

See also