You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Used by Build object. Represents the collection of stages in the parent object (i.e. build) and includes functions to select stages in that collection. The stages are sorted by running order.


Properties

NameDescriptionReturn TypeUsage Example
CountReturns number of stages in the collectionInteger






Functions

Name and ParametersDescriptionReturn TypeUsage Example
First()Gets first stage from the collectionStage

First(string property, string operator, string value, bool ignoreCase)

Gets first matching stage from the collection for given property using given operator. See list of valid operators below.

Stage

Item(integer index)Gets a stage in the collection by zero-based index numberStage

Last()Gets last stage from the collectionStage

Last(string property, string operator, string value, bool ignoreCase)Gets last matching stage from the collection for given property using given operator. See list of valid operators below.Stage

Where(string property, string operator, string value, bool ignoreCase)Gets matching stages from collection for given property using given operator. See list of valid operators below.Stages Collection






Operators

  • Equals
  • DoesNotEqual
  • Contains
  • DoesNotContain
  • StartsWith
  • DoesNotStartWith
  • EndsWith
  • DoesNotEndWith
  • IsRegexMatch
  • IsNotRegexMatch,
  • No labels