CloudBlobClient.BeginListContainersSegmented 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
BeginListContainersSegmented(BlobContinuationToken, AsyncCallback, Object) |
Begins an asynchronous request to return a result segment containing a collection of containers. |
BeginListContainersSegmented(String, BlobContinuationToken, AsyncCallback, Object) |
Begins an asynchronous request to return a result segment containing a collection of containers. |
BeginListContainersSegmented(String, ContainerListingDetails, Nullable<Int32>, BlobContinuationToken, BlobRequestOptions, OperationContext, AsyncCallback, Object) |
Begins an asynchronous request to return a result segment containing a collection of containers whose names begin with the specified prefix. |
BeginListContainersSegmented(BlobContinuationToken, AsyncCallback, Object)
Begins an asynchronous request to return a result segment containing a collection of containers.
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListContainersSegmented (Microsoft.Azure.Storage.Blob.BlobContinuationToken continuationToken, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginListContainersSegmented : Microsoft.Azure.Storage.Blob.BlobContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListContainersSegmented : Microsoft.Azure.Storage.Blob.BlobContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListContainersSegmented (continuationToken As BlobContinuationToken, callback As AsyncCallback, state As Object) As ICancellableAsyncResult
Parameters
- continuationToken
- BlobContinuationToken
A BlobContinuationToken object 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.
- Attributes
Applies to
BeginListContainersSegmented(String, BlobContinuationToken, AsyncCallback, Object)
Begins an asynchronous request to return a result segment containing a collection of containers.
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListContainersSegmented (string prefix, Microsoft.Azure.Storage.Blob.BlobContinuationToken continuationToken, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginListContainersSegmented : string * Microsoft.Azure.Storage.Blob.BlobContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListContainersSegmented : string * Microsoft.Azure.Storage.Blob.BlobContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListContainersSegmented (prefix As String, continuationToken As BlobContinuationToken, callback As AsyncCallback, state As Object) As ICancellableAsyncResult
Parameters
- prefix
- String
A string containing the container name prefix.
- continuationToken
- BlobContinuationToken
A BlobContinuationToken object 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.
- Attributes
Applies to
BeginListContainersSegmented(String, ContainerListingDetails, Nullable<Int32>, BlobContinuationToken, BlobRequestOptions, OperationContext, AsyncCallback, Object)
Begins an asynchronous request to return a result segment containing a collection of containers whose names begin with the specified prefix.
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListContainersSegmented (string prefix, Microsoft.Azure.Storage.Blob.ContainerListingDetails detailsIncluded, int? maxResults, Microsoft.Azure.Storage.Blob.BlobContinuationToken continuationToken, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginListContainersSegmented : string * Microsoft.Azure.Storage.Blob.ContainerListingDetails * Nullable<int> * Microsoft.Azure.Storage.Blob.BlobContinuationToken * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListContainersSegmented : string * Microsoft.Azure.Storage.Blob.ContainerListingDetails * 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 BeginListContainersSegmented (prefix As String, detailsIncluded As ContainerListingDetails, maxResults As Nullable(Of Integer), continuationToken As BlobContinuationToken, options As BlobRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult
Parameters
- prefix
- String
A string containing the container name prefix.
- detailsIncluded
- ContainerListingDetails
A ContainerListingDetails enumeration value that indicates whether to return container metadata with the listing.
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.
- continuationToken
- BlobContinuationToken
A BlobContinuationToken object returned by a previous listing operation.
- options
- BlobRequestOptions
A BlobRequestOptions 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.
- Attributes