Exemplo n.º 1
0
 public void StartConnection()
 {
     if (this.Connection != null)
     {
         this.PongOK = true;
         TcpConnection.RouteReceivedDataCallback dataRouter = new TcpConnection.RouteReceivedDataCallback(this.HandleConnectionData);
         this.Connection.Start(dataRouter);
     }
 }
Exemplo n.º 2
0
 public void StartConnection()
 {
     if (this.Connection != null)
     {
         this.PongOK = true;
         TcpConnection.RouteReceivedDataCallback dataRouter = new TcpConnection.RouteReceivedDataCallback(this.HandleConnectionData);
         this.Connection.Start(dataRouter);
     }
 }
Exemplo n.º 3
0
        public void StartConnection()
        {
            if (Connection == null)
            {
                return;
            }

            PongOK = true;
            TcpConnection.RouteReceivedDataCallback DataRouter = new TcpConnection.RouteReceivedDataCallback(HandleConnectionData);
            Connection.Start(DataRouter);
        }