Signals that a participant has reached the barrier and waits for all other participants to reach
the barrier as well, using a
32-bit signed integer to measure the time interval, while observing a
CancellationToken.
Namespace:
System.Threading
Assembly:
System.Threading (in System.Threading.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function SignalAndWait ( _
millisecondsTimeout As Integer, _
cancellationToken As CancellationToken _
) As Boolean |
C# |
---|
public bool SignalAndWait(
int millisecondsTimeout,
CancellationToken cancellationToken
) |
Return Value
true if all other participants reached the barrier; otherwise, false.
Exceptions
Exception | Condition |
---|
System..::.ArgumentOutOfRangeException | millisecondsTimeout is a
negative number other than -1, which represents an infinite time-out. |
System..::.InvalidOperationException |
The method was invoked from within a post-phase action, the barrier currently has 0 participants,
or the barrier is being used by more threads than are registered as participants.
|
System..::.OperationCanceledException | cancellationToken has been
canceled. |
System..::.ObjectDisposedException | The current instance has already been
disposed. |
See Also