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
클래스 정의에 정의 된 속성에 기반 합니다 properties
하위 섹션는 profile
구성 파일의 섹션입니다. 인스턴스에 대 한 지정 된 속성 값을 ProfilePropertySettings 클래스의 관련된 된 속성을 정의 하는 ProfileCommon
클래스.
속성이 예외가 throw 됩니다는 ProfileCommon
클래스를 익명 사용자가 변경 되 면를 AllowAnonymous 속성 값이 false
.