KeyVaultClient.GetSecretsNextAsync Method (String, CancellationToken)
Asynchronously list the next page of secrets.
Namespace: Microsoft.Azure.KeyVault
Assembly: Microsoft.Azure.KeyVault (in Microsoft.Azure.KeyVault.dll)
Syntax
public Task<ListSecretsResponseMessage> GetSecretsNextAsync(
string nextLink,
CancellationToken cancellationToken = null
)
public:
Task<ListSecretsResponseMessage^>^ GetSecretsNextAsync(
String^ nextLink,
CancellationToken cancellationToken = null
)
member GetSecretsNextAsync :
nextLink:string *
cancellationToken:CancellationToken = null -> Task<ListSecretsResponseMessage>
Public Function GetSecretsNextAsync (
nextLink As String,
cancellationToken As CancellationToken
) As Task(Of ListSecretsResponseMessage)
Parameters
nextLink
Type: System.StringThe nextLink value from a previous call to GetSecrets or GetSecretsNext.
cancellationToken
Type: System.Threading.CancellationTokenOptional cancellation token.
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