Class ConnectionCollection

ConnectionCollection class

Connection collection.

public class ConnectionCollection : Collection<Connection>

Properties

NameDescription
Capacity { get; set; }
Count { get; }
Item { get; }Gets the element at the specified index.
Item { get; set; }

Methods

NameDescription
Add(Connection)Add the Connection object in the collection.
BinarySearch(Connection)
BinarySearch(Connection, IComparer<Connection>)
BinarySearch(int, int, Connection, IComparer<Connection>)
Clear()
Contains(Connection)
CopyTo(Connection[])
CopyTo(Connection[], int)
CopyTo(int, Connection[], int, int)
Exists(Predicate<Connection>)
Find(Predicate<Connection>)
FindAll(Predicate<Connection>)
FindIndex(Predicate<Connection>)
FindIndex(int, Predicate<Connection>)
FindIndex(int, int, Predicate<Connection>)
FindLast(Predicate<Connection>)
FindLastIndex(Predicate<Connection>)
FindLastIndex(int, Predicate<Connection>)
FindLastIndex(int, int, Predicate<Connection>)
GetEnumerator()
IndexOf(Connection)
IndexOf(Connection, int)
IndexOf(Connection, int, int)
LastIndexOf(Connection)
LastIndexOf(Connection, int)
LastIndexOf(Connection, int, int)
Remove(Connection)Remove the Connection object from the collection.
RemoveAt(int)

See Also