SpinLock.Exit Method (Boolean)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Releases the lock.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- useMemoryBarrier
- Type: System.Boolean
A Boolean value that indicates whether a memory fence should be issued in order to immediately publish the exit operation to other threads.
| Exception | Condition |
|---|---|
| SynchronizationLockException | Thread ownership tracking is enabled, and the current thread is not the owner of this lock. |
Calling Exit with the useMemoryBarrier argument set to true will improve the fairness of the lock at the expense of some performance. The default Enter overload behaves as if specifying true for useMemoryBarrier.
If you call Exit without having first called Enter the internal state of the SpinLock can become corrupted.