AcquireTokenForManagedIdentityParameterBuilder.WithForceRefresh Method

Definition

Specifies if the token request will ignore the access token in the application token cache and will attempt to acquire a new access token for managed identity. By default the token is taken from the application token cache (forceRefresh=false)

public Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder WithForceRefresh (bool forceRefresh);
member this.WithForceRefresh : bool -> Microsoft.Identity.Client.AcquireTokenForManagedIdentityParameterBuilder
Public Function WithForceRefresh (forceRefresh As Boolean) As AcquireTokenForManagedIdentityParameterBuilder

Parameters

forceRefresh
Boolean

If true, the request will ignore the token cache. The default is false

Returns

The builder to chain the .With methods

Applies to