File: System\Net\Managed\HttpHeaderStrings.cs | Web Access |
Project: src\src\libraries\System.Net.HttpListener\src\System.Net.HttpListener.csproj (System.Net.HttpListener) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Net { internal static class HttpHeaderStrings { internal const string Charset = "charset="; internal const string NetCoreServerName = "Microsoft-NetCore/2.0"; internal const string Close = "close"; internal const string Chunked = "chunked"; internal const string KeepAlive = "keep-alive"; } } |