Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Returns a result segment containing a collection of queues whose names begin with the specified prefix.

Namespace:   Microsoft.WindowsAzure.Storage.Queue
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public virtual Task<QueueResultSegment> ListQueuesSegmentedAsync(
	string prefix,
	QueueListingDetails detailsIncluded,
	Nullable<int> maxResults,
	QueueContinuationToken currentToken,
	QueueRequestOptions options,
	OperationContext operationContext
)
 
public:
virtual Task<QueueResultSegment^>^ ListQueuesSegmentedAsync(
	String^ prefix,
	QueueListingDetails detailsIncluded,
	Nullable<int> maxResults,
	QueueContinuationToken^ currentToken,
	QueueRequestOptions^ options,
	OperationContext^ operationContext
)
 
abstract ListQueuesSegmentedAsync : 
        prefix:string *
        detailsIncluded:QueueListingDetails *
        maxResults:Nullable<int> *
        currentToken:QueueContinuationToken *
        options:QueueRequestOptions *
        operationContext:OperationContext -> Task<QueueResultSegment>
override ListQueuesSegmentedAsync : 
        prefix:string *
        detailsIncluded:QueueListingDetails *
        maxResults:Nullable<int> *
        currentToken:QueueContinuationToken *
        options:QueueRequestOptions *
        operationContext:OperationContext -> Task<QueueResultSegment>
 
Public Overridable Function ListQueuesSegmentedAsync (
	prefix As String,
	detailsIncluded As QueueListingDetails,
	maxResults As Nullable(OfInteger),
	currentToken As QueueContinuationToken,
	options As QueueRequestOptions,
	operationContext As OperationContext
) As Task(Of QueueResultSegment)

Parameters

prefix
Type: System.StringSystem::String^System.StringSystem.String

The queue name prefix.

detailsIncluded
Type: Microsoft.WindowsAzure.Storage.Queue.Protocol.QueueListingDetailsMicrosoft.WindowsAzure.Storage.Queue.Protocol::QueueListingDetailsMicrosoft.WindowsAzure.Storage.Queue.Protocol.QueueListingDetailsMicrosoft.WindowsAzure.Storage.Queue.Protocol.QueueListingDetails

A value that indicates whether to return queue metadata with the listing.

maxResults
Type: System.Nullable<Int32>System::Nullable<Int32>System.Nullable<Int32>System.Nullable(Of Int32)

A non-negative integer value that indicates the maximum number of results to be returned in the result segment, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000.

currentToken
Type: Microsoft.WindowsAzure.Storage.Queue.QueueContinuationTokenMicrosoft.WindowsAzure.Storage.Queue::QueueContinuationToken^Microsoft.WindowsAzure.Storage.Queue.QueueContinuationTokenMicrosoft.WindowsAzure.Storage.Queue.QueueContinuationToken

A QueueContinuationToken token returned by a previous listing operation.

options
Type: Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue::QueueRequestOptions^Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue.QueueRequestOptions

An object that specifies additional options for the request.

operationContext
Type: Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage::OperationContext^Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage.OperationContext

An OperationContext object that represents the context for the current operation.

Return to top