RateLimitPartition.GetSlidingWindowLimiter<TKey> Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Définit une partition avec un SlidingWindowRateLimiter avec le donné SlidingWindowRateLimiterOptions.
public static System.Threading.RateLimiting.RateLimitPartition<TKey> GetSlidingWindowLimiter<TKey>(TKey partitionKey, Func<TKey,System.Threading.RateLimiting.SlidingWindowRateLimiterOptions> factory);
static member GetSlidingWindowLimiter : 'Key * Func<'Key, System.Threading.RateLimiting.SlidingWindowRateLimiterOptions> -> System.Threading.RateLimiting.RateLimitPartition<'Key>
Public Shared Function GetSlidingWindowLimiter(Of TKey) (partitionKey As TKey, factory As Func(Of TKey, SlidingWindowRateLimiterOptions)) As RateLimitPartition(Of TKey)
Paramètres de type
- TKey
Type avec lequel distinguer les partitions.
Paramètres
- partitionKey
- TKey
Clé spécifique pour cette partition.
- factory
- Func<TKey,SlidingWindowRateLimiterOptions>
Fonction appelée lorsqu’un limiteur de débit pour le donné partitionKey
est nécessaire. Cela peut retourner le même instance de SlidingWindowRateLimiterOptions sur différents appels.
Retours
Remarques
Définissez AutoReplenishment sur false
pour enregistrer une allocation. Cette méthode crée un nouveau type d’options et la définit AutoReplenishmentfalse
sur dans le cas contraire.