Exemplo n.º 1
0
 public ServerReceiveEventArgs(IRCCommand message, string raw)
 {
     this.Parsed = message;
     this.Raw = raw;
 }
Exemplo n.º 2
0
 private void CheckForRegisterSuccess(IRCCommand message)
 {
     if(message.Command == "001")
     {
         this.Registered = true;
     }
 }