Microsoft.Identity.Client.OAuth2.Throttling.ThrottlingCache
class ThrottlingCache
namespace Microsoft.Identity.Client.OAuth2.Throttling
{
internal class ThrottlingCache
{
public ThrottlingCache(int? customCleanupIntervalMs = default(int?));
public void AddAndCleanup(string key, ThrottlingCacheEntry entry, ILoggerAdapter logger);
public bool TryGetOrRemoveExpired(string key, ILoggerAdapter logger, out MsalServiceException ex);
public void Clear();
public bool IsEmpty();
}
}