示例#1
0
 public TwitchClient(string userName, string prefix, string oAuth, string channel)
 {
     Irc            = new Irc("irc.twitch.tv", 6667, userName, oAuth, channel);
     Options.prefix = prefix;
     _keepAlive     = new KeepAlive(Irc);
     _keepAlive.Start();
 }
示例#2
0
 public KeepAlive(Irc client)
 {
     _client = client;
     _thread = new Thread(Run);
 }