Freigeben über


IDictionary.IsReadOnly-Eigenschaft

Ruft einen Wert ab, der angibt, ob das IDictionary-Objekt schreibgeschützt ist.

Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)

Syntax

'Declaration
ReadOnly Property IsReadOnly As Boolean
'Usage
Dim instance As IDictionary
Dim value As Boolean

value = instance.IsReadOnly
bool IsReadOnly { get; }
property bool IsReadOnly {
    bool get ();
}
/** @property */
boolean get_IsReadOnly ()
function get IsReadOnly () : boolean

Eigenschaftenwert

true, wenn das IDictionary-Objekt schreibgeschützt ist, andernfalls false.

Hinweise

Eine schreibgeschützte Auflistung gestattet nach dem Erstellen der Auflistung weder das Hinzufügen noch das Ändern oder Entfernen von Elementen.

Beispiel

Das folgende Codebeispiel veranschaulicht das Implementieren der IsReadOnly-Eigenschaft. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die IDictionary-Klasse.

Public ReadOnly Property IsReadOnly() As Boolean Implements IDictionary.IsReadOnly
    Get
        Return False
    End Get
End Property
public bool IsReadOnly { get { return false; } }
public:
    property virtual bool IsReadOnly
    {
        bool get()
        {
            return false;
        }
    }

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

IDictionary-Schnittstelle
IDictionary-Member
System.Collections-Namespace