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