Skip to main content

Variables

The Variables class represents a collection of variables within a workflow, inheriting from BaseIndexer. This class allows indexed access to variable values by their string identifiers, supporting the organized management and retrieval of key-value pairs for workflow data.

Properties

NameDescription
this[TKey key]Gets or sets the value associated with the specified key in the dictionary.

Constructors

NameDescription
Variables(dictionary)Initializes a new instance of the Variables class with a specified dictionary of variables.
BaseIndexer(dictionaryName, dictionary)Initializes a new instance of the BaseIndexer<TKey, TValue> class with a specified dictionary name and dictionary.

Generic Types

NameDescription
TValueValue type of the dictionary.
TKeyKey type of the dictionary.