Beispiel #1
0
        /// <summary>
        /// Returns all city item prices bye uniqueName, locations and qualities.
        /// </summary>
        /// <exception cref="TooManyRequestsException"></exception>
        public static async Task <List <MarketResponse> > GetCityItemPricesFromJsonAsync(string uniqueName)
        {
            var locations = Locations.GetLocationsListByArea(true, true, true, true);

            return(await GetCityItemPricesFromJsonAsync(uniqueName, locations, new List <int>() { 1, 2, 3, 4, 5 }));
        }