Exemple #1
0
 public void InsertBefore(Type stepType, ModuleInstallingPipelineStep step)
 {
     Steps.InsertBefore(step => step.GetType() == stepType, step);
 }
Exemple #2
0
 public void Replace(Type stepType, ModuleInstallingPipelineStep step)
 {
     Steps.ReplaceOne(step => step.GetType() == stepType, step);
 }