<PackageReference Include="Polly" Version="8.5.2" />

Polly.RateLimit.RateLimitRejectedException

public class RateLimitRejectedException : ExecutionRejectedException
Exception thrown when a delegate executed through a IRateLimitPolicy is rate-limited.
namespace Polly.RateLimit { public class RateLimitRejectedException { public TimeSpan RetryAfter { get; } public RateLimitRejectedException(); public RateLimitRejectedException(string message); public RateLimitRejectedException(string message, Exception inner); public RateLimitRejectedException(TimeSpan retryAfter); public RateLimitRejectedException(TimeSpan retryAfter, Exception innerException); public RateLimitRejectedException(TimeSpan retryAfter, string message); public RateLimitRejectedException(TimeSpan retryAfter, string message, Exception innerException); } }