Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudFileClient.ListSharesSegmentedAsync Method (String, FileContinuationToken, CancellationToken) (Microsoft.WindowsAzure.Storage.File)

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

Namespace:   Microsoft.WindowsAzure.Storage.File
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task<ShareResultSegment> ListSharesSegmentedAsync(
	string prefix,
	FileContinuationToken currentToken,
	CancellationToken cancellationToken
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<ShareResultSegment^>^ ListSharesSegmentedAsync(
	String^ prefix,
	FileContinuationToken^ currentToken,
	CancellationToken cancellationToken
)
 
[<DoesServiceRequestAttribute>]
abstract ListSharesSegmentedAsync : 
        prefix:string *
        currentToken:FileContinuationToken *
        cancellationToken:CancellationToken -> Task<ShareResultSegment>
[<DoesServiceRequestAttribute>]
override ListSharesSegmentedAsync : 
        prefix:string *
        currentToken:FileContinuationToken *
        cancellationToken:CancellationToken -> Task<ShareResultSegment>
 
<DoesServiceRequestAttribute>
Public Overridable Function ListSharesSegmentedAsync (
	prefix As String,
	currentToken As FileContinuationToken,
	cancellationToken As CancellationToken
) As Task(Of ShareResultSegment)
Return to top