Share via


KeyVaultSecurityKey.AuthenticationCallback Delegate

Definition

The authentication callback delegate which is to be implemented by the client code.

public delegate System.Threading.Tasks.Task<string> KeyVaultSecurityKey.AuthenticationCallback(string authority, string resource, string scope);
type KeyVaultSecurityKey.AuthenticationCallback = delegate of string * string * string -> Task<string>
Public Delegate Function KeyVaultSecurityKey.AuthenticationCallback(authority As String, resource As String, scope As String) As Task(Of String) 

Parameters

authority
String

Identifier of the authority, a URL.

resource
String

Identifier of the target resource that is the recipient of the requested token, a URL.

scope
String

The scope of the authentication request.

Return Value

An access token for Azure Key Vault.

Applies to