你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CloudBlobClient.BeginListBlobsSegmented 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
BeginListBlobsSegmented(String, BlobContinuationToken, AsyncCallback, Object) |
开始异步操作,以返回包含容器中 Blob 项集合的结果段。 |
BeginListBlobsSegmented(String, Boolean, BlobListingDetails, Nullable<Int32>, BlobContinuationToken, BlobRequestOptions, OperationContext, AsyncCallback, Object) |
开始异步操作,以返回包含容器中 Blob 项集合的结果段。 |
BeginListBlobsSegmented(String, BlobContinuationToken, AsyncCallback, Object)
开始异步操作,以返回包含容器中 Blob 项集合的结果段。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListBlobsSegmented (string prefix, Microsoft.Azure.Storage.Blob.BlobContinuationToken currentToken, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginListBlobsSegmented : string * Microsoft.Azure.Storage.Blob.BlobContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListBlobsSegmented : string * Microsoft.Azure.Storage.Blob.BlobContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListBlobsSegmented (prefix As String, currentToken As BlobContinuationToken, callback As AsyncCallback, state As Object) As ICancellableAsyncResult
参数
- prefix
- String
包含 Blob 名称前缀(包括容器名称)的字符串。
- currentToken
- BlobContinuationToken
由 BlobContinuationToken 上一个列表操作返回的 对象。
- callback
- AsyncCallback
在 AsyncCallback 异步操作完成时接收通知的委托。
- state
- Object
将传递给回调委托的用户定义对象。
返回
引用 ICancellableAsyncResult 异步操作的 。
- 属性
适用于
BeginListBlobsSegmented(String, Boolean, BlobListingDetails, Nullable<Int32>, BlobContinuationToken, BlobRequestOptions, OperationContext, AsyncCallback, Object)
开始异步操作,以返回包含容器中 Blob 项集合的结果段。
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListBlobsSegmented (string prefix, bool useFlatBlobListing, Microsoft.Azure.Storage.Blob.BlobListingDetails blobListingDetails, int? maxResults, Microsoft.Azure.Storage.Blob.BlobContinuationToken currentToken, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginListBlobsSegmented : string * bool * Microsoft.Azure.Storage.Blob.BlobListingDetails * Nullable<int> * Microsoft.Azure.Storage.Blob.BlobContinuationToken * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListBlobsSegmented : string * bool * Microsoft.Azure.Storage.Blob.BlobListingDetails * Nullable<int> * Microsoft.Azure.Storage.Blob.BlobContinuationToken * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListBlobsSegmented (prefix As String, useFlatBlobListing As Boolean, blobListingDetails As BlobListingDetails, maxResults As Nullable(Of Integer), currentToken As BlobContinuationToken, options As BlobRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult
参数
- prefix
- String
包含 Blob 名称前缀(包括容器名称)的字符串。
- useFlatBlobListing
- Boolean
一个布尔值,指定是列出平面列表中的 Blob,还是按虚拟目录分层列出 Blob。
- blobListingDetails
- BlobListingDetails
BlobListingDetails 枚举,它描述要包含在列表中的项。
- currentToken
- BlobContinuationToken
由 BlobContinuationToken 上一个列表操作返回的 对象。
- options
- BlobRequestOptions
一个 BlobRequestOptions 对象,它指定请求的其他选项。
- operationContext
- OperationContext
一个 OperationContext 对象,它一个表示当前操作的上下文。
- callback
- AsyncCallback
在 AsyncCallback 异步操作完成时接收通知的委托。
- state
- Object
将传递给回调委托的用户定义对象。
返回
引用 ICancellableAsyncResult 异步操作的 。
- 属性