Beispiel #1
0
 public string hello(string name)
 {
     Cliente.ws.helloRequest inValue = new Cliente.ws.helloRequest();
     inValue.name = name;
     Cliente.ws.helloResponse retVal = ((Cliente.ws.WSAndroid)(this)).hello(inValue);
     return(retVal.@return);
 }
Beispiel #2
0
 public System.Threading.Tasks.Task <Cliente.ws.helloResponse> helloAsync(string name)
 {
     Cliente.ws.helloRequest inValue = new Cliente.ws.helloRequest();
     inValue.name = name;
     return(((Cliente.ws.WSAndroid)(this)).helloAsync(inValue));
 }
Beispiel #3
0
 System.Threading.Tasks.Task <Cliente.ws.helloResponse> Cliente.ws.WSAndroid.helloAsync(Cliente.ws.helloRequest request)
 {
     return(base.Channel.helloAsync(request));
 }
Beispiel #4
0
 Cliente.ws.helloResponse Cliente.ws.WSAndroid.hello(Cliente.ws.helloRequest request)
 {
     return(base.Channel.hello(request));
 }