Esempio n. 1
0
        public Task <PageResponse <LastTag> > GetUserTagsForArtistAsync(string artist, string username, bool autocorrect = false, int page = 1, int itemsPerPage = LastFm.DefaultPageLength)
        {
            var command = new ArtistGetTagsByUserCommand(Auth, artist, username)
            {
                Autocorrect = autocorrect,
                Page        = page,
                Count       = itemsPerPage
            };

            return(command.ExecuteAsync());
        }
Esempio n. 2
0
 public void Initialise()
 {
     _command = new ArtistGetTagsByUserCommand(MAuth.Object, "", "");
 }