NextPage #603
NextPage
#603
-
Hi! Could you give an example of using var res = await client.Search.Item(new SearchRequest(SearchRequest.Types.Track, track));
foreach (var s in res.Tracks.Items)... |
Beta Was this translation helpful? Give feedback.
Answered by
JohnnyCrazy
Apr 28, 2021
Replies: 1 comment 3 replies
-
Hi Does the second example here help? var search = await spotify.Search.Item(new SearchRequest(
SearchRequest.Types.All, "Jake"
));
await foreach(var item in spotify.Paginate(search.Albums, (s) => s.Albums))
{
Console.WriteLine(item.Name);
// you can use "break" here!
} |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
JohnnyCrazy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi
Does the second example here help?