// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace SpaceWizards.HttpListener { internal sealed 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"; } }