RowDefinitionCollection::IsSynchronized Property
.NET Framework (current version)
Gets a value that indicates whether access to this RowDefinitionCollection is synchronized (thread-safe).
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System::Booleantrue if access to this collection is synchronized; otherwise, false.
Implements
ICollection::IsSynchronizedEnumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads can still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions that result from changes made by other threads.
.NET Framework
Available since 3.0
Available since 3.0
Show: