RemoveServer() public method

public RemoveServer ( Server s ) : String
s Server
return String
        public String StopServer(ServerType type, String args)
        {
            if (!Authenticated)
            {
                return("You must be Authenticated to perform this task");
            }
            Server s = monitor.FindServer(type, args);

            if (s != null)
            {
                return(monitor.RemoveServer(s));
            }
            else
            {
                return("Unable to find a suitable server to stop. Aborting.");
            }
        }