次の方法で共有


ProfilePropertySettings.ReadOnly プロパティ

定義

動的に生成された 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

プロパティ値

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 プロパティに基づいています。 クラスのインスタンスに指定するプロパティ値は、クラス内ProfileCommonProfilePropertySettings関連付けられたプロパティを定義するために使用されます。

適用対象

こちらもご覧ください