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

适用于

另请参阅