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