Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 046c5b3

Browse files
authored
Merge pull request #485 from ServiceStack/netcore
Add multiple-values known headers
2 parents 043ddb2 + 165d673 commit 046c5b3

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

src/ServiceStack.Text/HttpUtils.cs

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1364,6 +1364,42 @@ public static class HttpHeaders
13641364
public const string Range = "Range";
13651365

13661366
public const string SOAPAction = "SOAPAction";
1367+
1368+
public const string Allow = "Allow";
1369+
1370+
public const string AcceptCharset = "Accept-Charset";
1371+
1372+
public const string AcceptLanguage = "Accept-Language";
1373+
1374+
public const string Connection = "Connection";
1375+
1376+
public const string Cookie = "Cookie";
1377+
1378+
public const string ContentLanguage = "Content-Language";
1379+
1380+
public const string Expect = "Expect";
1381+
1382+
public const string Pragma = "Pragma";
1383+
1384+
public const string ProxyAuthenticate = "Proxy-Authenticate";
1385+
1386+
public const string ProxyAuthorization = "Proxy-Authorization";
1387+
1388+
public const string ProxyConnection = "Proxy-Connection";
1389+
1390+
public const string SetCookie2 = "Set-Cookie2";
1391+
1392+
public const string TE = "TE";
1393+
1394+
public const string Trailer = "Trailer";
1395+
1396+
public const string TransferEncoding = "Transfer-Encoding";
1397+
1398+
public const string Upgrade = "Upgrade";
1399+
1400+
public const string Via = "Via";
1401+
1402+
public const string Warning = "Warning";
13671403
}
13681404

13691405
public static class HttpMethods

0 commit comments

Comments
 (0)