共用方式為


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 資訊來產生名為 ProfileCommon 的類別,其衍生自 ProfileBase 。 類別可讓您存取和修改個別使用者設定檔的值。

類別 ProfileCommon 定義是以組態檔區段子區段中 profile 定義的 properties 屬性為基礎。 您為 類別實例 ProfilePropertySettings 指定的屬性值將用來定義 類別中的 ProfileCommon 相關聯屬性。

適用於

另請參閱