ProfilePropertySettings.ReadOnly 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值确定动态生成的 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
属性值
如果 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
关联属性。