| File: System\Net\Http\Headers\KnownHeader.Http2And3.cs | Web Access |
| Project: src\runtime\src\libraries\System.Net.Http\src\System.Net.Http.csproj (System.Net.Http) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics.CodeAnalysis; using System.Net.Http.HPack; namespace System.Net.Http.Headers { internal sealed partial class KnownHeader { [MemberNotNull(nameof(Http2EncodedName))] [MemberNotNull(nameof(Http3EncodedName))] partial void Initialize(int? http2StaticTableIndex, int? http3StaticTableIndex) { Http2EncodedName = http2StaticTableIndex.HasValue ? HPackEncoder.EncodeLiteralHeaderFieldWithoutIndexingToAllocatedArray(http2StaticTableIndex.GetValueOrDefault()) : HPackEncoder.EncodeLiteralHeaderFieldWithoutIndexingNewNameToAllocatedArray(Name); Http3EncodedName = http3StaticTableIndex.HasValue ? QPack.QPackEncoder.EncodeLiteralHeaderFieldWithStaticNameReferenceToArray(http3StaticTableIndex.GetValueOrDefault()) : QPack.QPackEncoder.EncodeLiteralHeaderFieldWithoutNameReferenceToArray(Name); } public byte[] Http2EncodedName { get; private set; } public byte[] Http3EncodedName { get; private set; } } }