KeyVaultSecurityKey.AuthenticationCallback Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.