示例#1
0
        public async Task Load()
        {
            await Conn.DownloadWeatherAsync();

            NotifyPropertyChanged("Description");
            NotifyPropertyChanged("Remarks");
        }
示例#2
0
        public async Task LoadWeather()
        {
            await _conn.DownloadWeatherAsync();

            _weather = _conn.Weather.Description;
        }