Method Set
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.