File: System\Net\Http\SocketsHttpHandler\IHttpTrace.cs
Web Access
Project: src\src\runtime\src\libraries\System.Net.Http\src\System.Net.Http.csproj (System.Net.Http)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Runtime.CompilerServices;

namespace System.Net.Http
{
    internal interface IHttpTrace
    {
        void Trace(string message, [CallerMemberName] string? memberName = null);
    }
}