Table of Contents

Class DataPairCollection

Namespace
Cuemon.Collections
Assembly
Cuemon.Core.dll

Provides a collection of DataPair.

public class DataPairCollection : Collection<DataPair>, IList<DataPair>, ICollection<DataPair>, IReadOnlyList<DataPair>, IReadOnlyCollection<DataPair>, IEnumerable<DataPair>, IList, ICollection, IEnumerable
Inheritance
Object
Collection<DataPair>
DataPairCollection
Implements
IList<DataPair>
ICollection<DataPair>
IReadOnlyList<DataPair>
IReadOnlyCollection<DataPair>
IEnumerable<DataPair>
IList
ICollection
IEnumerable
Inherited Members
Collection<DataPair>.IList.get_Item(Int32)
Collection<DataPair>.IList.set_Item(Int32, Object)
Collection<DataPair>.Add(DataPair)
Collection<DataPair>.Clear()
Collection<DataPair>.ClearItems()
Collection<DataPair>.Contains(DataPair)
Collection<DataPair>.CopyTo(DataPair[], Int32)
Collection<DataPair>.GetEnumerator()
Collection<DataPair>.IndexOf(DataPair)
Collection<DataPair>.Insert(Int32, DataPair)
Collection<DataPair>.InsertItem(Int32, DataPair)
Collection<DataPair>.Remove(DataPair)
Collection<DataPair>.RemoveAt(Int32)
Collection<DataPair>.RemoveItem(Int32)
Collection<DataPair>.SetItem(Int32, DataPair)
Collection<DataPair>.ICollection.CopyTo(Array, Int32)
Collection<DataPair>.IEnumerable.GetEnumerator()
Collection<DataPair>.IList.Add(Object)
Collection<DataPair>.IList.Contains(Object)
Collection<DataPair>.IList.IndexOf(Object)
Collection<DataPair>.IList.Insert(Int32, Object)
Collection<DataPair>.IList.Remove(Object)
Collection<DataPair>.Count
Collection<DataPair>.Item[Int32]
Collection<DataPair>.Items
Collection<DataPair>.ICollection<DataPair>.IsReadOnly
Collection<DataPair>.ICollection.IsSynchronized
Collection<DataPair>.ICollection.SyncRoot
Collection<DataPair>.IList.IsFixedSize
Collection<DataPair>.IList.IsReadOnly
Collection<DataPair>.IList.Item[Int32]

Constructors

DataPairCollection()

Initializes a new instance of the DataPairCollection class.

public DataPairCollection()

Methods

Add<T>(String, T)

Adds a new DataPair<T> to the end of this DataPairCollection.

public void Add<T>(string name, T value)

Parameters

name String

The name of the data pair.

value T

The value of the data pair.

Type Parameters

T

The type of the data being added to this instance.

Add<T>(String, T, Type)

Adds a new DataPair<T> to the end of this DataPairCollection.

public void Add<T>(string name, T value, Type typeOf)

Parameters

name String

The name of the data pair.

value T

The value of the data pair.

typeOf Type

The type of the data pair.

Type Parameters

T

The type of the data being added to this instance.