예제 #1
0
 static bool IsStageConnector(RegisterStep stageStep)
 {
     return(typeof(IStageConnector).IsAssignableFrom(stageStep.BehaviorType));
 }
예제 #2
0
 public void Register(string pipelineStep, Type behavior, string description)
 {
     additions.Add(RegisterStep.Create(pipelineStep, behavior, description));
 }
예제 #3
0
 public void Register(RegisterStep rego)
 {
     additions.Add(rego);
 }
예제 #4
0
 public static Type GetInputContext(this RegisterStep step)
 {
     return(step.BehaviorType.GetInputContext());
 }