London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Class ModuleManifestCollection

Represents module data storage collection.

Inheritance
System.Object
System.Collections.ObjectModel.Collection<ModuleManifest>
ModuleManifestCollection
Implements
System.Collections.Generic.IList<ModuleManifest>
System.Collections.Generic.ICollection<ModuleManifest>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<ModuleManifest>
System.Collections.Generic.IReadOnlyCollection<ModuleManifest>
System.Collections.Generic.IEnumerable<ModuleManifest>
System.Collections.IEnumerable
Inherited Members
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.Add(Mediachase.BusinessFoundation.Data.Modules.ModuleManifest)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.Clear()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.CopyTo(Mediachase.BusinessFoundation.Data.Modules.ModuleManifest[], System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.Contains(Mediachase.BusinessFoundation.Data.Modules.ModuleManifest)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.GetEnumerator()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.IndexOf(Mediachase.BusinessFoundation.Data.Modules.ModuleManifest)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.Insert(System.Int32, Mediachase.BusinessFoundation.Data.Modules.ModuleManifest)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.Remove(Mediachase.BusinessFoundation.Data.Modules.ModuleManifest)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.RemoveAt(System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IEnumerable.GetEnumerator()
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.get_Item(System.Int32)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.Add(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.Contains(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.IndexOf(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.Remove(System.Object)
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.Count
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.Items
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.Item[System.Int32]
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.Generic.ICollection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.IsReadOnly
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.ICollection.IsSynchronized
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.ICollection.SyncRoot
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.Item[System.Int32]
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.System.Collections.IList.IsReadOnly
System.Collections.ObjectModel.Collection<Mediachase.BusinessFoundation.Data.Modules.ModuleManifest>.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: Mediachase.BusinessFoundation.Data.Modules
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 13.30.0
Syntax
public class ModuleManifestCollection : Collection<ModuleManifest>, IList<ModuleManifest>, ICollection<ModuleManifest>, IList, ICollection, IReadOnlyList<ModuleManifest>, IReadOnlyCollection<ModuleManifest>, IEnumerable<ModuleManifest>, IEnumerable, IChangeTracking

Constructors

ModuleManifestCollection()

Initializes a new instance of the ModuleManifestCollection class.

Declaration
public ModuleManifestCollection()

Properties

Item[String]

Gets the ModuleManifest with the specified name.

Declaration
public ModuleManifest this[string name] { get; }
Parameters
Type Name Description
System.String name
Property Value
Type Description
ModuleManifest

Methods

Contains(String)

Determines whether [contains] [the specified name].

Declaration
public bool Contains(string name)
Parameters
Type Name Description
System.String name

The name.

Returns
Type Description
System.Boolean

true if [contains] [the specified name]; otherwise, false.

Remove(String)

Removes the specified name.

Declaration
public void Remove(string name)
Parameters
Type Name Description
System.String name

The name.

Implements

System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<T>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable