Microsoft.Identity.Client.CacheRefreshReason
Specifies the reason for fetching the access token from the identity provider when using AcquireTokenSilent, AcquireTokenForClient or AcquireTokenOnBehalfOf.
namespace Microsoft.Identity.Client
{
public enum CacheRefreshReason
{
NotApplicable,
ForceRefreshOrClaims,
NoCachedAccessToken,
Expired,
ProactivelyRefreshed,
CacheDisabled
}
}