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(); }
public KeepAlive(Irc client) { _client = client; _thread = new Thread(Run); }