[About] Version=1.0 Author=Nic Mail=support@hiasm.com [Type] Class=Element Info=Represents a collection of keys and values [Property] +Dictionary=Sets the default collection. Format: key0=value0...keyN=valueN, one pair per line. ARG(string[])|5| [Methods] doAdd=Adds the specified key and value to the dictionary. ARG(string key, string value)|1|0 doClear=Removes all keys and values from the Dictionary. ARG()|1|0 *doContainsKey=Determines whether the Dictionary contains the specified key. ARG(string key)|1|0 *doContainsValue=Determines whether the Dictionary contains a specific value. ARG(string value)|1|0 *doGetItem=Gets the value associated with the specified key. ARG(string key)|1|0 *doItem=Sets the value associated with the specified key. ARG(string key, string value)|1|0 *doRemove=Removes the value with the specified key from the Dictionary. ARG(string key)|1|0 *onContainsKey=Occurs after searching the key by method doContainsKey. ARG(bool)|2|104 *onContainsValue=Occurs after searching the value by method doContainsValue. ARG(bool)|2|104 *onGetItem=Occurs after getting the value associated with the specified key and writes it to the flow. ARG(string)|2|2 Dictionary=Returns the collection. ARG(Dictionary)|3|0 Count=Returns the number of key/value pairs contained in the Dictionary. ARG(int)|3|1 *Comparer=Returns the IEqualityComparer that is used to determine equality of keys for the dictionary. ARG(IEqualityComparer)|3|0 *GetEnumerator=Returns an enumerator that iterates through the Dictionary. ARG(Enumerator)|3|0 Item=Returns the value associated with the specified key. ARG(string)|3|2 *Keys=Returns a collection containing the keys in the Dictionary. ARG(string[])|3|13 *Values=Returns a collection containing the values in the Dictionary. ARG(string[])|3|13 Key=Defines the key of the element to operate. ARG(string)|4|2 Value=The value of the element to operate. The value can be null for reference types. ARG(string)|4|2