SynchronizationLockException Class
.NET Framework 2.0
The exception that is thrown when a method requires the caller to own the lock on a given Monitor, and the method is invoked by a caller that does not own that lock.
Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public Class SynchronizationLockException Inherits SystemException 'Usage Dim instance As SynchronizationLockException
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public class SynchronizationLockException extends SystemException
SerializableAttribute ComVisibleAttribute(true) public class SynchronizationLockException extends SystemException
SynchronizationLockException is thrown by calling the Exit, Pulse, PulseAll, and Wait methods of the Monitor class from an unsynchronized block of code.
SynchronizationLockException uses the HRESULT COR_E_SYNCHRONIZATIONLOCK, which has the value 0x80131518.
For a list of initial property values for an instance of SynchronizationLockException, see the SynchronizationLockException constructors.
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.
Community Additions
ADD
Show: