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