Esempio n. 1
0
 public System.Threading.Tasks.Task <WebApplication5.textWebService.ToLowerResponse> ToLowerAsync(string inputString)
 {
     WebApplication5.textWebService.ToLowerRequest inValue = new WebApplication5.textWebService.ToLowerRequest();
     inValue.Body             = new WebApplication5.textWebService.ToLowerRequestBody();
     inValue.Body.inputString = inputString;
     return(((WebApplication5.textWebService.TextWebServiceSoap)(this)).ToLowerAsync(inValue));
 }
Esempio n. 2
0
 public string ToLower(string inputString)
 {
     WebApplication5.textWebService.ToLowerRequest inValue = new WebApplication5.textWebService.ToLowerRequest();
     inValue.Body             = new WebApplication5.textWebService.ToLowerRequestBody();
     inValue.Body.inputString = inputString;
     WebApplication5.textWebService.ToLowerResponse retVal = ((WebApplication5.textWebService.TextWebServiceSoap)(this)).ToLower(inValue);
     return(retVal.Body.ToLowerResult);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <WebApplication5.textWebService.ToLowerResponse> WebApplication5.textWebService.TextWebServiceSoap.ToLowerAsync(WebApplication5.textWebService.ToLowerRequest request)
 {
     return(base.Channel.ToLowerAsync(request));
 }
Esempio n. 4
0
 WebApplication5.textWebService.ToLowerResponse WebApplication5.textWebService.TextWebServiceSoap.ToLower(WebApplication5.textWebService.ToLowerRequest request)
 {
     return(base.Channel.ToLower(request));
 }