ConfidentialClientApplicationBuilderExtensions.WithAppTokenProvider Method

Definition

Allows setting a callback which returns an access token, based on the passed-in parameters. MSAL will pass in its authentication parameters to the callback and it is expected that the callback will construct a AppTokenProviderResult and return it to MSAL. MSAL will cache the token response the same way it does for other authentication results.

public static Microsoft.Identity.Client.ConfidentialClientApplicationBuilder WithAppTokenProvider (this Microsoft.Identity.Client.ConfidentialClientApplicationBuilder builder, Func<Microsoft.Identity.Client.Extensibility.AppTokenProviderParameters,System.Threading.Tasks.Task<Microsoft.Identity.Client.Extensibility.AppTokenProviderResult>> appTokenProvider);
static member WithAppTokenProvider : Microsoft.Identity.Client.ConfidentialClientApplicationBuilder * Func<Microsoft.Identity.Client.Extensibility.AppTokenProviderParameters, System.Threading.Tasks.Task<Microsoft.Identity.Client.Extensibility.AppTokenProviderResult>> -> Microsoft.Identity.Client.ConfidentialClientApplicationBuilder
<Extension()>
Public Function WithAppTokenProvider (builder As ConfidentialClientApplicationBuilder, appTokenProvider As Func(Of AppTokenProviderParameters, Task(Of AppTokenProviderResult))) As ConfidentialClientApplicationBuilder

Parameters

Returns

Remarks

This is part of an extensibility mechanism designed to be used only by Azure SDK in order to enhance managed identity support. Only client_credential flow is supported.

Applies to