ImagesCorner_BottomLeft_SyncLock Property |
Gets an object that can be used in a lock() statement on the image to force single-thread access to it while
performing some operation on it.
Namespace: VirtualRadar.ResourcesAssembly: VirtualRadar.Resources (in VirtualRadar.Resources.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static Object Corner_BottomLeft_SyncLock { get; }
Public Shared ReadOnly Property Corner_BottomLeft_SyncLock As Object
Get
public:
static property Object^ Corner_BottomLeft_SyncLock {
Object^ get ();
}
static member Corner_BottomLeft_SyncLock : Object with get
Property Value
Type:
ObjectRemarks
This is a recipe for deadlocking, be careful when using this lock that you do not call anything that
will acquire another lock elsewhere. If in doubt then call
Corner_BottomLeft to make a thread-clone of the
image and use that in your image manipulations.
See Also