FileSharesOperationsExtensions.ListAsync Method

Definition

Lists all shares.

public static System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Storage.Models.FileShareItem>> ListAsync (this Microsoft.Azure.Management.Storage.IFileSharesOperations operations, string resourceGroupName, string accountName, string maxpagesize = default, string filter = default, string expand = default, System.Threading.CancellationToken cancellationToken = default);
static member ListAsync : Microsoft.Azure.Management.Storage.IFileSharesOperations * string * string * string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Management.Storage.Models.FileShareItem>>
<Extension()>
Public Function ListAsync (operations As IFileSharesOperations, resourceGroupName As String, accountName As String, Optional maxpagesize As String = Nothing, Optional filter As String = Nothing, Optional expand As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IPage(Of FileShareItem))

Parameters

operations
IFileSharesOperations

The operations group for this extension method.

resourceGroupName
String

The name of the resource group within the user's subscription. The name is case insensitive.

accountName
String

The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

maxpagesize
String

Optional. Specified maximum number of shares that can be included in the list.

filter
String

Optional. When specified, only share names starting with the filter will be listed.

expand
String

Optional, used to expand the properties within share's properties. Valid values are: deleted, snapshots. Should be passed as a string with delimiter ','

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to