예제 #1
0
파일: Fill.cs 프로젝트: techbuzzz/FlixSharp
        public async Task <Titles> GetBoxOffice(String Country = "us", Int32 Limit = 10)
        {
            Login.CheckInformationSet();
            var moviejson = AsyncHelpers.RottenTomatoesLoadJObjectAsync(
                UrlBuilder.BoxOfficeUrl(Country, Limit));

            return(new Titles(await Fill.GetBaseTitleInfo(moviejson)));
        }