UnknownDeviceCollectionLock Field
The collection lock.
Namespace: SmallEarthTech.AntPlus.DeviceProfilesAssembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 6.0.0+3fbe181bca5f5ec97a9a018f9fcefae55701bc33
public Object CollectionLock
Public CollectionLock As Object
public:
Object^ CollectionLock
val mutable CollectionLock: Object
Field Value
Object
An application should use the collection lock to ensure thread safe access to the
collection. For example, the code behind for a WPF window should include -
BindingOperations.EnableCollectionSynchronization(unknownDevice.DataPages, unknownDevice.CollectionLock);
This ensures changes to the collection are thread safe and marshalled on the UI thread.