Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudFileClient.ListSharesSegmentedAsync Method (String, FileContinuationToken) (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
)
 
public:
[DoesServiceRequestAttribute]
virtual Task<ShareResultSegment^>^ ListSharesSegmentedAsync(
	String^ prefix,
	FileContinuationToken^ currentToken
)
 
[<DoesServiceRequestAttribute>]
abstract ListSharesSegmentedAsync : 
        prefix:string *
        currentToken:FileContinuationToken -> Task<ShareResultSegment>
[<DoesServiceRequestAttribute>]
override ListSharesSegmentedAsync : 
        prefix:string *
        currentToken:FileContinuationToken -> Task<ShareResultSegment>
 
<DoesServiceRequestAttribute>
Public Overridable Function ListSharesSegmentedAsync (
	prefix As String,
	currentToken As FileContinuationToken
) As Task(Of ShareResultSegment)
Return to top