AcquireTokenForClientParameterBuilder.WithForceRefresh(Boolean) 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 using client credentials. By default the token is taken from the application token cache (forceRefresh=false)

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

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