ParticipantsRemaining Property

Task Parallel System.Threading

Gets the number of participants in the barrier that haven’t yet signaled in the current phase.

Namespace:  System.Threading
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property ParticipantsRemaining As Integer
C#
public int ParticipantsRemaining { get; }

Remarks

This could be 0 during a post-phase action delegate execution or if the ParticipantCount is 0.

See Also