Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FlowExecutionState" /> class.
 /// </summary>
 /// <param name="InputData">InputData.</param>
 /// <param name="Output">Output.</param>
 /// <param name="Stages">Stages.</param>
 /// <param name="Iterations">if the input supports multiple iterations, these are the iterations.</param>
 /// <param name="Report">if the input supports multiple iterations, but groupToSingleDocument is enabled, these are the post processing zones. If the input does not support multiple iterations, these are the flow zones.</param>
 /// <param name="WaitingFor">WaitingFor.</param>
 public FlowExecutionState(IdWithName InputData = default(IdWithName), FlowExecutionStateOutput Output = default(FlowExecutionStateOutput), List <FlowExecutionStage> Stages = default(List <FlowExecutionStage>), List <FlowExecutionIteration> Iterations = default(List <FlowExecutionIteration>), List <FlowZoneState> Report = default(List <FlowZoneState>), string WaitingFor = default(string))
 {
     this.InputData  = InputData;
     this.Output     = Output;
     this.Stages     = Stages;
     this.Iterations = Iterations;
     this.Report     = Report;
     this.WaitingFor = WaitingFor;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="FlowExecutionState" /> class.
 /// </summary>
 /// <param name="InputData">InputData.</param>
 /// <param name="Output">Output.</param>
 /// <param name="Stages">Stages.</param>
 /// <param name="Iterations">if the input supports multiple iterations, these are the iterations.</param>
 /// <param name="Report">if the input supports multiple iterations, but groupToSingleDocument is enabled, these are the post processing zones. If the input does not support multiple iterations, these are the flow zones.</param>
 /// <param name="WaitingFor">WaitingFor.</param>
 /// <param name="LanguageCode">LanguageCode.</param>
 /// <param name="TimeZoneId">TimeZoneId.</param>
 /// <param name="Warnings">Warnings.</param>
 /// <param name="Errors">Errors.</param>
 public FlowExecutionState(IdWithName InputData = default(IdWithName), FlowExecutionStateOutput Output = default(FlowExecutionStateOutput), List <FlowExecutionStage> Stages = default(List <FlowExecutionStage>), List <FlowExecutionIteration> Iterations = default(List <FlowExecutionIteration>), List <FlowZoneState> Report = default(List <FlowZoneState>), string WaitingFor = default(string), string LanguageCode = default(string), string TimeZoneId = default(string), List <FlowException> Warnings = default(List <FlowException>), List <FlowException> Errors = default(List <FlowException>))
 {
     this.InputData    = InputData;
     this.Output       = Output;
     this.Stages       = Stages;
     this.Iterations   = Iterations;
     this.Report       = Report;
     this.WaitingFor   = WaitingFor;
     this.LanguageCode = LanguageCode;
     this.TimeZoneId   = TimeZoneId;
     this.Warnings     = Warnings;
     this.Errors       = Errors;
 }