2 instantiations of HostSuffixTrieNode
Microsoft.Extensions.Http.Diagnostics (2)
Http\HttpDependencyMetadataResolver.cs (2)
36private readonly HostSuffixTrieNode _hostSuffixTrieRoot = new(); 315trieCurrent.Nodes[ch] ??= new HostSuffixTrieNode();
9 references to HostSuffixTrieNode
Microsoft.Extensions.Http.Diagnostics (9)
Http\HostSuffixTrieNode.cs (2)
14public HostSuffixTrieNode[] Nodes { get; } = new HostSuffixTrieNode[ASCIICharCount];
Http\HttpDependencyMetadataResolver.cs (7)
36private readonly HostSuffixTrieNode _hostSuffixTrieRoot = new(); 71var hostMetadata = GetHostMetadata(requestMessage.RequestUri.Host); 306var trieCurrent = _hostSuffixTrieRoot; 324private HostSuffixTrieNode? GetHostMetadata(string host) 326HostSuffixTrieNode? hostMetadataNode = null; 328var trieCurrent = _hostSuffixTrieRoot; 353private RequestMetadata? GetRequestMetadataInternal(string httpMethod, string requestPath, HostSuffixTrieNode? hostMetadata)