ProfilePropertySettings.Name 属性

定义

获取或设置 ProfilePropertySettings 对象的名称和动态生成的 ProfileCommon 类中的关联属性。

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定义基于配置文件 部分的 子节profileproperties定义的属性。 为 类的 ProfilePropertySettings 实例指定的属性值将用于在 类中 ProfileCommon 定义关联的属性。

适用于

另请参阅