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 currentToken As FileContinuationToken
Dim returnValue As IAsyncOperation(Of ShareResultSegment)
returnValue = instance.ListSharesSegmentedAsync(currentToken) |
Syntax
Visual Basic |
---|
Public Function ListSharesSegmentedAsync ( _
currentToken As FileContinuationToken _
) As IAsyncOperation(Of ShareResultSegment) |
C# |
---|
public IAsyncOperation<ShareResultSegment> ListSharesSegmentedAsync (
FileContinuationToken currentToken
) |
C++ |
---|
public:
IAsyncOperation<ShareResultSegment^>^ ListSharesSegmentedAsync (
FileContinuationToken^ currentToken
) |
J# |
---|
public IAsyncOperation<ShareResultSegment> ListSharesSegmentedAsync (
FileContinuationToken currentToken
) |
JScript |
---|
public function ListSharesSegmentedAsync (
currentToken : FileContinuationToken
) : IAsyncOperation<ShareResultSegment> |
Parameters
- 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