RateLimiterOptionsExtensions.AddFixedWindowLimiter Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Registra un nuovo FixedWindowRateLimiter oggetto con l'oggetto specificato FixedWindowRateLimiterOptions nell'applicazione. Il limiter può essere aggiunto a un endpoint tramite RequireRateLimiting<TBuilder>(TBuilder, String)o tramite .EnableRateLimitingAttribute
public static Microsoft.AspNetCore.RateLimiting.RateLimiterOptions AddFixedWindowLimiter (this Microsoft.AspNetCore.RateLimiting.RateLimiterOptions options, string policyName, Action<System.Threading.RateLimiting.FixedWindowRateLimiterOptions> configureOptions);
static member AddFixedWindowLimiter : Microsoft.AspNetCore.RateLimiting.RateLimiterOptions * string * Action<System.Threading.RateLimiting.FixedWindowRateLimiterOptions> -> Microsoft.AspNetCore.RateLimiting.RateLimiterOptions
<Extension()>
Public Function AddFixedWindowLimiter (options As RateLimiterOptions, policyName As String, configureOptions As Action(Of FixedWindowRateLimiterOptions)) As RateLimiterOptions
Parametri
- options
- RateLimiterOptions
Oggetto RateLimiterOptions a cui aggiungere un limiter.
- policyName
- String
Nome che verrà associato al limiter.
- configureOptions
- Action<FixedWindowRateLimiterOptions>
Callback per configurare l'oggetto FixedWindowRateLimiterOptions da usare per il limiter.
Restituisce
Oggetto RateLimiterOptions.
Commenti
L'impostazione AutoReplenishment non avrà alcun effetto in questo caso, perché il PartitionedRateLimiter limite viene aggiunto a controlla il rifornimento.