コード例 #1
0
 public System.Threading.Tasks.Task <Sear.ServiceApp.echoResponse> echoAsync(string username, string password)
 {
     Sear.ServiceApp.echoRequest inValue = new Sear.ServiceApp.echoRequest();
     inValue.Body          = new Sear.ServiceApp.echoRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     return(((Sear.ServiceApp.MyService)(this)).echoAsync(inValue));
 }
コード例 #2
0
 public int echo(string username, string password)
 {
     Sear.ServiceApp.echoRequest inValue = new Sear.ServiceApp.echoRequest();
     inValue.Body          = new Sear.ServiceApp.echoRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     Sear.ServiceApp.echoResponse retVal = ((Sear.ServiceApp.MyService)(this)).echo(inValue);
     return(retVal.Body.echoReturn);
 }
コード例 #3
0
 System.Threading.Tasks.Task <Sear.ServiceApp.echoResponse> Sear.ServiceApp.MyService.echoAsync(Sear.ServiceApp.echoRequest request)
 {
     return(base.Channel.echoAsync(request));
 }
コード例 #4
0
 Sear.ServiceApp.echoResponse Sear.ServiceApp.MyService.echo(Sear.ServiceApp.echoRequest request)
 {
     return(base.Channel.echo(request));
 }