Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Thread.Sleep(200);

            const string serverUrl = "http://localhost:5000/echo/";
            var connection = new Connection(serverUrl);

            connection.StateChanged += OnConnectionStateChanged;

            try
            {
                connection.Start().Wait();
            }
            catch(AggregateException ex)
            {
                throw ex.Flatten();
            }

            Console.ReadKey();
        }