コード例 #1
0
 public System.Threading.Tasks.Task <Sear.ServiceApp.sortResponse> sortAsync(Sear.ServiceApp.Input input)
 {
     Sear.ServiceApp.sortRequest inValue = new Sear.ServiceApp.sortRequest();
     inValue.Body       = new Sear.ServiceApp.sortRequestBody();
     inValue.Body.input = input;
     return(((Sear.ServiceApp.MyService)(this)).sortAsync(inValue));
 }
コード例 #2
0
 public Sear.ServiceApp.Output sort(Sear.ServiceApp.Input input)
 {
     Sear.ServiceApp.sortRequest inValue = new Sear.ServiceApp.sortRequest();
     inValue.Body       = new Sear.ServiceApp.sortRequestBody();
     inValue.Body.input = input;
     Sear.ServiceApp.sortResponse retVal = ((Sear.ServiceApp.MyService)(this)).sort(inValue);
     return(retVal.Body.sortReturn);
 }
コード例 #3
0
 System.Threading.Tasks.Task <Sear.ServiceApp.sortResponse> Sear.ServiceApp.MyService.sortAsync(Sear.ServiceApp.sortRequest request)
 {
     return(base.Channel.sortAsync(request));
 }
コード例 #4
0
 Sear.ServiceApp.sortResponse Sear.ServiceApp.MyService.sort(Sear.ServiceApp.sortRequest request)
 {
     return(base.Channel.sort(request));
 }