/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Shared/runtime/Http2/Hpack/H2StaticTable.cs
65 строк
3 KB
github-actions[bot]
Sync shared code from runtime (#32573)
12 май 2021, 05:36
Не верифицирован
12 май 2021, 05:36
990e060
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Net.Http.HPack { internal static partial class H2StaticTable { // Values for encoding. // Unused values are omitted. public const int Authority = 1; public const int MethodGet = 2; public const int MethodPost = 3; public const int PathSlash = 4; public const int SchemeHttp = 6; public const int SchemeHttps = 7; public const int Status200 = 8; public const int AcceptCharset = 15; public const int AcceptEncoding = 16; public const int AcceptLanguage = 17; public const int AcceptRanges = 18; public const int Accept = 19; public const int AccessControlAllowOrigin = 20; public const int Age = 21; public const int Allow = 22; public const int Authorization = 23; public const int CacheControl = 24; public const int ContentDisposition = 25; public const int ContentEncoding = 26; public const int ContentLanguage = 27; public const int ContentLength = 28; public const int ContentLocation = 29; public const int ContentRange = 30; public const int ContentType = 31; public const int Cookie = 32; public const int Date = 33; public const int ETag = 34; public const int Expect = 35; public const int Expires = 36; public const int From = 37; public const int Host = 38; public const int IfMatch = 39; public const int IfModifiedSince = 40; public const int IfNoneMatch = 41; public const int IfRange = 42; public const int IfUnmodifiedSince = 43; public const int LastModified = 44; public const int Link = 45; public const int Location = 46; public const int MaxForwards = 47; public const int ProxyAuthenticate = 48; public const int ProxyAuthorization = 49; public const int Range = 50; public const int Referer = 51; public const int Refresh = 52; public const int RetryAfter = 53; public const int Server = 54; public const int SetCookie = 55; public const int StrictTransportSecurity = 56; public const int TransferEncoding = 57; public const int UserAgent = 58; public const int Vary = 59; public const int Via = 60; public const int WwwAuthenticate = 61; } }