ReaderWriterLock::UpgradeToWriterLock Method (TimeSpan)
Upgrades a reader lock to the writer lock, using a TimeSpan value for the time-out.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- timeout
-
Type:
System::TimeSpan
The TimeSpan specifying the time-out period.
| Exception | Condition |
|---|---|
| ApplicationException | timeout expires before the lock request is granted. |
| ArgumentOutOfRangeException | timeout specifies a negative value other than -1 milliseconds. |
When a thread calls UpgradeToWriterLock the reader lock is released, regardless of the lock count, and the thread goes to the end of the queue for the writer lock. Thus, other threads might write to the resource before the thread that requested the upgrade is granted the writer lock.
Important |
|---|
The time-out exception is not thrown until the thread that called the UpgradeToWriterLock method can reacquire the reader lock. If there are no other threads waiting for the writer lock, this happens immediately. However, if another thread is queued for the writer lock, the thread that called the UpgradeToWriterLock method cannot reacquire the reader lock until all current readers have released their locks, and one thread has acquired and released the writer lock. This is true even if the other thread that requested the writer lock requested it after the current thread called the UpgradeToWriterLock method. |
To restore the lock state, call DowngradeFromWriterLock using the LockCookie returned by UpgradeToWriterLock. Do not use this LockCookie with RestoreLock.
When a thread has no reader lock, do not use UpgradeToWriterLock. Use AcquireWriterLock instead.
For valid time-out values, see ReaderWriterLock.
Available since 1.1
