CloudQueueClient.BeginListQueuesSegmented Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BeginListQueuesSegmented(QueueContinuationToken, AsyncCallback, Object) |
Begins an asynchronous operation to return a result segment containing a collection of queues. |
BeginListQueuesSegmented(String, QueueContinuationToken, AsyncCallback, Object) |
Begins an asynchronous operation to return a result segment containing a collection of queues. |
BeginListQueuesSegmented(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext, AsyncCallback, Object) |
Begins an asynchronous operation to return a result segment containing a collection of queues. |
BeginListQueuesSegmented(QueueContinuationToken, AsyncCallback, Object)
Begins an asynchronous operation to return a result segment containing a collection of queues.
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
Parameters
- currentToken
- QueueContinuationToken
A QueueContinuationToken returned by a previous listing operation.
- callback
- AsyncCallback
An AsyncCallback delegate that will receive notification when the asynchronous operation completes.
- state
- Object
A user-defined object that will be passed to the callback delegate.
Returns
An ICancellableAsyncResult that references the asynchronous operation.
Applies to
BeginListQueuesSegmented(String, QueueContinuationToken, AsyncCallback, Object)
Begins an asynchronous operation to return a result segment containing a collection of queues.
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
Parameters
- prefix
- String
A string containing the queue name prefix.
- currentToken
- QueueContinuationToken
A QueueContinuationToken returned by a previous listing operation.
- callback
- AsyncCallback
An AsyncCallback delegate that will receive notification when the asynchronous operation completes.
- state
- Object
A user-defined object that will be passed to the callback delegate.
Returns
An ICancellableAsyncResult that references the asynchronous operation.
Applies to
BeginListQueuesSegmented(String, QueueListingDetails, Nullable<Int32>, QueueContinuationToken, QueueRequestOptions, OperationContext, AsyncCallback, Object)
Begins an asynchronous operation to return a result segment containing a collection of queues.
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
Parameters
- prefix
- String
A string containing the queue name prefix.
- queueListingDetails
- QueueListingDetails
A QueueListingDetails enumeration describing which items to include in the listing.
A non-negative integer value that indicates the maximum number of results to be returned at a time, 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
- QueueContinuationToken
A QueueContinuationToken returned by a previous listing operation.
- options
- QueueRequestOptions
A QueueRequestOptions object that specifies additional options for the request.
- operationContext
- OperationContext
An OperationContext object that represents the context for the current operation.
- callback
- AsyncCallback
An AsyncCallback delegate that will receive notification when the asynchronous operation completes.
- state
- Object
A user-defined object that will be passed to the callback delegate.
Returns
An ICancellableAsyncResult that references the asynchronous operation.
Applies to
Azure SDK for .NET