Actions YAML Reference
Properties | List of all members
IncrementVariableAction Class Reference

Increments the variable by a specified value. More...

Inherits IntegrationAction.

Inherited by DecrementVariableAction.

Properties

string VariableName [get, set]
 Specifies the name of the variable to be calculated. The default value is "". More...
 
double ByValue [get, set]
 Specifies the value to use for the calculation. This value must be greater than or equal to 0. More...
 
CommonActionProperties

Describes the common action properties for Actions and ActionGroups.

string Name [get, set]
 Specifies the name. This property cannot be empty and must be unique in the YAML script. More...
 
string Description [get, set]
 Specifies the description. The default value is "". More...
 
ActionRunType RunType [get, set]
 Runs the action by using one of the following types: More...
 
bool IgnoreErrors [get, set]
 Specifies whether to ignore errors and continue with the next action. Valid only for Action and ActionGroup. The default value is false. More...
 
int FailureRetries [get, set]
 Specifies the number of times that the action is retried if it fails. Available only for Action. The default value is 0. More...
 
int RetryInterval [get, set]
 Specifies the interval, in milliseconds, that elapses when a failed action is retried. Valid only when the value of FailureRetries is greater than 0. Available only for Action. The default value is 10000. More...
 

Detailed Description

Increments the variable by a specified value.

For common action properties, see IntegrationAction.
Example:

Actions:
- IncrementVariableAction:
VariableName: Counter
Name: Decrement Variable
# And more common action properties
...
string VariableName
Specifies the name of the variable to be calculated. The default value is "".
Definition: IncrementVariableAction.Properties.cs:54
double ByValue
Specifies the value to use for the calculation. This value must be greater than or equal to 0.
Definition: IncrementVariableAction.Properties.cs:61
string Name
Specifies the name. This property cannot be empty and must be unique in the YAML script.
Definition: IntegrationAction.Properties.cs:87

Property Documentation

◆ VariableName

string VariableName
getset

Specifies the name of the variable to be calculated. The default value is "".

◆ ByValue

double ByValue
getset

Specifies the value to use for the calculation. This value must be greater than or equal to 0.

◆ Name

string Name
getsetinherited

Specifies the name. This property cannot be empty and must be unique in the YAML script.

◆ Description

string Description
getsetinherited

Specifies the description. The default value is "".

◆ RunType

ActionRunType RunType
getsetinherited

Runs the action by using one of the following types:

  • Always (default)
  • Never

◆ IgnoreErrors

bool IgnoreErrors
getsetinherited

Specifies whether to ignore errors and continue with the next action. Valid only for Action and ActionGroup. The default value is false.

◆ FailureRetries

int FailureRetries
getsetinherited

Specifies the number of times that the action is retried if it fails. Available only for Action. The default value is 0.

◆ RetryInterval

int RetryInterval
getsetinherited

Specifies the interval, in milliseconds, that elapses when a failed action is retried. Valid only when the value of FailureRetries is greater than 0. Available only for Action. The default value is 10000.


The documentation for this class was generated from the following file: