HybridDictionary.IsReadOnly Property
Gets a value indicating whether the HybridDictionary is read-only.
[Visual Basic] Public Overridable ReadOnly Property IsReadOnly As Boolean _ Implements IDictionary.IsReadOnly [C#] public virtual bool IsReadOnly {get;} [C++] public: __property virtual bool get_IsReadOnly(); [JScript] public function get IsReadOnly() : Boolean;
Property Value
This property always returns false.
Implements
Remarks
HybridDictionary implements the IsReadOnly property because it is required by the System.Collections.IDictionary interface.
A collection that is read-only does not allow the addition, removal, or modification of elements after the collection is created.
A collection that is read-only is simply a collection with a wrapper that prevents modifying the collection; therefore, if changes are made to the underlying collection, the read-only collection reflects those changes.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
See Also
HybridDictionary Class | HybridDictionary Members | System.Collections.Specialized Namespace