SemaphoreSlim.CurrentCount Propriété
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.
Obtient le nombre de threads restants qui peuvent accéder à l'objet SemaphoreSlim.
public:
property int CurrentCount { int get(); };
public int CurrentCount { get; }
member this.CurrentCount : int
Public ReadOnly Property CurrentCount As Integer
Valeur de propriété
Nombre de threads restants qui peuvent accéder au sémaphore.
Remarques
La valeur initiale de la CurrentCount propriété est définie par l’appel au constructeur de SemaphoreSlim classe. Elle est décrémentée par chaque appel à la Wait méthode ou WaitAsync et incrémentée par chaque appel à la Release méthode .