PipelineCollectionExtensions Class

Summary

Extensions for working with pipeline collections.
Assembly
Wyam.Common.dll
Namespace
Wyam.Common.Execution
Base Types
  • Object
graph BT Type-->Base0["Object"] Type["PipelineCollectionExtensions"] class Type type-node

Syntax

public static class PipelineCollectionExtensions

Methods

Name Value Summary
Add(IPipelineCollection, IModule[]) IPipeline
Adds a new unnamed pipeline to the collection.
static
Add(IPipelineCollection, IModuleList) IPipeline
Adds a new unnamed pipeline to the collection.
static
Add(IPipelineCollection, string, IModule[]) IPipeline
Adds a new named pipeline to the collection.
static
Insert(IPipelineCollection, int, IModule[]) IPipeline
Inserts a new unnamed pipeline into the collection.
static
Insert(IPipelineCollection, int, IModuleList) IPipeline
Inserts a new unnamed pipeline into the collection.
static
Insert(IPipelineCollection, int, string, IModule[]) IPipeline
Inserts a new named pipeline into the collection.
static
InsertAfter(IPipelineCollection, string, IModule[]) IPipeline
Inserts a new unnamed pipeline after an existing named pipeline.
static
InsertAfter(IPipelineCollection, string, IModuleList) IPipeline
Inserts a new unnamed pipeline after an existing named pipeline.
static
InsertAfter(IPipelineCollection, string, IPipeline) IPipeline
Inserts an existing pipeline after an existing named pipeline.
static
InsertAfter(IPipelineCollection, string, string, IModule[]) IPipeline
Inserts a new named pipeline after an existing named pipeline.
static
InsertAfter(IPipelineCollection, string, string, IModuleList) IPipeline
Inserts a new named pipeline after an existing named pipeline.
static
InsertBefore(IPipelineCollection, string, IModule[]) IPipeline
Inserts a new unnamed pipeline before an existing named pipeline.
static
InsertBefore(IPipelineCollection, string, IModuleList) IPipeline
Inserts a new unnamed pipeline before an existing named pipeline.
static
InsertBefore(IPipelineCollection, string, IPipeline) IPipeline
Inserts an existing pipeline before an existing named pipeline.
static
InsertBefore(IPipelineCollection, string, string, IModule[]) IPipeline
Inserts a new named pipeline before an existing named pipeline.
static
InsertBefore(IPipelineCollection, string, string, IModuleList) IPipeline
Inserts a new named pipeline before an existing named pipeline.
static
GitHub