C# Class Microsoft.Cci.GlobalLock

Static class encasulating the global lock object.
显示文件 Open project: visualmutator/visualmutator

Public Properties

Property Type Description
LockingObject object

Property Details

LockingObject public_oe static_oe property

All synchronization code should exclusively use this lock object, hence making it trivial to ensure that there are no deadlocks. It also means that the lock should never be held for long. In particular, no code holding this lock should ever wait on another thread.
public static object LockingObject
return object