PermissionSet.IsReadOnly プロパティ

定義

コレクションが読み取り専用かどうかを示す値を取得します。

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

プロパティ値

常に false

次のコード例は、 プロパティによって返される値を IsReadOnly 示しています。 このコード例は、PermissionSet クラスのために提供されている大規模な例の一部です。

// 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)

注釈

PermissionSet 読み取り専用にできないため、このプロパティは常に falseです。

適用対象