Returns a result segment containing a collection of shares.
Namespace: Microsoft.WindowsAzure.Storage.File
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudFileClient
Dim prefix As String
Dim currentToken As FileContinuationToken
Dim returnValue As IAsyncOperation(Of ShareResultSegment)
returnValue = instance.ListSharesSegmentedAsync(prefix, currentToken) |
Syntax
Visual Basic |
---|
Public Function ListSharesSegmentedAsync ( _
prefix As String, _
currentToken As FileContinuationToken _
) As IAsyncOperation(Of ShareResultSegment) |
C# |
---|
public IAsyncOperation<ShareResultSegment> ListSharesSegmentedAsync (
string prefix,
FileContinuationToken currentToken
) |
C++ |
---|
public:
IAsyncOperation<ShareResultSegment^>^ ListSharesSegmentedAsync (
String^ prefix,
FileContinuationToken^ currentToken
) |
J# |
---|
public IAsyncOperation<ShareResultSegment> ListSharesSegmentedAsync (
String prefix,
FileContinuationToken currentToken
) |
JScript |
---|
public function ListSharesSegmentedAsync (
prefix : String,
currentToken : FileContinuationToken
) : IAsyncOperation<ShareResultSegment> |
Parameters
- prefix
The share name prefix.
- currentToken
A continuation token returned by a previous listing operation.
Return Value
A result segment of shares.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also