aspnetcore/test/ANCMStressTestApp/WebSockets/Constants.cs

18 lines
626 B
C#

// 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 ANCMStressTestApp
{
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 SecWebSocketKey = "Sec-WebSocket-Key";
public const string SecWebSocketAccept = "Sec-WebSocket-Accept";
}
}
}