SynchronizedReadOnlyCollection(Of T) Properties
.NET Framework (current version)
Namespace:
System.Collections.Generic
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of elements contained in the thread-safe, read-only collection. |
![]() | Item(Int32) | Gets an element from the thread-safe, read-only collection with a specified index. |
![]() | Items | Gets the list of elements contained in the thread-safe, read-only collection. |
| Name | Description | |
|---|---|---|
![]() ![]() | ICollection(Of T).IsReadOnly | This property always returns true because the collection is read-only. |
![]() ![]() | IList(Of T).Item(Int32) | Returns the object in the collection that has the specified index. |
![]() ![]() | ICollection.IsSynchronized | This property always returns true because the collection is thread safe. |
![]() ![]() | ICollection.SyncRoot | Gets the object used to synchronize access to the thread-safe, read-only collection. |
![]() ![]() | IList.IsFixedSize | This property returns true because the read-only collection is always fixed in size. |
![]() ![]() | IList.IsReadOnly | This property always returns true because the collection is read-only. |
![]() ![]() | IList.Item(Int32) | Gets the item at a specified zero-based index. |
Show:



