CloudFileClient.BeginListSharesSegmented Method

Definition

Overloads

BeginListSharesSegmented(FileContinuationToken, AsyncCallback, Object)

Begins an asynchronous request to return a result segment containing a collection of shares.

BeginListSharesSegmented(String, FileContinuationToken, AsyncCallback, Object)

Begins an asynchronous request to return a result segment containing a collection of shares.

BeginListSharesSegmented(String, ShareListingDetails, Nullable<Int32>, FileContinuationToken, FileRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous request to return a result segment containing a collection of shares whose names begin with the specified prefix.

BeginListSharesSegmented(FileContinuationToken, AsyncCallback, Object)

Begins an asynchronous request to return a result segment containing a collection of shares.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListSharesSegmented (Microsoft.Azure.Storage.File.FileContinuationToken currentToken, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginListSharesSegmented : Microsoft.Azure.Storage.File.FileContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListSharesSegmented : Microsoft.Azure.Storage.File.FileContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListSharesSegmented (currentToken As FileContinuationToken, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

Parameters

currentToken
FileContinuationToken

A continuation token returned by a previous listing operation.

callback
AsyncCallback

The callback 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 IAsyncResult that references the asynchronous operation.

Attributes

Applies to

BeginListSharesSegmented(String, FileContinuationToken, AsyncCallback, Object)

Begins an asynchronous request to return a result segment containing a collection of shares.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListSharesSegmented (string prefix, Microsoft.Azure.Storage.File.FileContinuationToken currentToken, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginListSharesSegmented : string * Microsoft.Azure.Storage.File.FileContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListSharesSegmented : string * Microsoft.Azure.Storage.File.FileContinuationToken * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListSharesSegmented (prefix As String, currentToken As FileContinuationToken, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

Parameters

prefix
String

The share name prefix.

currentToken
FileContinuationToken

A continuation token returned by a previous listing operation.

callback
AsyncCallback

The callback 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 IAsyncResult that references the asynchronous operation.

Attributes

Applies to

BeginListSharesSegmented(String, ShareListingDetails, Nullable<Int32>, FileContinuationToken, FileRequestOptions, OperationContext, AsyncCallback, Object)

Begins an asynchronous request to return a result segment containing a collection of shares whose names begin with the specified prefix.

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginListSharesSegmented (string prefix, Microsoft.Azure.Storage.File.ShareListingDetails detailsIncluded, int? maxResults, Microsoft.Azure.Storage.File.FileContinuationToken currentToken, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginListSharesSegmented : string * Microsoft.Azure.Storage.File.ShareListingDetails * Nullable<int> * Microsoft.Azure.Storage.File.FileContinuationToken * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginListSharesSegmented : string * Microsoft.Azure.Storage.File.ShareListingDetails * Nullable<int> * Microsoft.Azure.Storage.File.FileContinuationToken * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginListSharesSegmented (prefix As String, detailsIncluded As ShareListingDetails, maxResults As Nullable(Of Integer), currentToken As FileContinuationToken, options As FileRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

Parameters

prefix
String

The share name prefix.

detailsIncluded
ShareListingDetails

A value that indicates whether to return share metadata with the listing.

maxResults
Nullable<Int32>

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
FileContinuationToken

A continuation token returned by a previous listing operation.

options
FileRequestOptions

A FileRequestOptions object that specifies additional options for the request.

operationContext
OperationContext

An OperationContext object that represents the context for the current operation.

callback
AsyncCallback

The callback 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 IAsyncResult that references the asynchronous operation.

Attributes

Applies to