public void Add(HttpHeader header) => this.Set(header.Name, header.Value);
public static HttpHeaders LoadFromLines(IEnumerable <string> lines) => new HttpHeaders(lines.Select((singleLine) => HttpHeader.LoadFromLine(singleLine)));