Registers all pipelines defined in TParent.
Syntax
public static Bootstrapper AddPipelines<TParent>(this Bootstrapper bootstrapper)
Note that this method registers the pipeline with the dependency injection container
which the engine uses to populate the initial set of pipelines on instantiation. Therefore
any pipelines added through this method will take effect before anything that happens in
ConfigureEngine()
, even if the call to this method is after the call to that one.
To add pipelines after
ConfigureEngine
is called you will need to manipulate the
Pipelines
collection directly.
Type Parameters
Parameters
Return Value