C# container.ListBlobsSegmented与blobclient.ListBlobsWithPrefix之间有什么区别?

C# container.ListBlobsSegmented与blobclient.ListBlobsWithPrefix之间有什么区别?,c#,azure,azure-storage,azure-storage-blobs,C#,Azure,Azure Storage,Azure Storage Blobs,在Azure Blob存储中,这两种方法在这两个不同对象上的区别是什么?何时使用ContainerInstance.ListBlobsSegmented()vsCloudBlobClient.ListBlobsWithPrefix() 使用PageBlob与block blob有关系吗?ListBlobsSegmented返回页面中的blob名称(最多5000个),无需过滤。CloudBlobContainer.ListBlobs在封面下使用此方法枚举所有Blob。它还可以通过ListBlobs

在Azure Blob存储中,这两种方法在这两个不同对象上的区别是什么?何时使用
ContainerInstance.ListBlobsSegmented()
vs
CloudBlobClient.ListBlobsWithPrefix()


使用PageBlob与block blob有关系吗?

ListBlobsSegmented返回页面中的blob名称(最多5000个),无需过滤。CloudBlobContainer.ListBlobs在封面下使用此方法枚举所有Blob。它还可以通过ListBlobsSegmented方法直接公开。ListBlobsWithPrefix允许您筛选以前缀开头的Blob。这由CloudBlobClient.ListBlobWithPrefix方法使用

它是页面还是块blob并不重要