AcquireTokenForManagedIdentityParameterBuilder.WithForceRefresh Method
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.
Specifies if the client application should ignore access tokens when reading the token cache. New tokens will still be written to the application token cache. 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 cached access tokens on read, but will still write them to the cache once obtained from the Identity Provider. The default is false
Returns
The builder to chain the .With methods
Remarks
Do not use this flag except in well understood cases. Identity Providers will throttle clients that issue too many similar token requests.