Example #1
0
        /// <summary>
        /// Calls the fail function in a given server, this makes the server stop
        /// </summary>
        /// <param name="URL"></param>
        public static bool Fail(string URL)
        {
            ServerInterface server = (ServerInterface)Activator.GetObject(typeof(ServerInterface), URL);

            return(server.Fail());
        }