你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CloudQueueClient.BeginListQueuesSegmented 方法

定义

重载

BeginListQueuesSegmented(QueueContinuationToken, AsyncCallback, Object)

开始异步操作以返回包含队列集合的结果段。

BeginListQueuesSegmented(String, QueueContinuationToken, AsyncCallback, Object)

开始异步操作以返回包含队列集合的结果段。

BeginListQueuesSegmented(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext, AsyncCallback, Object)

开始异步操作以返回包含队列集合的结果段。

BeginListQueuesSegmented(QueueContinuationToken, AsyncCallback, Object)

开始异步操作以返回包含队列集合的结果段。

public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListQueuesSegmented (Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken, AsyncCallback callback, object state);
abstract member BeginListQueuesSegmented : Microsoft.Azure.Storage.Queue.QueueContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListQueuesSegmented : Microsoft.Azure.Storage.Queue.QueueContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListQueuesSegmented (currentToken As QueueContinuationToken, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

参数

currentToken
QueueContinuationToken

上一列表操作返回的 QueueContinuationToken

callback
AsyncCallback

AsyncCallback 异步操作完成时接收通知的委托。

state
Object

将传递给回调委托的用户定义对象。

返回

引用 ICancellableAsyncResult 异步操作的 。

适用于

BeginListQueuesSegmented(String, QueueContinuationToken, AsyncCallback, Object)

开始异步操作以返回包含队列集合的结果段。

public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListQueuesSegmented (string prefix, Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken, AsyncCallback callback, object state);
abstract member BeginListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.QueueContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.QueueContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListQueuesSegmented (prefix As String, currentToken As QueueContinuationToken, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

参数

prefix
String

包含队列名称前缀的字符串。

currentToken
QueueContinuationToken

上一列表操作返回的 QueueContinuationToken

callback
AsyncCallback

AsyncCallback 异步操作完成时接收通知的委托。

state
Object

将传递给回调委托的用户定义对象。

返回

引用 ICancellableAsyncResult 异步操作的 。

适用于

BeginListQueuesSegmented(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext, AsyncCallback, Object)

开始异步操作以返回包含队列集合的结果段。

public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListQueuesSegmented (string prefix, Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails queueListingDetails, int? maxResults, Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);
abstract member BeginListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails * Nullable<int> * Microsoft.Azure.Storage.Queue.QueueContinuationToken * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails * Nullable<int> * Microsoft.Azure.Storage.Queue.QueueContinuationToken * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListQueuesSegmented (prefix As String, queueListingDetails As QueueListingDetails, maxResults As Nullable(Of Integer), currentToken As QueueContinuationToken, options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

参数

prefix
String

包含队列名称前缀的字符串。

queueListingDetails
QueueListingDetails

QueueListingDetails 枚举,它描述要包含在列表中的项。

maxResults
Nullable<Int32>

一个非负整数值,指示一次最多返回的结果的数目,最大限制为每操作 5000。 如果此值为 null,则返回的最大可能结果数,最多为 5000。

currentToken
QueueContinuationToken

上一列表操作返回的 QueueContinuationToken

options
QueueRequestOptions

一个 QueueRequestOptions 对象,它指定请求的其他选项。

operationContext
OperationContext

一个 OperationContext 对象,它一个表示当前操作的上下文。

callback
AsyncCallback

AsyncCallback 异步操作完成时接收通知的委托。

state
Object

将传递给回调委托的用户定义对象。

返回

引用 ICancellableAsyncResult 异步操作的 。

适用于