Share via


ApplicationDomainCollection.System.Collections.ICollection.SyncRoot Property

Gets an object that can be used to synchronize access to the collection.

Namespace: Microsoft.Web.Administration
Assembly: Microsoft.Web.Administration (in microsoft.web.administration.dll)

Syntax

'Declaration
Private ReadOnly Property System.Collections.ICollection.SyncRoot As Object Implements ICollection.SyncRoot
'Usage
Dim instance As ApplicationDomainCollection
Dim value As Object

value = CType(instance, ICollection).SyncRoot
Object ICollection.SyncRoot { get; }
private:
virtual property Object^ System.Collections.ICollection.SyncRoot {
    Object^ get () sealed = ICollection::SyncRoot::get;
}
Not applicable.

Property Value

An object that can be used to synchronize access to the collection.

Remarks

Enumerating through a collection is intrinsically not a thread-safe procedure. In the rare case where enumeration contends with write accesses, you can lock the collection during the whole enumeration. To let the collection to be accessed by multiple threads for reading and writing, you must implement your own synchronization.

System.Collections.ICollection.SyncRoot returns an object that can be used to synchronize access to the collection. Synchronization is effective only if all threads lock this object before accessing the collection.

Retrieving the value of this property is an O(1) operation.

Platforms

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

ApplicationDomainCollection Class
ApplicationDomainCollection Members
Microsoft.Web.Administration Namespace