Наследование: ICallbackHandler
Пример #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;
        }
Пример #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);
 }