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

CloudBlobContainer.ListBlobsSegmented Method

Definition

Overloads

ListBlobsSegmented(String, Boolean, BlobListingDetails, Nullable<Int32>, BlobContinuationToken, BlobRequestOptions, OperationContext)

Returns a result segment containing a collection of blob items in the container.

ListBlobsSegmented(String, BlobContinuationToken)

Returns a result segment containing a collection of blob items in the container.

ListBlobsSegmented(BlobContinuationToken)

Returns a result segment containing a collection of blob items in the container.

ListBlobsSegmented(String, Boolean, BlobListingDetails, Nullable<Int32>, BlobContinuationToken, BlobRequestOptions, OperationContext)

Returns a result segment containing a collection of blob items in the container.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.Blob.BlobResultSegment ListBlobsSegmented(string prefix, bool useFlatBlobListing, Microsoft.Azure.Storage.Blob.BlobListingDetails blobListingDetails, int? maxResults, Microsoft.Azure.Storage.Blob.BlobContinuationToken currentToken, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListBlobsSegmented : string * bool * Microsoft.Azure.Storage.Blob.BlobListingDetails * Nullable<int> * Microsoft.Azure.Storage.Blob.BlobContinuationToken * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Blob.BlobResultSegment
override this.ListBlobsSegmented : string * bool * Microsoft.Azure.Storage.Blob.BlobListingDetails * Nullable<int> * Microsoft.Azure.Storage.Blob.BlobContinuationToken * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Blob.BlobResultSegment
Public Overridable Function ListBlobsSegmented (prefix As String, useFlatBlobListing As Boolean, blobListingDetails As BlobListingDetails, maxResults As Nullable(Of Integer), currentToken As BlobContinuationToken, options As BlobRequestOptions, operationContext As OperationContext) As BlobResultSegment

Parameters

prefix
String

A string containing the blob name prefix.

useFlatBlobListing
Boolean

A boolean value that specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.

blobListingDetails
BlobListingDetails

A BlobListingDetails enumeration describing which items to include in the listing.

maxResults
Nullable<Int32>

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
BlobContinuationToken

A continuation token 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.

Returns

A result segment containing objects that implement IListBlobItem.

Attributes

Applies to

ListBlobsSegmented(String, BlobContinuationToken)

Returns a result segment containing a collection of blob items in the container.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.Blob.BlobResultSegment ListBlobsSegmented(string prefix, Microsoft.Azure.Storage.Blob.BlobContinuationToken currentToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListBlobsSegmented : string * Microsoft.Azure.Storage.Blob.BlobContinuationToken -> Microsoft.Azure.Storage.Blob.BlobResultSegment
override this.ListBlobsSegmented : string * Microsoft.Azure.Storage.Blob.BlobContinuationToken -> Microsoft.Azure.Storage.Blob.BlobResultSegment
Public Overridable Function ListBlobsSegmented (prefix As String, currentToken As BlobContinuationToken) As BlobResultSegment

Parameters

prefix
String

A string containing the blob name prefix.

currentToken
BlobContinuationToken

A continuation token returned by a previous listing operation.

Returns

A result segment containing objects that implement IListBlobItem.

Attributes

Applies to

ListBlobsSegmented(BlobContinuationToken)

Returns a result segment containing a collection of blob items in the container.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.Blob.BlobResultSegment ListBlobsSegmented(Microsoft.Azure.Storage.Blob.BlobContinuationToken currentToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member ListBlobsSegmented : Microsoft.Azure.Storage.Blob.BlobContinuationToken -> Microsoft.Azure.Storage.Blob.BlobResultSegment
override this.ListBlobsSegmented : Microsoft.Azure.Storage.Blob.BlobContinuationToken -> Microsoft.Azure.Storage.Blob.BlobResultSegment
Public Overridable Function ListBlobsSegmented (currentToken As BlobContinuationToken) As BlobResultSegment

Parameters

currentToken
BlobContinuationToken

A continuation token returned by a previous listing operation.

Returns

A result segment containing objects that implement IListBlobItem.

Attributes

Applies to