Monitor.TryEnter Method (Object, TimeSpan)
.NET Framework 4
Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System.Object
The object on which to acquire the lock.
- timeout
- Type: System.TimeSpan
A TimeSpan representing the amount of time to wait for the lock. A value of –1 millisecond specifies an infinite wait.
Return Value
Type: System.Booleantrue if the current thread acquires the lock without blocking; otherwise, false.
| Exception | Condition |
|---|---|
| ArgumentNullException |
The obj parameter is null. |
| ArgumentOutOfRangeException |
The value of timeout in milliseconds is negative and is not equal to Infinite (–1 millisecond), or is greater than MaxValue. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note