Interface ILisrtModuleCollection
Interface for a collection of ILisrtModule.
public interface ILisrtModuleCollection : ICollection<ILisrtModule>, IEnumerable<ILisrtModule>, IEnumerable, INotifyCollectionChanged
- Inherited Members
Properties
this[string]
Gets the module with given name.
ILisrtModule this[string moduleName] { get; }
Parameters
moduleName
stringThe name of the ILisrtModule.
Property Value
- ILisrtModule
The ILisrtModule with the given name.
Methods
ContainsKey(string)
Determines whether a sequence contains a specified element by using the default equality comparer.
bool ContainsKey(string moduleName)
Parameters
moduleName
stringThe name of the ILisrtModule.
Returns
- bool
True, if the ILisrtModuleCollection contains a ILisrtModule with this name.