5 references to ConcatAsHexSuffix
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\Http1Connection.cs (1)
702=> StringUtilities.ConcatAsHexSuffix(ConnectionId, ':', _requestCount);
Internal\Http2\Http2Stream.cs (1)
192=> StringUtilities.ConcatAsHexSuffix(ConnectionId, ':', (uint)StreamId);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
StringUtilitiesTests.cs (2)
22Assert.Equal($"{str}:{value:X8}", StringUtilities.ConcatAsHexSuffix(str, ':', value)); 29Assert.Equal(":23BC0234", StringUtilities.ConcatAsHexSuffix(null, ':', value));
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
StringUtilitiesBenchmark.cs (1)
31var id = StringUtilities.ConcatAsHexSuffix(connectionId, ':', i);