Pipeline<TNode>.Run Method
Overloads
Name | Description |
---|---|
Runs the pipeline on the specified root node. | |
Runs the pipeline on the specified root node. |
Run(TNode)
Runs the pipeline on the specified root node.
public bool Run(TNode root);
Parameters
Name | Type | Description |
---|---|---|
root | TNode | The root node to run the pipeline on. |
Returns
true
if all stages ran successfully, false
otherwise.
Run(TNode, String)
Runs the pipeline on the specified root node.
public bool Run(TNode root, out string lastStageRan);
Parameters
Name | Type | Description |
---|---|---|
root | TNode | The root node to run the pipeline on. |
lastStageRan | The name of the last stage that was ran. If |
Returns
true
if all stages ran successfully, false
otherwise.
Last modified: 22 November 2024