Пример #1
0
 public TipeeeStreamWebSocketService(TipeeeStreamService service, string username, string apiKey)
     : base("https://sso.tipeeestream.com:4242")
 {
     this.service  = service;
     this.username = username;
     this.apiKey   = apiKey;
 }
Пример #2
0
 public TipeeeStreamWebSocketService(TipeeeStreamService service, string socketAddress, string username, string apiKey)
     : base(socketAddress, "access_token=" + apiKey)
 {
     this.service       = service;
     this.socketAddress = socketAddress;
     this.username      = username;
     this.apiKey        = apiKey;
 }