TokenProvider.CreateAzureActiveDirectoryTokenProvider Method

Definition

Creates an Azure Active Directory token provider.

public static Microsoft.Azure.Relay.TokenProvider CreateAzureActiveDirectoryTokenProvider (Microsoft.Azure.Relay.TokenProvider.AuthenticationCallback authCallback, string authority, object state = default);
static member CreateAzureActiveDirectoryTokenProvider : Microsoft.Azure.Relay.TokenProvider.AuthenticationCallback * string * obj -> Microsoft.Azure.Relay.TokenProvider
Public Shared Function CreateAzureActiveDirectoryTokenProvider (authCallback As TokenProvider.AuthenticationCallback, authority As String, Optional state As Object = Nothing) As TokenProvider

Parameters

authCallback
TokenProvider.AuthenticationCallback

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

authority
String

Address of the authority to issue the AAD token. For example, https://login.microsoftonline.com/{TenantId}

state
Object

State to be delivered to callback.

Returns

The TokenProvider for returning Json web token.

Applies to