File: Logging\Internal\Constants.cs | Web Access |
Project: src\src\Libraries\Microsoft.Extensions.Http.Diagnostics\Microsoft.Extensions.Http.Diagnostics.csproj (Microsoft.Extensions.Http.Diagnostics) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Extensions.Http.Logging.Internal; internal static class Constants { public const string NoContent = "[no-content-type]"; public const string UnreadableContent = "[unreadable-content-type]"; public const string ReadCancelled = "[read-cancelled]"; } |