PermissionSet.IsReadOnly Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur indiquant si la collection est en lecture seule.
public:
virtual property bool IsReadOnly { bool get(); };
public virtual bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public Overridable ReadOnly Property IsReadOnly As Boolean
Valeur de propriété
Toujours false
.
Exemples
L’exemple de code suivant montre la valeur retournée par la IsReadOnly propriété . Cet exemple de code fait partie d’un exemple plus grand fourni pour la PermissionSet classe .
// 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 = " + ps1.IsReadOnly);
' Display the value of the IsReadOnly property.
Console.WriteLine("IsReadOnly property = " & ps1.IsReadOnly)
Remarques
Ne PermissionSet pouvant pas être en lecture seule, cette propriété est toujours false
.