pmMDA.NET

LinkedCollection.IsSynchronized Property

[This is preliminary documentation and subject to change.]

Gets a value indicating whether access to this linked collection is synchronized (thread-safe).

public bool IsSynchronized {get;}

Property Value

always false.

Implements

ICollection.IsSynchronized

Remarks

SyncRoot returns an object, which can be used to synchronize access to this linked collection. Enumerating through a linked collection is intrinsically not a thread-safe procedure. To guarantee thread safety during enumeration, you can either lock the linked collection during the entire enumeration using SyncRoot or catch the exceptions resulting from changes made by other threads.

See Also

LinkedCollection Class | PmMda.Net.Dog.Paging Namespace