Microsoft.Identity.Client.OAuth2.Throttling.IThrottlingProvider
interface IThrottlingProvider
namespace Microsoft.Identity.Client.OAuth2.Throttling
{
internal interface IThrottlingProvider
{
void TryThrottle(AuthenticationRequestParameters requestParams, IReadOnlyDictionary<string, string> bodyParams);
void RecordException(AuthenticationRequestParameters requestParams, IReadOnlyDictionary<string, string> bodyParams, MsalServiceException ex);
void ResetCache();
}
}