Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Service1Client client = new Service1Client();
            string         result = client.GetData(1);

            Console.WriteLine(result);
            WCFService.CompositeType ctype = new WCFService.CompositeType();
            ctype.BoolValue = true;
            WCFService.CompositeType type = client.GetDataUsingDataContract(ctype); // Example of using DataContract to retrieve a class over the wire.
            Console.WriteLine(type.StringValue);
            Console.WriteLine(ctype.StringValue);
            Console.ReadKey();
        }
 public System.Threading.Tasks.Task <WCFService.CompositeType> GetDataUsingDataContractAsync(WCFService.CompositeType composite)
 {
     return(base.Channel.GetDataUsingDataContractAsync(composite));
 }
 public WCFService.CompositeType GetDataUsingDataContract(WCFService.CompositeType composite)
 {
     return(base.Channel.GetDataUsingDataContract(composite));
 }