Esempio n. 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));
 }
Esempio n. 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);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <TextWebService01.textWebService.ToUpperResponse> TextWebService01.textWebService.TextWebServiceSoap.ToUpperAsync(TextWebService01.textWebService.ToUpperRequest request)
 {
     return(base.Channel.ToUpperAsync(request));
 }
Esempio n. 4
0
 TextWebService01.textWebService.ToUpperResponse TextWebService01.textWebService.TextWebServiceSoap.ToUpper(TextWebService01.textWebService.ToUpperRequest request)
 {
     return(base.Channel.ToUpper(request));
 }