CountdownEvent.Reset Method (Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Resets the InitialCount property to a specified value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- count
- Type: System.Int32
The number of signals required to set the CountdownEvent.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The current instance has alread been disposed. |
| ArgumentOutOfRangeException | count is less than 0. |
This method resets InitialCount for all subsequent accesses of the property on the current instance. Unlike most of the members of CountdownEvent, Reset is not thread-safe and may not be used concurrently with other members of this instance.