Example #1
0
 public System.Threading.Tasks.Task <FE.WSGoogle.ConvertirValorResponse> ConvertirValorAsync(string input, string languagePair)
 {
     FE.WSGoogle.ConvertirValorRequest inValue = new FE.WSGoogle.ConvertirValorRequest();
     inValue.Body              = new FE.WSGoogle.ConvertirValorRequestBody();
     inValue.Body.input        = input;
     inValue.Body.languagePair = languagePair;
     return(((FE.WSGoogle.WSGoogleSoap)(this)).ConvertirValorAsync(inValue));
 }
Example #2
0
 public string ConvertirValor(string input, string languagePair)
 {
     FE.WSGoogle.ConvertirValorRequest inValue = new FE.WSGoogle.ConvertirValorRequest();
     inValue.Body              = new FE.WSGoogle.ConvertirValorRequestBody();
     inValue.Body.input        = input;
     inValue.Body.languagePair = languagePair;
     FE.WSGoogle.ConvertirValorResponse retVal = ((FE.WSGoogle.WSGoogleSoap)(this)).ConvertirValor(inValue);
     return(retVal.Body.ConvertirValorResult);
 }
Example #3
0
 System.Threading.Tasks.Task <FE.WSGoogle.ConvertirValorResponse> FE.WSGoogle.WSGoogleSoap.ConvertirValorAsync(FE.WSGoogle.ConvertirValorRequest request)
 {
     return(base.Channel.ConvertirValorAsync(request));
 }
Example #4
0
 FE.WSGoogle.ConvertirValorResponse FE.WSGoogle.WSGoogleSoap.ConvertirValor(FE.WSGoogle.ConvertirValorRequest request)
 {
     return(base.Channel.ConvertirValor(request));
 }