namespace xPushService.Configurations { public partial class XPushServiceConfiguration { /// /// Base route of WebSocket Server ... /// /// string public string BaseRoute { get; set; } /// /// determines log level of signalR ... /// /// public object ConnectionLogLevel { get; set; } /// /// when client disconnected it's automatically try to reconnect, this /// determines max number of try to connect ... /// /// public int PushConnectionMaxRetry { get; set; } /// /// add support for message protocol ... /// /// public bool AddSupportMessageProtocol { get; set; } /// /// the delay between two connection try .. /// /// public int PushConnectionReconnectDelay { get; set; } } }