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

CloudQueueClient.ListQueuesSegmented 方法

定义

重载

ListQueuesSegmented(QueueContinuationToken)

返回包含队列集合的结果段。

ListQueuesSegmented(String, QueueContinuationToken)

返回包含队列集合的结果段。

ListQueuesSegmented(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext)

返回包含队列集合的结果段。

ListQueuesSegmented(QueueContinuationToken)

返回包含队列集合的结果段。

public virtual Microsoft.Azure.Storage.Queue.QueueResultSegment ListQueuesSegmented (Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken);
abstract member ListQueuesSegmented : Microsoft.Azure.Storage.Queue.QueueContinuationToken -> Microsoft.Azure.Storage.Queue.QueueResultSegment
override this.ListQueuesSegmented : Microsoft.Azure.Storage.Queue.QueueContinuationToken -> Microsoft.Azure.Storage.Queue.QueueResultSegment
Public Overridable Function ListQueuesSegmented (currentToken As QueueContinuationToken) As QueueResultSegment

参数

currentToken
QueueContinuationToken

上一个 QueueContinuationToken 列表操作返回的继续标记。

返回

QueueResultSegment 对象。

适用于

ListQueuesSegmented(String, QueueContinuationToken)

返回包含队列集合的结果段。

public virtual Microsoft.Azure.Storage.Queue.QueueResultSegment ListQueuesSegmented (string prefix, Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken);
abstract member ListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.QueueContinuationToken -> Microsoft.Azure.Storage.Queue.QueueResultSegment
override this.ListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.QueueContinuationToken -> Microsoft.Azure.Storage.Queue.QueueResultSegment
Public Overridable Function ListQueuesSegmented (prefix As String, currentToken As QueueContinuationToken) As QueueResultSegment

参数

prefix
String

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

currentToken
QueueContinuationToken

上一个 QueueContinuationToken 列表操作返回的继续标记。

返回

QueueResultSegment 对象。

适用于

ListQueuesSegmented(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext)

返回包含队列集合的结果段。

public virtual Microsoft.Azure.Storage.Queue.QueueResultSegment ListQueuesSegmented (string prefix, Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails queueListingDetails, int? maxResults, Microsoft.Azure.Storage.Queue.QueueContinuationToken currentToken, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
abstract member ListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails * Nullable<int> * Microsoft.Azure.Storage.Queue.QueueContinuationToken * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.QueueResultSegment
override this.ListQueuesSegmented : string * Microsoft.Azure.Storage.Queue.Protocol.QueueListingDetails * Nullable<int> * Microsoft.Azure.Storage.Queue.QueueContinuationToken * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.QueueResultSegment
Public Overridable Function ListQueuesSegmented (prefix As String, queueListingDetails As QueueListingDetails, maxResults As Nullable(Of Integer), currentToken As QueueContinuationToken, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As QueueResultSegment

参数

prefix
String

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

queueListingDetails
QueueListingDetails

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

maxResults
Nullable<Int32>

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

currentToken
QueueContinuationToken

上一列表操作返回的 QueueContinuationToken

options
QueueRequestOptions

一个 QueueRequestOptions 对象,它指定请求的其他选项。 如果 null为 ,则默认选项应用于请求。

operationContext
OperationContext

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

返回

QueueResultSegment 对象。

适用于