Monitor Methods

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

The Monitor type exposes the following members.

Methods

  Name Description
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 Enter(Object) Acquires an exclusive lock on the specified object.
Public methodStatic memberSupported by Silverlight for Windows Phone Enter(Object, Boolean%) Acquires an exclusive lock on the specified object, and atomically sets a value that indicates whether the lock was taken.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 Exit Releases an exclusive lock on the specified object.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 Pulse Notifies a thread in the waiting queue of a change in the locked object's state.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 PulseAll Notifies all waiting threads of a change in the object's state.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 TryEnter(Object) Attempts to acquire an exclusive lock on the specified object.
Public methodStatic memberSupported by Silverlight for Windows Phone TryEnter(Object, Boolean%) Attempts to acquire an exclusive lock on the specified object, and atomically sets a value that indicates whether the lock was taken.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 TryEnter(Object, Int32) Attempts, for the specified number of milliseconds, to acquire an exclusive lock on the specified object.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 TryEnter(Object, TimeSpan) Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object.
Public methodStatic memberSupported by Silverlight for Windows Phone TryEnter(Object, Int32, Boolean%) Attempts, for the specified number of milliseconds, to acquire an exclusive lock on the specified object, and atomically sets a value that indicates whether the lock was taken.
Public methodStatic memberSupported by Silverlight for Windows Phone TryEnter(Object, TimeSpan, Boolean%) Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object, and atomically sets a value that indicates whether the lock was taken.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 Wait(Object) Releases the lock on an object and blocks the current thread until it reacquires the lock.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 Wait(Object, Int32) Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 Wait(Object, TimeSpan) Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue.

Top