KeyVaultClient.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> 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
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