// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
namespace Microsoft.AspNet.SignalR.Hosting
{
public static class HostConstants
{
///
/// The host should set this if they need to enable debug mode
///
public static readonly string DebugMode = "debugMode";
///
/// The host should set this is web sockets can be supported
///
public static readonly string SupportsWebSockets = "supportsWebSockets";
///
/// The host should set this if the web socket url is different
///
public static readonly string WebSocketServerUrl = "webSocketServerUrl";
public static readonly string ShutdownToken = "shutdownToken";
public static readonly string InstanceName = "instanceName";
}
}