Weather.NET

Weather.NET's official website, where you can find the documentation for this library.


Project maintained by EloyEspinosa Hosted on GitHub Pages — Theme by mattgraham

FutureWeather

This class provides extension methods for WeatherClient that get a list of weather forecasts of a location for every 3 hours, until 5 days into the future.

Methods

WeatherClient.GetForecast(cityName, timestampCount, measurement, language): Gets a List of WeatherModels.

WeatherClient.GetForecast(cityId, timestampCount, measurement, language): Gets a List of WeatherModels.

WeatherClient.GetForecast(latitude, longitude, timestampCount, measurement, language): Gets a List of WeatherModels.

WeatherClient.GetForecast(zipCode, countryCode, timestampCount, measurement, language): Gets a List of WeatherModels.

WeatherClient.GetForecastAsync(cityName, timestampCount, measurement, language): Gets a List of WeatherModels asynchronously.

WeatherClient.GetForecastAsync(cityId, timestampCount, measurement, language): Gets a List of WeatherModels asynchronously.

WeatherClient.GetForecastAsync(latitude, longitude, timestampCount, measurement, language): Gets a List of WeatherModels asynchronously.

WeatherClient.GetForecastAsync(zipCode, countryCode, timestampCount, measurement, language): Gets a List of WeatherModels asynchronously.

Back