Condividi tramite


TokenProvider.AuthenticationCallback Delegate

Definition

A user supplied handler that would be invoked to obtain the AAD access token string.

public delegate System.Threading.Tasks.Task<string> TokenProvider.AuthenticationCallback(string audience, string authority, object state);
type TokenProvider.AuthenticationCallback = delegate of string * string * obj -> Task<string>
Public Delegate Function TokenProvider.AuthenticationCallback(audience As String, authority As String, state As Object) As Task(Of String) 

Parameters

audience
String

The AAD resource URI which the access token is authorized. For example: https://relay.azure.net/

authority
String

Address of the authority to issue the AAD token.

state
Object

State to be delivered to the callback.

Return Value

Applies to