CountdownEvent.IsSet 属性

定义

表示 CountdownEvent 对象的当前计数是否已归零。

public:
 property bool IsSet { bool get(); };
public bool IsSet { get; }
member this.IsSet : bool
Public ReadOnly Property IsSet As Boolean

属性值

如果当前的计数为零,则为 true;否则为 false

注解

当倒计时达到零时, CountdownEvent 不会引发事件。 相反, CurrentCount 属性等于零, IsSet 属性等于 true

适用于