ProfilePropertySettings.AllowAnonymous 属性

定义

获取或设置一个值,该值指示动态生成的 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

属性值

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

如果类中的ProfileCommon属性在属性值为 falseAllowAnonymous由匿名用户更改,则会引发异常。

适用于

另请参阅