SynchronizedReadOnlyCollection<T> Constructor (Object^, IEnumerable<T>^)

 

Initializes a new instance of the SynchronizedReadOnlyCollection<T> class from a specified enumerable list of elements and with the object used to synchronize access to the thread-safe, read-only collection.

Namespace:   System.Collections.Generic
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
SynchronizedReadOnlyCollection(
	Object^ syncRoot,
	IEnumerable<T>^ list
)

Parameters

syncRoot
Type: System::Object^

The object used to synchronize access to the thread-safe, read-only collection.

list
Type: System.Collections.Generic::IEnumerable<T>^

The IEnumerable<T> collection of elements used to initialize the thread-safe, read-only collection.

Exception Condition
ArgumentNullException

syncRoot or list is null.

.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: