We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Once you enumerate over a ResourceSet<T> that has pages, on subsequent enumerations you only get back the last page
ResourceSet<T>
var messageResource = await MessageResource.ReadAsync(readMessageOptions, client).ConfigureAwait(false); Console.WriteLine($"Found {messageResource.Count()} Messages"); Console.WriteLine($"Found {messageResource.Count()} Messages");
Found 236 Messages Found 36 Messages
Problem code is in ResourceSet.cs where FetchNextPage() overrides the prior page's _iterator and doesn't keep track of it.
FetchNextPage()
_iterator
The text was updated successfully, but these errors were encountered:
This issue has been added to our internal backlog to be prioritized. Pull requests and +1s on the issue summary will help it move up the backlog.
Sorry, something went wrong.
No branches or pull requests
Issue Summary
Once you enumerate over a
ResourceSet<T>
that has pages, on subsequent enumerations you only get back the last pageCode Snippet
Outputs
Problem code is in ResourceSet.cs where
FetchNextPage()
overrides the prior page's_iterator
and doesn't keep track of it.The text was updated successfully, but these errors were encountered: