4 overrides of TryReplenish
System.Threading.RateLimiting (4)
System\Threading\RateLimiting\ChainedReplenishingRateLimiter.cs (1)
57
public override bool
TryReplenish
()
System\Threading\RateLimiting\FixedWindowRateLimiter.cs (1)
271
public override bool
TryReplenish
()
System\Threading\RateLimiting\SlidingWindowRateLimiter.cs (1)
261
public override bool
TryReplenish
()
System\Threading\RateLimiting\TokenBucketRateLimiter.cs (1)
264
public override bool
TryReplenish
()
4 references to TryReplenish
System.Threading.RateLimiting (4)
System\Threading\RateLimiting\ChainedReplenishingRateLimiter.cs (1)
67
if (limiter.
TryReplenish
())
System\Threading\RateLimiting\DefaultPartitionedRateLimiter.cs (1)
258
replenishingRateLimiter.
TryReplenish
();
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.
19
/// its tokens or if it expects an external source to regularly call <see cref="
TryReplenish
"/>.