다음을 통해 공유


ProfilePropertySettings.ReadOnly 속성

정의

동적으로 생성된 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

속성 값

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

적용 대상

추가 정보