File: Http\HostSuffixTrieNode.cs | Web Access |
Project: src\src\Libraries\Microsoft.Extensions.Http.Diagnostics\Microsoft.Extensions.Http.Diagnostics.csproj (Microsoft.Extensions.Http.Diagnostics) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Extensions.Http.Diagnostics; internal sealed class HostSuffixTrieNode { private const int ASCIICharCount = 128; public string DependencyName { get; set; } = string.Empty; public RequestMetadata RequestMetadata { get; } = new RequestMetadata(); public HostSuffixTrieNode[] Nodes { get; } = new HostSuffixTrieNode[ASCIICharCount]; } |