PropertyCollection::IDictionary::IsReadOnly Property
.NET Framework (current version)
Gets a value indicating whether the IDictionary object is read-only.
Assembly: System.DirectoryServices (in System.DirectoryServices.dll)
private: property bool IsReadOnly { virtual bool get() sealed = IDictionary::IsReadOnly::get; }
Implements
IDictionary::IsReadOnlyA collection that is read-only does not allow the addition, removal, or modification of elements after the collection is created.
The following example shows how to implement the IsReadOnly property. This code example is part of a larger example provided for the IDictionary class.
.NET Framework
Available since 2.0
Available since 2.0
Show: