示例#1
0
 void OnConnectionError(object sender, WampSharp.Core.Listener.WampConnectionErrorEventArgs e)
 {
     PoloniexBot.Trading.Manager.RefreshTickersManually = true;
 }
示例#2
0
 private static void Monitor_ConnectionError(object sender, WampSharp.Core.Listener.WampConnectionErrorEventArgs e)
 {
     Console.ForegroundColor = ConsoleColor.Red;
     Console.WriteLine($"Connection Error: {e.Exception.Message}");
 }
示例#3
0
 void OnConnectionError(object sender, WampSharp.Core.Listener.WampConnectionErrorEventArgs e)
 {
     Stop();
 }
示例#4
0
 private static void Monitor_ConnectionError(object sender, WampSharp.Core.Listener.WampConnectionErrorEventArgs e)
 {
 }
示例#5
0
 private void OnConnectionError(object sender, WampSharp.Core.Listener.WampConnectionErrorEventArgs e)
 {
     IsConnected = false;
     OnSessionError?.Invoke(this, e.Exception.Message);
 }