private void OnIRCReplyMOTD(string message)
    {
        IRCMotdEvent motd = new IRCMotdEvent();

        motd.Message = message;

        // Shouldn't this be up to the client code?
        //if ( event == IRCCommands.RPL_ENDOFMOTD )
        //	processInput( '/join #irc' );

        DispatchEvent(motd);
    }
예제 #2
0
    private void OnIRCReplyMOTD(string message)
    {
        IRCMotdEvent motd = new IRCMotdEvent();
        motd.Message = message;

        // Shouldn't this be up to the client code?
        //if ( event == IRCCommands.RPL_ENDOFMOTD )
        //	processInput( '/join #irc' );

        DispatchEvent(motd);
    }