CountdownEvent.IsSet 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示 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
。