AddKeyValue() public method

Adds arbitrary string 'value' under 'key', allowing custom properties to be stored in this Timing step.
public AddKeyValue ( string key, string value ) : void
key string
value string
return void
        internal void AddDataImpl(string key, string value)
        {
            if (Head == null)
            {
                return;
            }

            Head.AddKeyValue(key, value);
        }