Click or drag to resize
ImagesVolume100_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.Resources
Assembly: VirtualRadar.Resources (in VirtualRadar.Resources.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static Object Volume100_SyncLock { get; }

Property Value

Type: Object
Remarks
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 Volume100 to make a thread-clone of the image and use that in your image manipulations.
See Also