Returns the mutex
Syntax
| Visual Basic (Declaration) | |
|---|
Public ReadOnly Property MutexHandle As Mutex |
| C# | |
|---|
public Mutex MutexHandle {get;} |
Example
Library/Library.Test/LockingTests/TestMutexLock.cs
| C# | Copy Code |
|---|
using (Mutex mtx = new Mutex())
{
Thread t = new Thread(
delegate()
{ GC.KeepAlive(new MutexLock(1, mtx)); }
);
t.Start();
t.Join();
//So the previous thread abandoned the mutex...
using (MutexLock lck = new MutexLock(mtx))
{
Assert.IsTrue(lck.WasAbandonded);
Assert.AreEqual(mtx, lck.MutexHandle);
}
} |
| VB.NET | Copy Code |
|---|
Using mtx As New Mutex()
Dim t As New Thread(Function() Do
GC.KeepAlive(New MutexLock(1, mtx))
End Function)
t.Start()
t.Join()
'So the previous thread abandoned the mutex...
Using lck As New MutexLock(mtx)
Assert.IsTrue(lck.WasAbandonded)
Assert.AreEqual(mtx, lck.MutexHandle)
End Using
End Using |
Requirements
Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7
See Also