KeyVaultClient.GetKeyVersionsNextAsync Method (String, CancellationToken)

 

Asynchronously list the next page of key versions.

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

Syntax

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

Parameters

  • nextLink
    Type: System.String

    The nextLink value from a previous call to GetKeyVersions or GetKeyVersionsNext.

Return Value

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

A response message containing a list of keys along with a link to the next page of keys.

See Also

KeyVaultClient Class
Microsoft.Azure.KeyVault Namespace

Return to top