CountdownEvent.IsSet Propriedade
Definição
Indica se a contagem atual do objeto CountdownEvent chegou a zero.Indicates whether the CountdownEvent object's current count has reached zero.
public:
property bool IsSet { bool get(); };
public bool IsSet { get; }
member this.IsSet : bool
Public ReadOnly Property IsSet As Boolean
Valor da propriedade
true se a contagem atual for zero; caso contrário, false .true if the current count is zero; otherwise, false.
Comentários
O não CountdownEvent gera um evento quando a contagem regressiva atingiu zero.The CountdownEvent does not raise an event when the countdown has reached zero. Em vez disso, a CurrentCount propriedade é igual a zero e a IsSet propriedade é igual a true .Instead, the CurrentCount property equals zero, and the IsSet property equals true.