Пример #1
0
        static void Main()
        {
            var commandDispatcher = new DriverHost("http://localhost:12345");

            commandDispatcher.Start();
            Console.ReadLine();
        }
Пример #2
0
        static void Main(string[] args)
        {
            var uri = new Uri("http://localhost:4444");

            if (args.Length == 1)
            {
                if (!Uri.TryCreate(args[0], UriKind.Absolute, out uri))
                {
                    Console.Out.WriteLine($"Provided value '{args[0]}' is not a valid URI.");
                    return;
                }
            }

            var commandDispatcher = new DriverHost(uri);

            commandDispatcher.Start();
            Console.ReadLine();
        }