Pipeline<TContext, TBaseNode>.Run Method
Overloads
Name | Description |
---|---|
Runs the pipeline on the specified root node. | |
Runs the pipeline on the specified root node. |
Run(TContext, TBaseNode)
Runs the pipeline on the specified root node.
public bool Run(TContext? context, TBaseNode root);
Parameters
Name | Type | Description |
---|---|---|
context | TContext | The processing context. |
root | TBaseNode | The root node to run the pipeline on. |
Returns
true
if all stages ran successfully, false
otherwise.
Run(TContext, TBaseNode, String)
Runs the pipeline on the specified root node.
public bool Run(TContext? context, TBaseNode root, out string lastStageRun);
Parameters
Name | Type | Description |
---|---|---|
context | TContext | The processing context. |
root | TBaseNode | The root node to run the pipeline on. |
lastStageRun | The name of the last stage that was run. If |
Returns
true
if all stages ran successfully, false
otherwise.
Last modified: 12 August 2025