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