Class InstallationComponentCollection
Represents a collection of InstallationComponent objects.
Inheritance
System.Object
System.Collections.ObjectModel.Collection<InstallationComponent>
InstallationComponentCollection
Implements
System.Collections.Generic.IList<InstallationComponent>
System.Collections.Generic.ICollection<InstallationComponent>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<InstallationComponent>
System.Collections.Generic.IReadOnlyCollection<InstallationComponent>
System.Collections.Generic.IEnumerable<InstallationComponent>
System.Collections.IEnumerable
Inherited Members
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.Add(TimeCockpit.Data.Install.InstallationComponent)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.Clear()
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.CopyTo(TimeCockpit.Data.Install.InstallationComponent[], System.Int32)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.Contains(TimeCockpit.Data.Install.InstallationComponent)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.GetEnumerator()
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.IndexOf(TimeCockpit.Data.Install.InstallationComponent)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.Insert(System.Int32, TimeCockpit.Data.Install.InstallationComponent)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.Remove(TimeCockpit.Data.Install.InstallationComponent)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.RemoveAt(System.Int32)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.ClearItems()
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.RemoveItem(System.Int32)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IEnumerable.GetEnumerator()
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.get_Item(System.Int32)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.Add(System.Object)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.Contains(System.Object)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.IndexOf(System.Object)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.Remove(System.Object)
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.Count
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.Items
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.Item[System.Int32]
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.Generic.ICollection<TimeCockpit.Data.Install.InstallationComponent>.IsReadOnly
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.ICollection.IsSynchronized
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.ICollection.SyncRoot
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.Item[System.Int32]
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.IsReadOnly
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.System.Collections.IList.IsFixedSize
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.Install
Assembly: TimeCockpit.Data.dll
Syntax
public class InstallationComponentCollection : Collection<InstallationComponent>, IList<InstallationComponent>, ICollection<InstallationComponent>, IList, ICollection, IReadOnlyList<InstallationComponent>, IReadOnlyCollection<InstallationComponent>, IEnumerable<InstallationComponent>, IEnumerable
Constructors
InstallationComponentCollection()
Declaration
public InstallationComponentCollection()
Methods
InsertItem(Int32, InstallationComponent)
Inserts an element into the collection at the specified index.
Declaration
protected override void InsertItem(int index, InstallationComponent item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index at which item should be inserted. |
InstallationComponent | item | The object to insert. The value must not be null. |
Overrides
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.InsertItem(System.Int32, TimeCockpit.Data.Install.InstallationComponent)
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown if the collection already contains the specified item. |
SetItem(Int32, InstallationComponent)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, InstallationComponent item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the element to replace. |
InstallationComponent | item | The new value for the element at the specified index. The value must not be null. |
Overrides
System.Collections.ObjectModel.Collection<TimeCockpit.Data.Install.InstallationComponent>.SetItem(System.Int32, TimeCockpit.Data.Install.InstallationComponent)
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown if the collection already contains the specified item. |