Aurora.Addon.IRCChat.IRCRegionService.CreateIRCConnection C# (CSharp) Метод

CreateIRCConnection() приватный Метод

private CreateIRCConnection ( IScenePresence presence ) : void
presence IScenePresence
Результат void
        private void CreateIRCConnection(IScenePresence presence)
        {
            // Create a new client to the given address with the given nick
            Client client = new Client(m_network, presence.Name.Replace(' ', '_'));
            Ident.Service.User = client.User;
            HookUpClientEvents(client, presence);
            client.EnableAutoIdent = false;
            client.Connection.Connect();
            clients[presence.UUID] = client;
        }