Exemplo n.º 1
0
 public void StopListener(TwitchClient c)
 {
     c.Listener.Abort();
     this.Stream.Close();
     this.Client.Close();
 }
Exemplo n.º 2
0
 public void StartListener(TwitchClient c)
 {
     c.Listener = new Thread(() => ListenerThread(c));
     c.Listener.Start();
 }