AntDeviceCollectionCollectionLock Field

The collection lock.

Definition

Namespace: SmallEarthTech.AntPlus
Assembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 5.1.1+506fd73c3b72ad19a414fa5c6d86694cac54d86e
C#
public Object CollectionLock

Field Value

Object

Remarks

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 -
C#
BindingOperations.EnableCollectionSynchronization(App.AntDevices, App.AntDevices.CollectionLock);
This ensures changes to the collection are thread safe and marshalled on the UI thread.

See Also