10 references to SharedStringBuilderPool
Microsoft.AspNetCore.Diagnostics.Middleware (1)
Latency\Internal\HttpLatencyLogEnricher.cs (1)
24private static readonly ObjectPool<StringBuilder> _builderPool = PoolFactory.SharedStringBuilderPool;
Microsoft.Extensions.Http.Diagnostics (3)
Latency\Internal\HttpClientLatencyLogEnricher.cs (1)
24private static readonly ObjectPool<StringBuilder> _builderPool = PoolFactory.SharedStringBuilderPool;
Logging\Internal\HttpRequestReader.cs (2)
159var stringBuilder = PoolFactory.SharedStringBuilderPool.Get(); 215PoolFactory.SharedStringBuilderPool.Return(stringBuilder);
Microsoft.Extensions.Telemetry (6)
Http\HttpRouteFormatter.cs (2)
53var pathStringBuilder = PoolFactory.SharedStringBuilderPool.Get(); 111PoolFactory.SharedStringBuilderPool.Return(pathStringBuilder);
Latency\Internal\LatencyConsoleExporter.cs (2)
44var sb = PoolFactory.SharedStringBuilderPool.Get(); 112PoolFactory.SharedStringBuilderPool.Return(sb);
Logging\ExtendedLogger.cs (2)
159var sb = PoolFactory.SharedStringBuilderPool.Get(); 170PoolFactory.SharedStringBuilderPool.Return(sb);