AddToDictionary

Estimated reading: 2 minutes 1531 views

The Dictionary is a collection of Keys and Values, where key is like a word and value is like a definition.Thus, The Dictionary is a general collection of keys and values pair of data. This is used to store and retrieve data temporarily when the project is running. The Dictionary class implements the IDictionary<TKey,TObject> Interface. User can store the values in any defined data type in value.

Properties

INPUT

Dictionary:* Declare the name of the dictionary here as a variable.

Key:* This indicates the content in the dictionary. E.g., Name

Value:* This indicates the value that represents the key. E.g., Age

MISC

ArgumentType1:* This indicates the type of the key we will be using. Choose from the drop down.

ArgumentType2:* This indicates the type of the value that represents the key value. Choose from the drop down

Display Name: Displays the name of the activity. You can also customize the activity name to help troubleshoot issues faster. This name will be used for logging purposes.

SkipOnError: It specifies whether to continue executing the workflow even if it throws an error. This supports only Boolean value “True or False”

True: Continues to execute the workflow irrespective of any error thrown.

False: Stops the workflow if it throws any error

Version: It specifies the version of the Dictionary feature in use

OUTPUT

ResultProvides the success status of the operation. This field indicates whether the VM was successfully stopped or if there were any issues during the operation. It provides the ability to view the execution status of the activity. It returns values in “Boolean.”
True: Indicates that the activity has been executed successfully without any errors.
False: Indicates that the activity has been unsuccessful due to an unexpected error being thrown.

Represents mandatory fields to execute the workflow.

Share this Doc

AddToDictionary

Or copy link

CONTENTS