Table of Contents

Method Set

Namespace
Sisk.Core.Entity
Assembly
Sisk.Core.dll

Set(string, string)

Sets the value associated with the specified key, replacing any existing values.

public void Set(string key, string value)

Parameters

key string

The key for which to set the value.

value string

The value to associate with the key.

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 string

The key for which to set the values.

value IEnumerable<string>

The collection of values to associate with the key.