Summary
A collection of pipelines.
- Assembly
- Wyam
.Common .dll - Namespace
- Wyam
.Common .Execution - Interfaces
graph BT
Type-.->Interface0["IReadOnlyDictionary<string, IPipeline>"]
Type-.->Interface1["IReadOnlyList<IPipeline>"]
Type["IPipelineCollection"]
class Type type-node
Syntax
public interface IPipelineCollection : IReadOnlyDictionary<string, IPipeline>,
IReadOnlyList<IPipeline>
Properties
Name | Value | Summary |
---|---|---|
Count | int |
Gets the number of pipeline in the collection.
|
Methods
Name | Value | Summary |
---|---|---|
Add |
IPipeline |
Adds an existing pipeline to the collection.
|
Add |
IPipeline |
Adds a new named pipeline to the collection.
|
GetEnumerator |
IEnumerator |
|
IndexOf |
int |
Gets the index of a named pipeline.
|
Insert |
IPipeline |
Inserts an existing pipeline into the collection.
|
Insert |
IPipeline |
Inserts a new pipeline into the collection.
|
Remove |
bool |
Removes a pipeline from the collection by name.
|
RemoveAt |
void |
Removes a pipeline from the collection by index.
|
Extension Methods
Name | Value | Summary |
---|---|---|
Add |
IPipeline |
Adds a new unnamed pipeline to the collection.
|
Add |
IPipeline |
Adds a new unnamed pipeline to the collection.
|
Add |
IPipeline |
Adds a new named pipeline to the collection.
|
Insert |
IPipeline |
Inserts a new unnamed pipeline into the collection.
|
Insert |
IPipeline |
Inserts a new unnamed pipeline into the collection.
|
Insert |
IPipeline |
Inserts a new named pipeline into the collection.
|
InsertAfter |
IPipeline |
Inserts a new unnamed pipeline after an existing named pipeline.
|
InsertAfter |
IPipeline |
Inserts a new unnamed pipeline after an existing named pipeline.
|
InsertAfter |
IPipeline |
Inserts an existing pipeline after an existing named pipeline.
|
InsertAfter |
IPipeline |
Inserts a new named pipeline after an existing named pipeline.
|
InsertAfter |
IPipeline |
Inserts a new named pipeline after an existing named pipeline.
|
InsertBefore |
IPipeline |
Inserts a new unnamed pipeline before an existing named pipeline.
|
InsertBefore |
IPipeline |
Inserts a new unnamed pipeline before an existing named pipeline.
|
InsertBefore |
IPipeline |
Inserts an existing pipeline before an existing named pipeline.
|
InsertBefore |
IPipeline |
Inserts a new named pipeline before an existing named pipeline.
|
InsertBefore |
IPipeline |
Inserts a new named pipeline before an existing named pipeline.
|