ImagesIPadSplash_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 IPadSplash_SyncLock { get; }
Public Shared ReadOnly Property IPadSplash_SyncLock As Object
Get
public:
static property Object^ IPadSplash_SyncLock {
Object^ get ();
}
static member IPadSplash_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
IPadSplash to make a thread-clone of the
image and use that in your image manipulations.
See Also