ProfilePropertySettings.AllowAnonymous 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示动态生成的 ProfileCommon
类中关联的属性是否可由匿名用户设置。
public:
property bool AllowAnonymous { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("allowAnonymous", DefaultValue=false)]
public bool AllowAnonymous { get; set; }
[<System.Configuration.ConfigurationProperty("allowAnonymous", DefaultValue=false)>]
member this.AllowAnonymous : bool with get, set
Public Property AllowAnonymous As Boolean
属性值
如果 true
类中关联的属性可由匿名用户设置,则为 ProfileCommon
;否则为 false
,指示匿名用户不能更改属性值。 默认值为 false
。
- 属性
示例
下面的代码示例说明如何使用 AllowAnonymous 属性。 此代码示例是为类提供的大型示例的 ProfileSection 一部分。
// Get the current AllowAnonymous property value.
Console.WriteLine(
"Current AllowAnonymous value: '{0}'", profilePropertySettings.AllowAnonymous);
// Set the AllowAnonymous property to true.
profilePropertySettings.AllowAnonymous = true;
' Get the current AllowAnonymous property value.
Console.WriteLine( _
"Current AllowAnonymous value: '{0}'", profilePropertySettings.AllowAnonymous)
' Set the AllowAnonymous property to true.
profilePropertySettings.AllowAnonymous = true
注解
在运行时,ASP.NET 编译系统使用配置文件节中指定的profile
信息生成一个名为ProfileCommon
的类,该类派生自ProfileBase该类。 该类允许访问和修改单个用户配置文件的值。
类ProfileCommon
定义基于配置文件的子节profile
中properties
定义的属性。 为类实例 ProfilePropertySettings 指定的属性值将用于定义类中的 ProfileCommon
关联属性。
如果类中的ProfileCommon
属性在属性值为 false
时AllowAnonymous由匿名用户更改,则会引发异常。