This documentation is archived and is not being maintained.

PersonalizationStateInfoCollection::IsSynchronized Property

Gets a value indicating whether access to the PersonalizationStateInfoCollection collection is synchronized (thread safe).

Namespace:  System.Web.UI.WebControls.WebParts
Assembly:  System.Web (in System.Web.dll)

public:
virtual property bool IsSynchronized {
	bool get () sealed;
}

Property Value

Type: System::Boolean
true if access to the collection is synchronized; otherwise, false. The value is always false for PersonalizationStateInfoCollection objects created by the Web Parts control set.

Implements

ICollection::IsSynchronized

Enumerating 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 resulting from changes made by other threads.

The SyncRoot property returns an object, which can be used to synchronize access to the PersonalizationStateInfoCollection.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: