IReadOnlyModuleList Interface

Summary

A collection of optionally named modules.
Assembly
Wyam.Common.dll
Namespace
Wyam.Common.Modules
Interfaces
Implementing Types
graph BT Type-.->Interface0["IReadOnlyList<IModule>"] Type["IReadOnlyModuleList"] class Type type-node Implementing0["IReadOnlyPipeline"]-.->Type click Implementing0 "/api/Wyam.Common.Execution/IReadOnlyPipeline"

Syntax

public interface IReadOnlyModuleList : IReadOnlyList<IModule>

Properties

Name Value Summary
this[string] IModule
Gets a module with a given name.

Methods

Name Value Summary
AsKeyValuePairs() IEnumerable<KeyValuePair<string, IModule>>
Casts the list to a IEnumerable<KeyValuePair<string, IModule>>.
Contains(string) bool
Determines whether the list contains a module with a given name.
IndexOf(string) int
Gets the index of a named module.
TryGetValue(string, IModule) bool
Attempts to get a module with a given name.
GitHub