Share via


ThreadSafeReadOnlyObservableCollection<T> Class

 

Represents a read-only observable collection that is thread safe.

Namespace:   Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly:  ProviderFramework (in ProviderFramework.dll)

Inheritance Hierarchy

System.Object
  Microsoft.WindowsServerSolutions.Common.ProviderFramework.ThreadSafeReadOnlyObservableCollection<T>
    Microsoft.WindowsServerSolutions.Common.Devices.ReadOnlyDeviceInfoCollection
    Microsoft.WindowsServerSolutions.NetworkHealth.AlertFramework.ReadOnlyAlertCollection

Syntax

public class ThreadSafeReadOnlyObservableCollection<T> : IList<T>, 
    ICollection<T>, IEnumerable<T>, IEnumerable, IList, ICollection, 
    INotifyPropertyChanged, INotifyCollectionChanged
generic<typename T>
public ref class ThreadSafeReadOnlyObservableCollection : IList<T>, 
    ICollection<T>, IEnumerable<T>, IEnumerable, IList, ICollection, 
    INotifyPropertyChanged, INotifyCollectionChanged
Public Class ThreadSafeReadOnlyObservableCollection(Of T)
    Implements IList(Of T), ICollection(Of T), IEnumerable(Of T), IEnumerable,
    IList, ICollection, INotifyPropertyChanged, INotifyCollectionChanged

Type Parameters

  • T
    The type of elements in the collection.

Constructors

Name Description
System_CAPS_pubmethod ThreadSafeReadOnlyObservableCollection<T>(ObservableCollection<T>)

Initializes a new instance of the ThreadSafeReadOnlyObservableCollection<T> class.

Properties

Name Description
System_CAPS_pubproperty Count

Gets the number of elements in the collection.

System_CAPS_pubproperty IsReadOnly

Indicates whether the collection is read only.

System_CAPS_pubproperty Item[Int32]

Gets the item at the specified index from the collection.

Methods

Name Description
System_CAPS_pubmethod Contains(T)

Determines whether the collection contains a specified item.

System_CAPS_pubmethod Contains(Object)

Determines whether the collection contains a specified value.

System_CAPS_pubmethod CopyTo(T[], Int32)

Copies the elements of the collection to an array, starting at a specified index.

System_CAPS_pubmethod CopyTo(Array, Int32)

Copies the elements of the collection to an array, starting at a specified index.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetEnumerator()

Returns an enumerator that iterates through a collection.

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod IndexOf(T)

Returns the index of the first occurrence of an object in the collection.

System_CAPS_pubmethod IndexOf(Object)

Returns the index of the first occurrence of an object in the collection.

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod Remove(T)

Removes the specified item from the collection.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Events

Name Description
System_CAPS_pubevent CollectionChanged

Represents an event that occurs when an item is added or removed.

System_CAPS_pubevent PropertyChanged

Represents an event that occurs when a property value changes.

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod ICollection<T>.Add(T)

Adds the specified item to the collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethod ICollection<T>.Clear()

Clears the collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList<T>.Insert(Int32, T)

Inserts the specified item into the collection at the specified index.

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList<T>.RemoveAt(Int32)

Removes the item at the specified index from the collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethod IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Add(Object)

Adds the specified value to the collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Clear()

Clears the collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Insert(Int32, Object)

Inserts the specified value into the collection at the specified index.

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.Remove(Object)

Removes the specified value from the collection.

System_CAPS_pubinterfaceSystem_CAPS_privmethod IList.RemoveAt(Int32)

Removes the value at the specified index from the collection.

System_CAPS_pubinterfaceSystem_CAPS_privproperty ICollection.IsSynchronized

Indicates whether the collection is synchronized.

System_CAPS_pubinterfaceSystem_CAPS_privproperty ICollection.SyncRoot

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

System_CAPS_pubinterfaceSystem_CAPS_privproperty IList.IsFixedSize

Indicates whether the collection is a fixed size.

System_CAPS_pubinterfaceSystem_CAPS_privproperty IList.Item[Int32]

Gets the item at the specified index from the collection.

Thread Safety

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace

Return to top