Example #1
0
        public IcebotChannel(IcebotServer server, IcebotChannelConfiguration conf)
        {
            PublicCommands = new IcebotCommandsContainer();
            Configuration = conf;

            Server = server;
        }
Example #2
0
 internal IcebotServer(Icebot host, IcebotServerConfiguration c)
 {
     Host = host;
     Configuration = c;
     PrivateCommands = new IcebotCommandsContainer();
     RfcDefinitions.Add(new Irc.Rfc2812.Commands());
     Registered = false;
 }