Method Add
Add(string, string[])
Adds an array of values associated with the specified key.
public void Add(string key, string[] value)
Parameters
key
stringThe key to which the values will be added.
value
string[]The array of values to associate with the key.
Add(string, IEnumerable<string>)
Adds a collection of values associated with the specified key.
public void Add(string key, IEnumerable<string> value)
Parameters
key
stringThe key to which the values will be added.
value
IEnumerable<string>The collection of values to associate with the key.
Add(string, string)
Adds a single value associated with the specified key.
public void Add(string key, string value)
Parameters
key
stringThe key to which the value will be added.
value
stringThe value to associate with the key.
Add(KeyValuePair<string, string[]>)
Adds a key-value pair to the StringKeyStore.
public void Add(KeyValuePair<string, string[]> item)
Parameters
item
KeyValuePair<string, string[]>The key-value pair to add, where the key is associated with an array of values.