SemaphoreSlim Constructor (Int32)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the SemaphoreSlim class, specifying the initial number of requests that can be granted concurrently.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- initialCount
- Type: System.Int32
The initial number of requests for the semaphore that can be granted concurrently.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | initialCount is less than 0. |
Show: