public CommentReceiver(ServerInformation si)
 {
     this.si = si;
     th = new Thread(this.Receiving);
     tcp = new System.Net.Sockets.TcpClient(si.Address, si.Port);
 }
 public AlertReveicer(ServerInformation si)
     : base(si)
 {
 }
 public CommentSender(ServerInformation si, CookieCollection cookies)
 {
     this.th = new Thread(this.Sending);
     this.si = si;
     this.cookies = cookies;
 }