예제 #1
0
파일: Startup.cs 프로젝트: razgraf/fii-tsp
        public async void Test()
        {
            ServiceFresh.InterfaceWCFClient client = new ServiceFresh.InterfaceWCFClient();
            List <ServiceFresh.File>        files  = await client.GetFilesAsync();

            foreach (ServiceFresh.File f in files)
            {
                Console.WriteLine(f.Name);
            }
        }