private static void TestProxyCreation(string[] args) { var proxyGenerator = new ProxyGenerator(); var uri = new Uri(args[0]); var proxy = proxyGenerator.For(uri); proxy.Operations.ToList().ForEach(m => Console.WriteLine("\tOperation: " + m.Name)); }