ProfileGroupSettings 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
group
구성 파일 섹션의 profiles
하위 섹션에 프로그래밍 방식으로 액세스할 수 있습니다.
public ref class ProfileGroupSettings sealed : System::Configuration::ConfigurationElement
public sealed class ProfileGroupSettings : System.Configuration.ConfigurationElement
type ProfileGroupSettings = class
inherit ConfigurationElement
Public NotInheritable Class ProfileGroupSettings
Inherits ConfigurationElement
- 상속
예제
다음 코드 예제를 사용 하는 방법을 보여 줍니다는 ProfileGroupSettings 형식입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 ProfileSection 클래스입니다.
// Add a new group.
ProfileGroupSettings newPropGroup = new ProfileGroupSettings("Forum");
profileSection.PropertySettings.GroupSettings.Add(newPropGroup);
// Add a new PropertySettings to the group.
ProfilePropertySettings newProp = new ProfilePropertySettings("AvatarImage");
newProp.Type = "System.String, System.dll";
newPropGroup.PropertySettings.Add(newProp);
// Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage");
newPropGroup.PropertySettings.RemoveAt(0);
// Clear all PropertySettings from the group.
newPropGroup.PropertySettings.Clear();
' Add a new group.
Dim newPropGroup As ProfileGroupSettings = new ProfileGroupSettings("Forum")
profileSection.PropertySettings.GroupSettings.Add(newPropGroup)
' Add a new PropertySettings to the group.
Dim newProp As ProfilePropertySettings = new ProfilePropertySettings("AvatarImage")
newProp.Type = "System.String, System.dll"
newPropGroup.PropertySettings.Add(newProp)
' Remove a PropertySettings from the group.
newPropGroup.PropertySettings.Remove("AvatarImage")
newPropGroup.PropertySettings.RemoveAt(0)
' Clear all PropertySettings from the group.
newPropGroup.PropertySettings.Clear()
설명
ProfileGroupSettings 클래스는 프로그래밍 방식으로 만들기, 액세스 및 그룹에 추가 된 속성을 수정 하는 방법을 제공 합니다 group
하위 섹션는 profile
구성 파일의 섹션입니다.
profile
구성 파일의 섹션에서는 사용자 프로필에 대 한 스키마를 지정 합니다. ASP.NET 컴파일 시스템은 런타임 시에 지정 된 정보를 사용 합니다 profile
라는 클래스를 생성 하는 섹션 ProfileCommon
에서 파생 된 ProfileBase합니다.
ProfileCommon
클래스 정의에 정의 된 속성에 기반 합니다 properties
하위 섹션는 profile
구성 파일의 섹션입니다. 이 클래스의 인스턴스는 각 사용자 프로필에 대해 생성 되 고 개별 프로필 값을 통해 코드에서 액세스할 수 있습니다는 HttpContext.Profile 속성입니다. ASP.NET 2.0에 추가된 프로필 기능에 대한 자세한 내용은 ASP.NET 프로필 속성 개요를 참조하세요.
생성자
ProfileGroupSettings(String) |
기본 설정을 사용하여 ProfileGroupSettings 클래스의 새 인스턴스를 초기화합니다. |
속성
메서드
적용 대상
추가 정보
.NET