CloudBlobClient.ListContainersSegmented 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
ListContainersSegmented(BlobContinuationToken) |
Returns a result segment containing a collection of CloudBlobContainer objects. |
ListContainersSegmented(String, BlobContinuationToken) |
Returns a result segment containing a collection of CloudBlobContainer objects. |
ListContainersSegmented(String, ContainerListingDetails, Nullable<Int32>, BlobContinuationToken, BlobRequestOptions, OperationContext) |
Returns a result segment containing a collection of containers whose names begin with the specified prefix. |
ListContainersSegmented(BlobContinuationToken)
Returns a result segment containing a collection of CloudBlobContainer objects.
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.Blob.ContainerResultSegment ListContainersSegmented (Microsoft.Azure.Storage.Blob.BlobContinuationToken currentToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListContainersSegmented : Microsoft.Azure.Storage.Blob.BlobContinuationToken -> Microsoft.Azure.Storage.Blob.ContainerResultSegment
override this.ListContainersSegmented : Microsoft.Azure.Storage.Blob.BlobContinuationToken -> Microsoft.Azure.Storage.Blob.ContainerResultSegment
Public Overridable Function ListContainersSegmented (currentToken As BlobContinuationToken) As ContainerResultSegment
Parameters
- currentToken
- BlobContinuationToken
A BlobContinuationToken object returned by a previous listing operation.
Returns
A ContainerResultSegment object.
- Attributes
Applies to
ListContainersSegmented(String, BlobContinuationToken)
Returns a result segment containing a collection of CloudBlobContainer objects.
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.Blob.ContainerResultSegment ListContainersSegmented (string prefix, Microsoft.Azure.Storage.Blob.BlobContinuationToken currentToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListContainersSegmented : string * Microsoft.Azure.Storage.Blob.BlobContinuationToken -> Microsoft.Azure.Storage.Blob.ContainerResultSegment
override this.ListContainersSegmented : string * Microsoft.Azure.Storage.Blob.BlobContinuationToken -> Microsoft.Azure.Storage.Blob.ContainerResultSegment
Public Overridable Function ListContainersSegmented (prefix As String, currentToken As BlobContinuationToken) As ContainerResultSegment
Parameters
- prefix
- String
A string containing the container name prefix.
- currentToken
- BlobContinuationToken
A BlobContinuationToken object returned by a previous listing operation.
Returns
A ContainerResultSegment object.
- Attributes
Applies to
ListContainersSegmented(String, ContainerListingDetails, Nullable<Int32>, BlobContinuationToken, BlobRequestOptions, OperationContext)
Returns a result segment containing a collection of containers whose names begin with the specified prefix.
[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.Blob.ContainerResultSegment ListContainersSegmented (string prefix, Microsoft.Azure.Storage.Blob.ContainerListingDetails detailsIncluded, int? maxResults, Microsoft.Azure.Storage.Blob.BlobContinuationToken currentToken, Microsoft.Azure.Storage.Blob.BlobRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListContainersSegmented : string * Microsoft.Azure.Storage.Blob.ContainerListingDetails * Nullable<int> * Microsoft.Azure.Storage.Blob.BlobContinuationToken * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Blob.ContainerResultSegment
override this.ListContainersSegmented : string * Microsoft.Azure.Storage.Blob.ContainerListingDetails * Nullable<int> * Microsoft.Azure.Storage.Blob.BlobContinuationToken * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Blob.ContainerResultSegment
Public Overridable Function ListContainersSegmented (prefix As String, detailsIncluded As ContainerListingDetails, maxResults As Nullable(Of Integer), currentToken As BlobContinuationToken, Optional options As BlobRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As ContainerResultSegment
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.
- currentToken
- BlobContinuationToken
A BlobContinuationToken object returned by a previous listing operation.
- options
- BlobRequestOptions
A BlobRequestOptions object that specifies additional options for the request. If null
, default options are applied to the request.
- operationContext
- OperationContext
An OperationContext object that represents the context for the current operation.
Returns
A ContainerResultSegment object.
- Attributes
Applies to
Azure SDK for .NET