Class IisModuleCollection
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a collection of IIS modules.
public class IisModuleCollection : Collection<IisModule>, IList<IisModule>, ICollection<IisModule>, IList, ICollection, IReadOnlyList<IisModule>, IReadOnlyCollection<IisModule>, IEnumerable<IisModule>, IEnumerable
- Inheritance
-
IisModuleCollection
- Implements
- Inherited Members
Constructors
IisModuleCollection()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.IisModuleCollection class.
public IisModuleCollection()
Methods
Exists(string)
Returns a System.Boolean value that indicates whether a CENTREL.XIA.Configuration.Types.IisModule with the specified name exists within the collection.
public bool Exists(string name)
Parameters
name
stringThe name of the CENTREL.XIA.Configuration.Types.IisModule to locate.
Returns
- bool
A System.Boolean value that indicates whether a CENTREL.XIA.Configuration.Types.IisModule with the specified name exists within the collection.
FindByName(string)
Returns the CENTREL.XIA.Configuration.Types.IisModule with the specified name, or null if no CENTREL.XIA.Configuration.Types.IisModule with the specified name is found.
public IisModule FindByName(string name)
Parameters
name
stringThe name of the CENTREL.XIA.Configuration.Types.IisModule to locate.
Returns
- IisModule
The CENTREL.XIA.Configuration.Types.IisModule with the specified name.