Aurora.Addon.IRCChat.IRCGroupService.CreateIRCConnection C# (CSharp) Method

CreateIRCConnection() private method

private CreateIRCConnection ( string network, string nick, string channel, UUID groupID ) : void
network string
nick string
channel string
groupID UUID
return void
        private void CreateIRCConnection(string network, string nick, string channel, UUID groupID)
        {
            // Create a new client to the given address with the given nick
            Client client = new Client(network, nick);
            Ident.Service.User = client.User;
            HookUpClientEvents(channel, groupID, client);
            client.EnableAutoIdent = false;
            client.Connection.Connect();
            clients[groupID] = client;
        }