CloudBlobDirectory.BeginListBlobsSegmented Method (Boolean, BlobListingDetails, Nullable(Int32), BlobContinuationToken, BlobRequestOptions, OperationContext, AsyncCallback, Object) (Microsoft.WindowsAzure.Storage.Blob)
From Microsoft Windows Azure Storage Blob
Begins an asynchronous operation to return a result segment containing a collection of blob items in the virtual directory.
Namespace:
Microsoft.WindowsAzure.Storage.Blob
Assembly:
Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
[DoesServiceRequestAttribute]
public virtual ICancellableAsyncResult BeginListBlobsSegmented(
bool useFlatBlobListing,
BlobListingDetails blobListingDetails,
Nullable<int> maxResults,
BlobContinuationToken currentToken,
BlobRequestOptions options,
OperationContext operationContext,
AsyncCallback callback,
object state
)
C++
public:
[DoesServiceRequestAttribute]
virtual ICancellableAsyncResult^ BeginListBlobsSegmented(
bool useFlatBlobListing,
BlobListingDetails blobListingDetails,
Nullable<int> maxResults,
BlobContinuationToken^ currentToken,
BlobRequestOptions^ options,
OperationContext^ operationContext,
AsyncCallback^ callback,
Object^ state
)
[<DoesServiceRequestAttribute>]
abstract BeginListBlobsSegmented :
useFlatBlobListing:bool *
blobListingDetails:BlobListingDetails *
maxResults:Nullable<int> *
currentToken:BlobContinuationToken *
options:BlobRequestOptions *
operationContext:OperationContext *
callback:AsyncCallback *
state:Object -> ICancellableAsyncResult
[<DoesServiceRequestAttribute>]
override BeginListBlobsSegmented :
useFlatBlobListing:bool *
blobListingDetails:BlobListingDetails *
maxResults:Nullable<int> *
currentToken:BlobContinuationToken *
options:BlobRequestOptions *
operationContext:OperationContext *
callback:AsyncCallback *
state:Object -> ICancellableAsyncResult
<DoesServiceRequestAttribute>
Public Overridable Function BeginListBlobsSegmented (
useFlatBlobListing As Boolean,
blobListingDetails As BlobListingDetails,
maxResults As Nullable(Of Integer),
currentToken As BlobContinuationToken,
options As BlobRequestOptions,
operationContext As OperationContext,
callback As AsyncCallback,
state As Object
) As ICancellableAsyncResult
Parameters
- useFlatBlobListing
-
Type:
System.BooleanSystem::BooleanSystem.BooleanSystem.Boolean
A boolean value that specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
- blobListingDetails
-
Type:
Microsoft.WindowsAzure.Storage.Blob.BlobListingDetailsMicrosoft.WindowsAzure.Storage.Blob::BlobListingDetailsMicrosoft.WindowsAzure.Storage.Blob.BlobListingDetailsMicrosoft.WindowsAzure.Storage.Blob.BlobListingDetails
A BlobListingDetails enumeration describing which items to include in 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 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
-
Type:
Microsoft.WindowsAzure.Storage.Blob.BlobContinuationTokenMicrosoft.WindowsAzure.Storage.Blob::BlobContinuationToken^Microsoft.WindowsAzure.Storage.Blob.BlobContinuationTokenMicrosoft.WindowsAzure.Storage.Blob.BlobContinuationToken
A continuation token returned by a previous listing operation.
- options
-
Type:
Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptionsMicrosoft.WindowsAzure.Storage.Blob::BlobRequestOptions^Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptionsMicrosoft.WindowsAzure.Storage.Blob.BlobRequestOptions
A BlobRequestOptions 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.
- callback
-
Type:
System.AsyncCallbackSystem::AsyncCallback^System.AsyncCallbackSystem.AsyncCallback
An AsyncCallback delegate that will receive notification when the asynchronous operation completes.
- state
-
Type:
System.ObjectSystem::Object^System.ObjectSystem.Object
A user-defined object that will be passed to the callback delegate.
Return Value
Type:
Microsoft.WindowsAzure.Storage.ICancellableAsyncResultMicrosoft.WindowsAzure.Storage::ICancellableAsyncResult^Microsoft.WindowsAzure.Storage.ICancellableAsyncResultMicrosoft.WindowsAzure.Storage.ICancellableAsyncResultAn ICancellableAsyncResult that references the asynchronous operation.
See Also
BeginListBlobsSegmented Overload
CloudBlobDirectory Class
Microsoft.WindowsAzure.Storage.Blob Namespace
Return to top
Begins an asynchronous operation to return a result segment containing a collection of blob items in the virtual directory.
Syntax
[DoesServiceRequestAttribute] public virtual ICancellableAsyncResult BeginListBlobsSegmented( bool useFlatBlobListing, BlobListingDetails blobListingDetails, Nullable<int> maxResults, BlobContinuationToken currentToken, BlobRequestOptions options, OperationContext operationContext, AsyncCallback callback, object state )
public: [DoesServiceRequestAttribute] virtual ICancellableAsyncResult^ BeginListBlobsSegmented( bool useFlatBlobListing, BlobListingDetails blobListingDetails, Nullable<int> maxResults, BlobContinuationToken^ currentToken, BlobRequestOptions^ options, OperationContext^ operationContext, AsyncCallback^ callback, Object^ state )
[<DoesServiceRequestAttribute>] abstract BeginListBlobsSegmented : useFlatBlobListing:bool * blobListingDetails:BlobListingDetails * maxResults:Nullable<int> * currentToken:BlobContinuationToken * options:BlobRequestOptions * operationContext:OperationContext * callback:AsyncCallback * state:Object -> ICancellableAsyncResult [<DoesServiceRequestAttribute>] override BeginListBlobsSegmented : useFlatBlobListing:bool * blobListingDetails:BlobListingDetails * maxResults:Nullable<int> * currentToken:BlobContinuationToken * options:BlobRequestOptions * operationContext:OperationContext * callback:AsyncCallback * state:Object -> ICancellableAsyncResult
<DoesServiceRequestAttribute> Public Overridable Function BeginListBlobsSegmented ( useFlatBlobListing As Boolean, blobListingDetails As BlobListingDetails, maxResults As Nullable(Of Integer), currentToken As BlobContinuationToken, options As BlobRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object ) As ICancellableAsyncResult
Parameters
- useFlatBlobListing
-
Type:
System.BooleanSystem::BooleanSystem.BooleanSystem.Boolean
A boolean value that specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
- blobListingDetails
-
Type:
Microsoft.WindowsAzure.Storage.Blob.BlobListingDetailsMicrosoft.WindowsAzure.Storage.Blob::BlobListingDetailsMicrosoft.WindowsAzure.Storage.Blob.BlobListingDetailsMicrosoft.WindowsAzure.Storage.Blob.BlobListingDetails
A BlobListingDetails enumeration describing which items to include in 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 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
-
Type:
Microsoft.WindowsAzure.Storage.Blob.BlobContinuationTokenMicrosoft.WindowsAzure.Storage.Blob::BlobContinuationToken^Microsoft.WindowsAzure.Storage.Blob.BlobContinuationTokenMicrosoft.WindowsAzure.Storage.Blob.BlobContinuationToken
A continuation token returned by a previous listing operation.
- options
-
Type:
Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptionsMicrosoft.WindowsAzure.Storage.Blob::BlobRequestOptions^Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptionsMicrosoft.WindowsAzure.Storage.Blob.BlobRequestOptions
A BlobRequestOptions 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.
- callback
-
Type:
System.AsyncCallbackSystem::AsyncCallback^System.AsyncCallbackSystem.AsyncCallback
An AsyncCallback delegate that will receive notification when the asynchronous operation completes.
- state
-
Type:
System.ObjectSystem::Object^System.ObjectSystem.Object
A user-defined object that will be passed to the callback delegate.
Return Value
Type: Microsoft.WindowsAzure.Storage.ICancellableAsyncResultMicrosoft.WindowsAzure.Storage::ICancellableAsyncResult^Microsoft.WindowsAzure.Storage.ICancellableAsyncResultMicrosoft.WindowsAzure.Storage.ICancellableAsyncResultAn ICancellableAsyncResult that references the asynchronous operation.
See Also
BeginListBlobsSegmented Overload
CloudBlobDirectory Class
Microsoft.WindowsAzure.Storage.Blob Namespace