.NET 11 Preview 5#12732
Open
gewarren wants to merge 7 commits into
Open
Conversation
gewarren
commented
Jun 10, 2026
| <Docs> | ||
| <summary> | ||
| Specifies whether the <see cref="T:System.Threading.RateLimiting.FixedWindowRateLimiter" /> automatically refreshes counters or if someone else | ||
| Specified whether the <see cref="T:System.Threading.RateLimiting.FixedWindowRateLimiter" /> is automatically refresh counters or if someone else |
Contributor
Author
There was a problem hiding this comment.
Check where this is coming from.
| <typeparam name="TPartitionKey">The type to distinguish partitions with.</typeparam> | ||
| <param name="partitioner">Method called every time an Acquire or AcquireAsync call is made to determine which rate limiter to apply to the request. | ||
| If the <see cref="P:System.Threading.RateLimiting.RateLimitPartition`1.PartitionKey" /> matches a cached entry, then the rate limiter previously used for that key is used. Otherwise, the factory is called to get a new rate limiter.</param> | ||
| <param name="partitioner">Method called every time an Acquire or WaitAsync call is made to figure out what rate limiter to apply to the request. |
| <Docs> | ||
| <summary> | ||
| Disposes the lease. This might free up space on the limiter implementation the lease came from. | ||
| Dispose the lease. This may free up space on the limiter implementation the lease came from. |
| <summary> | ||
| Specifies whether the <see cref="T:System.Threading.RateLimiting.SlidingWindowRateLimiter" /> automatically replenishes request counters or if someone else | ||
| will be calling <see cref="M:System.Threading.RateLimiting.SlidingWindowRateLimiter.TryReplenish" /> to replenish request counters. | ||
| Specified whether the <see cref="T:System.Threading.RateLimiting.SlidingWindowRateLimiter" /> is automatically replenishing request counters or if someone else |
| <Docs> | ||
| <summary> | ||
| Specifies whether the <see cref="T:System.Threading.RateLimiting.TokenBucketRateLimiter" /> automatically replenishes tokens or if someone else | ||
| Specified whether the <see cref="T:System.Threading.RateLimiting.TokenBucketRateLimiter" /> is automatically replenishing tokens or if someone else |
gewarren
commented
Jun 10, 2026
|
|
||
| -or- | ||
|
|
||
| <paramref name="registryRights" /> specifies an invalid value. |
Contributor
Author
There was a problem hiding this comment.
Why is whitespace being added?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #12306.
(View by commit.)