SemaphoreSlim.CurrentCount 属性

定义

获取可以输入 SemaphoreSlim 对象的剩余线程数。

public:
 property int CurrentCount { int get(); };
public int CurrentCount { get; }
member this.CurrentCount : int
Public ReadOnly Property CurrentCount As Integer

属性值

可以输入信号量的剩余线程数。

注解

属性的初始值 CurrentCount 是通过对 类构造函数的调用设置的 SemaphoreSlim 。 每次调用 或 WaitAsync 方法都会递减,每次调用 WaitRelease 方法时递增。

适用于

另请参阅