다음을 통해 공유


ProfilePropertySettings.DefaultValue 속성

정의

동적으로 생성된 ProfileCommon 클래스의 관련된 속성에 사용되는 기본값을 가져오거나 설정합니다.

public:
 property System::String ^ DefaultValue { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("defaultValue", DefaultValue="")]
public string DefaultValue { get; set; }
[<System.Configuration.ConfigurationProperty("defaultValue", DefaultValue="")>]
member this.DefaultValue : string with get, set
Public Property DefaultValue As String

속성 값

String

동적으로 생성된 ProfileCommon 클래스의 관련된 속성에 사용되는 기본값이 포함된 문자열입니다. 기본값은 빈 문자열("")입니다.

특성

예제

다음 코드 예제에서는 DefaultValue 속성을 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ProfileSection 클래스입니다.

// Get the current DefaultValue property value.
Console.WriteLine(
    "Current DefaultValue value: '{0}'", profilePropertySettings.DefaultValue);

// Set the DefaultValue property to "March 16, 2004".
profilePropertySettings.DefaultValue = "March 16, 2004";
' Get the current DefaultValue property value.
Console.WriteLine( _
    "Current DefaultValue value: '{0}'", profilePropertySettings.DefaultValue)

' Set the DefaultValue property to "March 16, 2004".
profilePropertySettings.DefaultValue = "March 16, 2004"

설명

ASP.NET 컴파일 시스템은 런타임 시에 지정 된 정보를 사용 합니다 profile 이라는 클래스를 생성 하는 구성 파일의 섹션 ProfileCommon에서 파생 된 ProfileBase합니다. 클래스에 액세스 하 고 개별 사용자 프로필에 대 한 값을 수정할 수 있습니다.

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

연결 된 기본 값을 초기 값으로는 ProfileCommon 는 개별 사용자 프로필에 속성의 값이 없는 경우 클래스 속성입니다. DefaultValue 속성 문자열 값을 XML로 인코딩된 값을 수 있습니다 (serialization 모드 속성에 대 한 XML serialization을은) 또는 base-64 인코딩된 이진 문자열 (속성의 serialization 모드를 이진 serialization 경우).

적용 대상

추가 정보