KeyVaultClient.AuthenticationCallback Delegate

Definition

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

public delegate System.Threading.Tasks.Task<string> KeyVaultClient.AuthenticationCallback(string authority, string resource, string scope);
type KeyVaultClient.AuthenticationCallback = delegate of string * string * string -> Task<string>
Public Delegate Function KeyVaultClient.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

access token

Applies to