Method Set
Set(KeyValuePair<string, string[]>)
Sets the value associated with the specified key, replacing any existing values.
public void Set(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.
Set(string, string)
Sets the value associated with the specified key, replacing any existing values.
public void Set(string key, string value)
Parameters
Set(string, IEnumerable<string>)
Sets the collection of values associated with the specified key, replacing any existing values.
public void Set(string key, IEnumerable<string> value)
Parameters
key
stringThe key for which to set the values.
value
IEnumerable<string>The collection of values to associate with the key.