Microsoft.Identity.Client.OAuth2.Throttling.ThrottlingCacheEntry
class ThrottlingCacheEntry
namespace Microsoft.Identity.Client.OAuth2.Throttling
{
internal class ThrottlingCacheEntry
{
public MsalServiceException Exception { get; }
public DateTimeOffset CreationTime { get; }
public DateTimeOffset ExpirationTime { get; }
public bool IsExpired { get; }
public ThrottlingCacheEntry(MsalServiceException exception, TimeSpan lifetime);
public ThrottlingCacheEntry(MsalServiceException exception, DateTimeOffset creationTime, DateTimeOffset expirationTime);
}
}