共用方式為


ProfilePropertySettings.Name 屬性

定義

取得或設定動態產生之 ProfileCommon 類別中相關聯屬性和 ProfilePropertySettings 物件的名稱。

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("name", IsKey=true, IsRequired=true)]
public string Name { get; set; }
[<System.Configuration.ConfigurationProperty("name", IsKey=true, IsRequired=true)>]
member this.Name : string with get, set
Public Property Name As String

屬性值

包含 ProfilePropertySettings 物件名稱的字串。 預設為 null

屬性

範例

下列程式碼範例示範如何使用 Name 屬性。 此程式碼範例是提供給 類別之較大範例的 ProfileSection 一部分。

// Get the current Name property value.
Console.WriteLine(
    "Current Name value: '{0}'", profilePropertySettings.Name);

// Set the Name property to "LastAccessDate".
profilePropertySettings.Name = "LastAccessDate";
' Get the current Name property value.
Console.WriteLine( _
    "Current Name value: '{0}'", profilePropertySettings.Name)

' Set the Name property to "LastAccessDate".
profilePropertySettings.Name = "LastAccessDate"

備註

在執行時間,ASP.NET 編譯系統會使用組態檔 區段中指定 profile 的資訊來產生名為 ProfileCommon 的類別,其衍生自 ProfileBase 。 類別可讓您存取和修改個別使用者設定檔的值。

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

適用於

另請參閱