A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More

Class ModuleManifestCollection

Represents module data storage collection.

Inheritance
System.Object
ModuleManifestCollection
Implements
Namespace: Mediachase.BusinessFoundation.Data.Modules
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 14.26.0
Syntax
public class ModuleManifestCollection : Collection<ModuleManifest>, 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