World is now on Opti ID! Learn more

Class ModuleDataStorageCollection

Represents module data storage collection.

Inheritance
System.Object
ModuleDataStorageCollection
Implements
Namespace: Mediachase.BusinessFoundation.Data.Modules
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 14.26.0
Syntax
public class ModuleDataStorageCollection : Collection<ModuleDataStorage>, IChangeTracking

Constructors

ModuleDataStorageCollection()

Initializes a new instance of the ModuleDataStorageCollection class.

Declaration
public ModuleDataStorageCollection()

Properties

Item[String]

Gets the ModuleDataStorage with the specified name.

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

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