Example #1
0
 public bool Echo(string input, out string result)
 {
     LendingLibrary.Client.EchoService.EchoRequest inValue = new LendingLibrary.Client.EchoService.EchoRequest();
     inValue.input = input;
     LendingLibrary.Client.EchoService.EchoResponse retVal = ((LendingLibrary.Client.EchoService.IEchoService)(this)).Echo(inValue);
     result = retVal.result;
     return(retVal.EchoResult);
 }
Example #2
0
 public System.Threading.Tasks.Task <LendingLibrary.Client.EchoService.EchoResponse> EchoAsync(LendingLibrary.Client.EchoService.EchoRequest request)
 {
     return(base.Channel.EchoAsync(request));
 }
Example #3
0
 LendingLibrary.Client.EchoService.EchoResponse LendingLibrary.Client.EchoService.IEchoService.Echo(LendingLibrary.Client.EchoService.EchoRequest request)
 {
     return(base.Channel.Echo(request));
 }