Azure.Storage.Files.DataLake.Models.GetFileSystemsAsyncCollection
This class wraps the DateLakeServiceClient.GetFileSystemsAsync return values
and maps them into DataLake types.
namespace Azure.Storage.Files.DataLake.Models
{
internal class GetFileSystemsAsyncCollection
{
public GetFileSystemsAsyncCollection(BlobServiceClient client, FileSystemTraits traits, FileSystemStates states, string prefix = null);
public Pageable<FileSystemItem> ToSyncCollection(CancellationToken cancellationToken);
public AsyncPageable<FileSystemItem> ToAsyncCollection(CancellationToken cancellationToken);
}
}