BaconographyPortable.Model.KitaroDB.ListingHelpers.SubredditLinks.GetAdditionalListing C# (CSharp) 메소드

GetAdditionalListing() 공개 메소드

public GetAdditionalListing ( string after, object>.Dictionary state ) : Task
after string
state object>.Dictionary
리턴 Task
        public Task<Listing> GetAdditionalListing(string after, Dictionary<object, object> state)
        {
            if (_subreddit != null && _subreddit != "/")
                return _offlineService.LinksForSubreddit(_subreddit, after);
            else
            {
                return _offlineService.AllLinks(after);
            }
        }