Microsoft.Azure.Commands.Batch.Models.BatchClient.ListNextAccounts C# (CSharp) Method

ListNextAccounts() private method

Lists all accounts in a subscription or in a resource group if its name is specified
private ListNextAccounts ( string NextLink ) : IPage
NextLink string Next link to use when querying for accounts
return IPage
        internal IPage<BatchAccount> ListNextAccounts(string NextLink)
        {
            return BatchManagementClient.BatchAccount.ListNext(NextLink);
        }
BatchClient