Ejemplo n.º 1
0
 public void Unban(string channel, string hostmask)
 {
     WriteLine(Rfc2812.Mode(channel, "-b " + hostmask));
 }
Ejemplo n.º 2
0
 public void Ban(string channel)
 {
     WriteLine(Rfc2812.Mode(channel, "+b"));
 }
Ejemplo n.º 3
0
 public void Devoice(string channel, string nickname)
 {
     WriteLine(Rfc2812.Mode(channel, "-v " + nickname));
 }
Ejemplo n.º 4
0
 public void RfcMode(string target, string newmode)
 {
     WriteLine(Rfc2812.Mode(target, newmode));
 }
Ejemplo n.º 5
0
 public void RfcMode(string target)
 {
     WriteLine(Rfc2812.Mode(target));
 }
Ejemplo n.º 6
0
 public void Op(string channel, string nickname)
 {
     WriteLine(Rfc2812.Mode(channel, "+o " + nickname));
 }