Пример #1
0
 public System.Threading.Tasks.Task <FE.WSGoogle.TraducirTextoResponse> TraducirTextoAsync(string input, string languagePair)
 {
     FE.WSGoogle.TraducirTextoRequest inValue = new FE.WSGoogle.TraducirTextoRequest();
     inValue.Body              = new FE.WSGoogle.TraducirTextoRequestBody();
     inValue.Body.input        = input;
     inValue.Body.languagePair = languagePair;
     return(((FE.WSGoogle.WSGoogleSoap)(this)).TraducirTextoAsync(inValue));
 }
Пример #2
0
 public string TraducirTexto(string input, string languagePair)
 {
     FE.WSGoogle.TraducirTextoRequest inValue = new FE.WSGoogle.TraducirTextoRequest();
     inValue.Body              = new FE.WSGoogle.TraducirTextoRequestBody();
     inValue.Body.input        = input;
     inValue.Body.languagePair = languagePair;
     FE.WSGoogle.TraducirTextoResponse retVal = ((FE.WSGoogle.WSGoogleSoap)(this)).TraducirTexto(inValue);
     return(retVal.Body.TraducirTextoResult);
 }
Пример #3
0
 System.Threading.Tasks.Task <FE.WSGoogle.TraducirTextoResponse> FE.WSGoogle.WSGoogleSoap.TraducirTextoAsync(FE.WSGoogle.TraducirTextoRequest request)
 {
     return(base.Channel.TraducirTextoAsync(request));
 }
Пример #4
0
 FE.WSGoogle.TraducirTextoResponse FE.WSGoogle.WSGoogleSoap.TraducirTexto(FE.WSGoogle.TraducirTextoRequest request)
 {
     return(base.Channel.TraducirTexto(request));
 }