Unknown DeviceCollection Lock Field
The collection lock.
Definition
Namespace: SmallEarthTech.AntPlus.DeviceProfiles
Assembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 7.0.0+09c2d7a7f0bf2c05495d6305ac56abb150641a86
Assembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 7.0.0+09c2d7a7f0bf2c05495d6305ac56abb150641a86
C#
public readonly Object CollectionLockVB
Public ReadOnly CollectionLock As ObjectC++
public:
initonly Object^ CollectionLockF#
val CollectionLock: ObjectField Value
ObjectRemarks
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 -
This ensures changes to the collection are thread safe and marshalled on the UI thread.
C#
BindingOperations.EnableCollectionSynchronization(unknownDevice.DataPages, unknownDevice.CollectionLock);