Exemplo n.º 1
0
 public string Hello(string Salutations, out string ResponseToGreeting)
 {
     WcfClient.ServiceReference1.HelloGreetingMessage inValue = new WcfClient.ServiceReference1.HelloGreetingMessage();
     inValue.Salutations = Salutations;
     WcfClient.ServiceReference1.HelloResponseMessage retVal = ((WcfClient.ServiceReference1.IMessageHello)(this)).Hello(inValue);
     ResponseToGreeting = retVal.ResponseToGreeting;
     return(retVal.OutOfBandData);
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task <WcfClient.ServiceReference1.HelloResponseMessage> HelloAsync(string Salutations)
 {
     WcfClient.ServiceReference1.HelloGreetingMessage inValue = new WcfClient.ServiceReference1.HelloGreetingMessage();
     inValue.Salutations = Salutations;
     return(((WcfClient.ServiceReference1.IMessageHello)(this)).HelloAsync(inValue));
 }
Exemplo n.º 3
0
 WcfClient.ServiceReference1.HelloResponseMessage WcfClient.ServiceReference1.IMessageHello.Hello(WcfClient.ServiceReference1.HelloGreetingMessage request)
 {
     return(base.Channel.Hello(request));
 }
Exemplo n.º 4
0
 System.Threading.Tasks.Task <WcfClient.ServiceReference1.HelloResponseMessage> WcfClient.ServiceReference1.IMessageHello.HelloAsync(WcfClient.ServiceReference1.HelloGreetingMessage request)
 {
     return(base.Channel.HelloAsync(request));
 }