3 overrides of IsAutoReplenishing
System.Threading.RateLimiting (3)
System\Threading\RateLimiting\FixedWindowRateLimiter.cs (1)
38public override bool IsAutoReplenishing => _options.AutoReplenishment;
System\Threading\RateLimiting\SlidingWindowRateLimiter.cs (1)
42public override bool IsAutoReplenishing => _options.AutoReplenishment;
System\Threading\RateLimiting\TokenBucketRateLimiter.cs (1)
40public override bool IsAutoReplenishing => _options.AutoReplenishment;
2 references to IsAutoReplenishing
System.Threading.RateLimiting (2)
System\Threading\RateLimiting\ReplenishingRateLimiter.cs (2)
13/// If <see cref="IsAutoReplenishing"/> is <see langword="false"/> then this is how often <see cref="TryReplenish"/> should be called. 27/// Generally returns <see langword="false"/> if <see cref="IsAutoReplenishing"/> is enabled