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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET