다음을 통해 공유


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 클래스 정의에 정의 된 속성에 기반 합니다 properties 하위 섹션는 profile 구성 파일의 섹션입니다. 인스턴스에 대 한 지정 된 속성 값을 ProfilePropertySettings 클래스의 관련된 된 속성을 정의 하는 ProfileCommon 클래스.

속성이 예외가 throw 됩니다는 ProfileCommon 클래스를 익명 사용자가 변경 되 면를 AllowAnonymous 속성 값이 false.

적용 대상

추가 정보