Exemplo n.º 1
0
 public static void send(TwitchIRC irc, string channel)
 {
     new IRCPartCommand(channel).sendCommand(irc);
 }
Exemplo n.º 2
0
 public static void send(TwitchIRC irc, string request)
 {
     new IRCCapCommand(request).sendCommand(irc);
 }
Exemplo n.º 3
0
 public static void send(TwitchIRC irc, string name)
 {
     new IRCNickCommand(name).sendCommand(irc);
 }
Exemplo n.º 4
0
 public static void send(TwitchIRC irc, string uname, string real)
 {
     new IRCUserCommand(uname, "localhost", TwitchIRC.SERVER, real).sendCommand(irc);
 }
Exemplo n.º 5
0
 public static void send(TwitchIRC irc)
 {
     send(irc, new string[0]);
 }
Exemplo n.º 6
0
 public void sendCommand(TwitchIRC irc)
 {
     irc.SendRawCommand(Command + (string.IsNullOrWhiteSpace(Body) ? "" : " " + Body));
 }
Exemplo n.º 7
0
 public static void send(TwitchIRC irc, string[] ch)
 {
     new IRCListCommand(ch).sendCommand(irc);
 }
Exemplo n.º 8
0
 public static void send(TwitchIRC irc, string msg)
 {
     new IRCQuitCommand(msg).sendCommand(irc);
 }
Exemplo n.º 9
0
 public static void send(TwitchIRC irc)
 {
     new IRCQuitCommand().sendCommand(irc);
 }
Exemplo n.º 10
0
 public static void send(TwitchIRC irc, OAuthBaseRequest req)
 {
     new IRCPassCommand(req).sendCommand(irc);
 }
Exemplo n.º 11
0
 public static void send(TwitchIRC irc, string oAuth)
 {
     new IRCPassCommand(oAuth).sendCommand(irc);
 }