5 references to Create
Microsoft.AspNetCore.RateLimiting (1)
RateLimitingMiddleware.cs (1)
255return PartitionedRateLimiter.Create<HttpContext, DefaultKeyType>(context =>
RateLimitingSample (1)
Program.cs (1)
37options.GlobalLimiter = PartitionedRateLimiter.Create<HttpContext, string>(context =>
System.Threading.RateLimiting (3)
System\Threading\RateLimiting\RateLimitPartition.cs (1)
7/// Contains methods used in <see cref="PartitionedRateLimiter.Create"/> to assist in the creation of partitions for your rate limiter.
System\Threading\RateLimiting\RateLimitPartition.T.cs (2)
7/// Type returned by <see cref="RateLimitPartition.Get"/> methods to be used by <see cref="PartitionedRateLimiter.Create"/> to know what partitions are configured. 13/// Constructs the <see cref="RateLimitPartition{TKey}"/> for use in <see cref="PartitionedRateLimiter.Create"/>.