public NickServIdentifyRequest(string nick, IrcBot bot)
        {
            this.bot = bot;
            this.nick = nick;

            bot.RfcWhois(nick);
            bot.OnRawMessage += BotOnRawMessage;
        }
        public NickServIdentifyRequest(string nick, IrcBot bot)
        {
            this.bot  = bot;
            this.nick = nick;

            bot.RfcWhois(nick);
            bot.OnRawMessage += BotOnRawMessage;
        }