Monitor.TryEnter Method (Object, TimeSpan)
.NET Framework 3.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
Monitor
Assembly: mscorlib (in mscorlib.dll)
public static boolean TryEnter ( Object obj, TimeSpan timeout )
public static function TryEnter ( obj : Object, timeout : TimeSpan ) : boolean
Not applicable.
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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Reference
Monitor ClassMonitor Members
System.Threading Namespace
Thread
Other Resources
Managed ThreadingMonitor
Note: