<PackageReference Include="Microsoft.Identity.Client" Version="4.85.0" />

Microsoft.Identity.Client.OAuth2.Throttling.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); } }