Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add docs for TestAsyncPageableWithContinuationToken
  • Loading branch information
amnguye committed Dec 4, 2025
commit 20e3c5283828f206a0aca2279c00f195a3853e56
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@

namespace Microsoft.Azure.WebJobs.Extensions.Storage.Blobs.Tests
{
/// <summary>
/// This is based on the TestAsyncPageable in Common tests. It adds the ability to specify whether a continuation token is returned.
/// This will allow the strategy to determine whether there are more pages and continue listing.
/// It will NOT use the passed in continuation token to determine what to return; it always returns the page.
/// </summary>
public class TestAsyncPageableWithContinuationToken : AsyncPageable<BlobItem>
{
private readonly List<BlobItem> _page;
Expand Down
Loading