3 writes to Window
Microsoft.AspNetCore.RateLimiting.Tests (1)
RateLimitingMiddlewareTests.cs (1)
228options.Window = TimeSpan.FromSeconds(10);
System.Threading.RateLimiting (2)
System\Threading\RateLimiting\FixedWindowRateLimiter.cs (1)
72Window = options.Window,
System\Threading\RateLimiting\RateLimitPartition.cs (1)
147Window = options.Window,
9 references to Window
System.Threading.RateLimiting (9)
System\Threading\RateLimiting\FixedWindowRateLimiter.cs (8)
42public override TimeSpan ReplenishmentPeriod => _options.Window; 62if (options.Window <= TimeSpan.Zero) 64throw new ArgumentException(SR.Format(SR.ShouldBeGreaterThanTimeSpan0, nameof(options.Window)), nameof(options)); 72Window = options.Window, 82_renewTimer = new Timer(Replenish, this, _options.Window, _options.Window); 219return new FixedWindowLease(false, TimeSpan.FromTicks(_options.Window.Ticks * replenishWindow)); 294if (((nowTicks - _lastReplenishmentTick) * TickFrequency) < _options.Window.Ticks && !_options.AutoReplenishment)
System\Threading\RateLimiting\RateLimitPartition.cs (1)
147Window = options.Window,