PermissionSet.IsReadOnly-Eigenschaft
Ruft einen Wert ab, der angibt, ob die Auflistung schreibgeschützt ist.
Namespace: System.Security
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overridable ReadOnly Property IsReadOnly As Boolean
'Usage
Dim instance As PermissionSet
Dim value As Boolean
value = instance.IsReadOnly
public virtual bool IsReadOnly { get; }
public:
virtual property bool IsReadOnly {
bool get ();
}
/** @property */
public boolean get_IsReadOnly ()
public function get IsReadOnly () : boolean
Eigenschaftenwert
Immer false.
Hinweise
Da ein PermissionSet nicht schreibgeschützt sein kann, hat diese Eigenschaft immer den Wert false.
Beispiel
Im folgenden Codebeispiel wird der von der IsReadOnly-Eigenschaft zurückgegebene Wert veranschaulicht. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die PermissionSet-Klasse.
' Display the value of the IsReadOnly property.
Console.WriteLine("IsReadOnly property = " & ps1.IsReadOnly)
// Display the value of the IsReadOnly property.
Console.WriteLine("IsReadOnly property = " + ps1.IsReadOnly);
// Display the value of the IsReadOnly property.
Console::WriteLine( "IsReadOnly property = {0}", ps1->IsReadOnly );
// Display the value of the IsReadOnly property.
Console.WriteLine(("IsReadOnly property = "
+ System.Convert.ToString(ps1.get_IsReadOnly())));
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, 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
Siehe auch
Referenz
PermissionSet-Klasse
PermissionSet-Member
System.Security-Namespace