Monitor.TryEnter Method (Object, TimeSpan)
.NET Framework 2.0
Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object.
Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Monitor Members
System.Threading Namespace
Thread
Monitors
Assembly: mscorlib (in mscorlib.dll)
public static boolean TryEnter ( Object obj, TimeSpan timeout )
public static function TryEnter ( obj : Object, timeout : TimeSpan ) : boolean
Parameters
- obj
The object on which to acquire the lock.
- timeout
A TimeSpan representing the amount of time to wait for the lock. A value of –1 millisecond specifies an infinite wait.
Return Value
true if the current thread acquires the lock without blocking; otherwise, false.Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
Monitor ClassMonitor Members
System.Threading Namespace
Thread
Other Resources
Managed ThreadingMonitors
Note