File: Constants.cs
Web Access
Project: src\src\Middleware\WebSockets\src\Microsoft.AspNetCore.WebSockets.csproj (Microsoft.AspNetCore.WebSockets)
// 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.WebSockets;
 
internal static class Constants
{
    public static class Headers
    {
        public const string UpgradeWebSocket = "websocket";
        public const string SupportedVersion = "13";
    }
}