At.FF.Krems.Configuration.Google.QueryStringParametersList.Add C# (CSharp) Method

Add() public method

Adds the specified key.
public Add ( string key, string value ) : void
key string The key.
value string The value.
return void
        public void Add(string key, string value)
        {
            this.List.Add(new KeyValuePair<string, string>(key, value));
        }
QueryStringParametersList