File: Buffering\PerRequestLogBuffer.cs
Web Access
Project: src\src\Libraries\Microsoft.Extensions.Telemetry.Abstractions\Microsoft.Extensions.Telemetry.Abstractions.csproj (Microsoft.Extensions.Telemetry.Abstractions)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#if NET9_0_OR_GREATER
 
namespace Microsoft.Extensions.Diagnostics.Buffering;
 
/// <summary>
/// Buffers logs into per-request circular buffers and drops them after some time if not flushed or when the request ends.
/// </summary>
public abstract class PerRequestLogBuffer : LogBuffer
{
}
 
#endif