File: src\Shared\HttpSys\Constants.cs
Web Access
Project: src\src\Servers\HttpSys\src\Microsoft.AspNetCore.Server.HttpSys.csproj (Microsoft.AspNetCore.Server.HttpSys)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.HttpSys.Internal;
 
internal static class Constants
{
    internal const string HttpScheme = "http";
    internal const string HttpsScheme = "https";
    internal const string Chunked = "chunked";
    internal const string Close = "close";
    internal const string Zero = "0";
    internal const string SchemeDelimiter = "://";
    internal const string DefaultServerAddress = "http://localhost:5000";
 
    internal static readonly Version V1_0 = new Version(1, 0);
    internal static readonly Version V1_1 = new Version(1, 1);
    internal static readonly Version V2 = new Version(2, 0);
}