SemaphoreSlim Constructor (Int32, 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 and maximum 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.
- maxCount
- Type: System.Int32
The maximum number of requests for the semaphore that can be granted concurrently.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | initialCount is less than 0, or initialCount is greater than maxCount, or maxCount is equal to or less than 0. |
Show: