Inheritance: ICallbackHandler
Exemplo n.º 1
0
        public Command(ClientConnection connection, Steam3 steam, String command, String[] parameters)
        {
            this.connection = connection;
            this.steam = steam;

            this.command = command.ToLower();
            this.parameters = parameters;
        }
Exemplo n.º 2
0
 /// <summary>
 /// Removes a connection from the clients list
 /// </summary>
 /// <param name="connection">The connection to remove</param>
 public void RemoveConnection(ClientConnection connection)
 {
     clients.Remove(connection);
 }