CountdownEvent.AddCount Method (Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Increments the CountdownEvent's current count by a specified value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- signalCount
- Type: System.Int32
The value by which to increase CurrentCount.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The current instance has already been disposed. |
| ArgumentOutOfRangeException | signalCount is less than or equal to 0. |
| InvalidOperationException | The current instance is already set. -or- CurrentCount is equal to or greater than MaxValue after count is incremented by signalCount. |
Show: