ProfilePropertySettings.ReadOnly プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
動的に生成された ProfileCommon
クラスの関連付けられているプロパティが読み取り専用かどうかを決定する値を取得または設定します。
public:
property bool ReadOnly { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("readOnly", DefaultValue=false)]
public bool ReadOnly { get; set; }
[<System.Configuration.ConfigurationProperty("readOnly", DefaultValue=false)>]
member this.ReadOnly : bool with get, set
Public Property ReadOnly As Boolean
プロパティ値
true
クラスの関連付けられているプロパティが読み取り専用の場合は ProfileCommon
。それ以外の場合は false
。 既定値は、false
です。
- 属性
例
次のコード例は、ReadOnly プロパティの使用方法を示しています。 このコード例は、ProfileSection クラスのために提供されている大規模な例の一部です。
// Get the current ReadOnly property value.
Console.WriteLine(
"Current ReadOnly value: '{0}'", profilePropertySettings.ReadOnly);
// Set the ReadOnly property to true.
profilePropertySettings.ReadOnly = true;
' Get the current ReadOnly property value.
Console.WriteLine( _
"Current ReadOnly value: '{0}'", profilePropertySettings.ReadOnly)
' Set the ReadOnly property to true.
profilePropertySettings.ReadOnly = true
注釈
実行時に、ASP.NET コンパイル システムは、構成ファイルのセクションでprofile
指定された情報を使用して、派生ProfileBaseしたクラスをProfileCommon
生成します。 このクラスを使用すると、個々のユーザー プロファイルの値にアクセスして変更できます。
クラス定義は ProfileCommon
、構成ファイルのセクションの properties
サブセクションで定義されている profile
プロパティに基づいています。 クラスのインスタンスに指定するプロパティ値は、クラス内ProfileCommon
のProfilePropertySettings関連付けられたプロパティを定義するために使用されます。