// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNetCore.WebSockets.Internal { public static class Constants { public static class Headers { public const string Upgrade = "Upgrade"; public const string UpgradeWebSocket = "websocket"; public const string Connection = "Connection"; public const string ConnectionUpgrade = "Upgrade"; public const string SecWebSocketKey = "Sec-WebSocket-Key"; public const string SecWebSocketVersion = "Sec-WebSocket-Version"; public const string SecWebSocketProtocol = "Sec-WebSocket-Protocol"; public const string SecWebSocketAccept = "Sec-WebSocket-Accept"; public const string SupportedVersion = "13"; } } }