Beispiel #1
0
        public static void Main(string[] args)
        {
            string port = "8088";

            if (args.Length >= 1)
            {
                port = args[0];
            }

            HttpListenerClass HTTP = new HttpListenerClass(port);

            HTTP.Start();
            Console.WriteLine("Start has been started");
        }
Beispiel #2
0
        public static void Main (string[] args)
        {
            string port = "8088";

            if (args.Length >= 1) {
              port = args[0];
            }

            HttpListenerClass HTTP = new HttpListenerClass(port);
            HTTP.Start();
            Console.WriteLine("Start has been started");
        }