コード例 #1
0
 public System.Threading.Tasks.Task <TextWebServiceClient.textWebService.ToUpperResponse> ToUpperAsync(string inputString)
 {
     TextWebServiceClient.textWebService.ToUpperRequest inValue = new TextWebServiceClient.textWebService.ToUpperRequest();
     inValue.Body             = new TextWebServiceClient.textWebService.ToUpperRequestBody();
     inValue.Body.inputString = inputString;
     return(((TextWebServiceClient.textWebService.WebTextWebServiceSoap)(this)).ToUpperAsync(inValue));
 }
コード例 #2
0
 public string ToUpper(string inputString)
 {
     TextWebServiceClient.textWebService.ToUpperRequest inValue = new TextWebServiceClient.textWebService.ToUpperRequest();
     inValue.Body             = new TextWebServiceClient.textWebService.ToUpperRequestBody();
     inValue.Body.inputString = inputString;
     TextWebServiceClient.textWebService.ToUpperResponse retVal = ((TextWebServiceClient.textWebService.WebTextWebServiceSoap)(this)).ToUpper(inValue);
     return(retVal.Body.ToUpperResult);
 }
コード例 #3
0
 System.Threading.Tasks.Task <TextWebServiceClient.textWebService.ToUpperResponse> TextWebServiceClient.textWebService.WebTextWebServiceSoap.ToUpperAsync(TextWebServiceClient.textWebService.ToUpperRequest request)
 {
     return(base.Channel.ToUpperAsync(request));
 }
コード例 #4
0
 TextWebServiceClient.textWebService.ToUpperResponse TextWebServiceClient.textWebService.WebTextWebServiceSoap.ToUpper(TextWebServiceClient.textWebService.ToUpperRequest request)
 {
     return(base.Channel.ToUpper(request));
 }