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