PermissionSet.IsReadOnly Proprietà

Definizione

Ottiene un valore che indica se la raccolta è di sola lettura.

public:
 virtual property bool IsReadOnly { bool get(); };
public virtual bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public Overridable ReadOnly Property IsReadOnly As Boolean

Valore della proprietà

Boolean

Sempre false.

Esempio

Nell'esempio IsReadOnly di codice seguente viene illustrato il valore restituito dalla proprietà . Questo esempio di codice fa parte di un esempio più grande fornito per 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)

Commenti

Impossibile leggere un oggetto PermissionSet , quindi questa proprietà è sempre false.

Si applica a