다음을 통해 공유


ProfilePropertySettings.Name 속성

정의

동적으로 생성된 ProfileCommon 클래스에 있는 ProfilePropertySettings 개체 및 관련된 속성의 이름을 가져오거나 설정합니다.

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

속성 값

String

ProfilePropertySettings 개체의 이름을 포함하는 문자열입니다. 기본값은 null입니다.

특성

예제

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

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

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

' Set the Name property to "LastAccessDate".
profilePropertySettings.Name = "LastAccessDate"

설명

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

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

적용 대상

추가 정보