CurrentIterationNumber Object

Relevant for: API testing only

Description

Gets the current iteration number.

Back to top

Syntax

this.<parent activity>.CurrentIterationNumber

Back to top

Supported Methods

None

Back to top

Example

var GetFlights_Input_Arrival_City = GetDataSource("WebServiceData!Input").GetValue(this.Loop2.CurrentIterationNumber-1, "ArrivalCity").ToString();
StServiceCallActivity4.InputEnvelope.SelectSingleNode("/*[local-name(.)='Envelope'][1]/*[local-name(.)='Body'][1]/*[local-name(.)='GetFlights'][1]/*[local-name(.)='ArrivalCity'][1]").InnerText = GetFlights_Input_Arrival_City;

Back to top