Headers.add

Adds a new key-value pair to the headers without overriding the existing ones.

struct Headers
pure @safe
void
add
(
string key
,
string value
)

Examples

headers.add("Set-Cookie", "a=b");
headers.add("Set-Cookie", "b=c");

Meta