Exemplo n.º 1
0
 public void ConnectSocket(Action onSocketConnected)
 {
     underlyingSocket = new SlackSocket(loginDetails, this, onSocketConnected, this.proxySettings);
 }
Exemplo n.º 2
0
 public void ConnectSocket(Action onSocketConnected)
 {
     underlyingSocket = new SlackSocket(loginDetails, this, onSocketConnected, this.ProxySettings);
     underlyingSocket.ConnectionClosed += UnderlyingSocket_ConnectionClosed;
 }
Exemplo n.º 3
0
 protected override void Connected(LoginResponse loginDetails)
 {
     base.Connected(loginDetails);
     underlyingSocket = new SlackSocket(loginDetails, this);
 }
Exemplo n.º 4
0
 public void ConnectSocket(Action onSocketConnected)
 {
     underlyingSocket = new SlackSocket(loginDetails, this, onSocketConnected);
     underlyingSocket.ConnectionClosed += UnderlyingSocketConnectionClosed;
     underlyingSocket.ErrorLoopSocket  += UnderlyingSocketErrorLoopSocket;
 }