Share via


KeyVaultClient.GetKeysNextAsync Method (String, CancellationToken)

 

Asynchronously list the next page of keys.

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

Syntax

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

Parameters

  • nextLink
    Type: System.String

    The nextLink value from a previous call to GetKeys or GetKeysNext.

Return Value

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

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

See Also

KeyVaultClient Class
Microsoft.Azure.KeyVault Namespace

Return to top