Esempio n. 1
0
 public System.Threading.Tasks.Task <WeatherQueryTest.WeatherService.GetWeatherByGeoResponse> GetWeatherByGeoAsync(double longitude, double latitude)
 {
     WeatherQueryTest.WeatherService.GetWeatherByGeoRequest inValue = new WeatherQueryTest.WeatherService.GetWeatherByGeoRequest();
     inValue.Body           = new WeatherQueryTest.WeatherService.GetWeatherByGeoRequestBody();
     inValue.Body.longitude = longitude;
     inValue.Body.latitude  = latitude;
     return(((WeatherQueryTest.WeatherService.WeatherServiceSoap)(this)).GetWeatherByGeoAsync(inValue));
 }
Esempio n. 2
0
 public WeatherQueryTest.WeatherService.WeatherInfo GetWeatherByGeo(double longitude, double latitude)
 {
     WeatherQueryTest.WeatherService.GetWeatherByGeoRequest inValue = new WeatherQueryTest.WeatherService.GetWeatherByGeoRequest();
     inValue.Body           = new WeatherQueryTest.WeatherService.GetWeatherByGeoRequestBody();
     inValue.Body.longitude = longitude;
     inValue.Body.latitude  = latitude;
     WeatherQueryTest.WeatherService.GetWeatherByGeoResponse retVal = ((WeatherQueryTest.WeatherService.WeatherServiceSoap)(this)).GetWeatherByGeo(inValue);
     return(retVal.Body.GetWeatherByGeoResult);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <WeatherQueryTest.WeatherService.GetWeatherByGeoResponse> WeatherQueryTest.WeatherService.WeatherServiceSoap.GetWeatherByGeoAsync(WeatherQueryTest.WeatherService.GetWeatherByGeoRequest request)
 {
     return(base.Channel.GetWeatherByGeoAsync(request));
 }
Esempio n. 4
0
 WeatherQueryTest.WeatherService.GetWeatherByGeoResponse WeatherQueryTest.WeatherService.WeatherServiceSoap.GetWeatherByGeo(WeatherQueryTest.WeatherService.GetWeatherByGeoRequest request)
 {
     return(base.Channel.GetWeatherByGeo(request));
 }