TokenProvider.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.
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
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Azure SDK for .NET