Share via


KeyVaultClient.GetSecretVersionsNextAsync Method (String, CancellationToken)

 

Asynchronously list the next page of versions of a secret.

Namespace:   Microsoft.Azure.KeyVault
Assembly:  Microsoft.Azure.KeyVault (in Microsoft.Azure.KeyVault.dll)

Syntax

public Task<ListSecretsResponseMessage> GetSecretVersionsNextAsync(
    string nextLink,
    CancellationToken cancellationToken = null
)
public:
Task<ListSecretsResponseMessage^>^ GetSecretVersionsNextAsync(
    String^ nextLink,
    CancellationToken cancellationToken = null
)
member GetSecretVersionsNextAsync : 
        nextLink:string *
        cancellationToken:CancellationToken = null -> Task<ListSecretsResponseMessage>
Public Function GetSecretVersionsNextAsync (
    nextLink As String,
    cancellationToken As CancellationToken
) As Task(Of ListSecretsResponseMessage)

Parameters

  • nextLink
    Type: System.String

    The nextLink value from a previous call to GetSecretVersions or GetSecretVersionsNext.

Return Value

Type: System.Threading.Tasks.Task<ListSecretsResponseMessage>

A response message containing a list of secrets in the vault along with a link to the next page of secrets.

See Also

KeyVaultClient Class
Microsoft.Azure.KeyVault Namespace

Return to top