Represents a pipeline with a name.
- Namespace
- Statiq
.Common - Interfaces
- Implementing Types
graph BT
Type-.->Interface0["IPipeline"]
click Interface0 "/api/Statiq.Common/IPipeline"
Type-.->Interface1["IReadOnlyPipeline"]
click Interface1 "/api/Statiq.Common/IReadOnlyPipeline"
Type["INamedPipeline"]
class Type type-node
Implementing0["NamedPipelineWrapper"]-.->Type
click Implementing0 "/api/Statiq.Common/NamedPipelineWrapper"
Implementing1["INamedPipelineWrapper"]-.->Type
click Implementing1 "/api/Statiq.Common/INamedPipelineWrapper"
Syntax
public interface INamedPipeline : IPipeline, IReadOnlyPipeline
Remarks
Use this when creating pipeline classes and registering through the DI container
to give the pipeline a name other than it's class name.
Properties
Name | Property Type | Summary |
---|---|---|
PipelineName | string |
The name of the pipeline.
|