ProfileGroupSettingsCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ProfileGroupSettings 개체 집합을 포함합니다.
public ref class ProfileGroupSettingsCollection sealed : System::Configuration::ConfigurationElementCollection
[System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.ProfileGroupSettings), AddItemName="group")]
public sealed class ProfileGroupSettingsCollection : System.Configuration.ConfigurationElementCollection
[<System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.ProfileGroupSettings), AddItemName="group")>]
type ProfileGroupSettingsCollection = class
inherit ConfigurationElementCollection
Public NotInheritable Class ProfileGroupSettingsCollection
Inherits ConfigurationElementCollection
- 상속
- 특성
예제
다음 구성 파일에서는 선언적으로 일부의 속성에 대 한 값을 지정 하는 방법을 보여 줍니다는 ProfileGroupSettingsCollection 으로 <group>
의 요소를 <properties>
요소의 <profile>
구성 파일 섹션.
<system.web>
<profile enabled = "true" defaultProvider="AspNetSqlProfileProvider">
<providers>
<add name="AspNetSqlProfileProvider"
type="System.Web.Profile.SqlProfileProvider "
connectionStringName="LocalSqlServer"
applicationName="/"
description="Stores and retrieves profile data from the
local Microsoft SQL Server database" />
</providers>
<properties>
<group name = "SiteColors" >
<add name = "BackGround"/>
<add name = "SideBar"/>
<add name = "ForeGroundText"/>
<add name = "ForeGroundBorders"/>
</group>
<group name="Forums">
<add name = "HasAvatar" type="bool" provider="Forums"/>
<add name = "LastLogin" type="DateTime" provider="Forums"/>
<add name = "TotalPosts" type="int" provider="Forums"/>
</group>
</properties>
</profile>
</system.web>
설명
합니다 ProfileGroupSettingsCollection 클래스의 컬렉션을 포함 ProfileGroupSettings 개체의 컬렉션을 포함 하 ProfilePropertySettings 개체입니다.
ProfilePropertySettings 클래스는 프로그래밍 방식으로 만들기, 액세스 및에 추가 하는 개별 속성의 정의 수정 하는 방법을 제공 합니다 <properties>
하위 섹션는 <profile>
구성 파일의 섹션입니다.
<profile>
구성 파일의 섹션에서는 사용자 프로필에 대 한 스키마를 지정 합니다. ASP.NET 컴파일 시스템은 런타임 시에 지정 된 정보를 사용 합니다 <profile>
라는 클래스를 생성 하는 섹션 ProfileCommon
에서 파생 된 ProfileBase합니다.
ProfileCommon
클래스 정의에 정의 된 속성에 기반 합니다 <properties>
하위 섹션는 <profile>
구성 파일의 섹션입니다.
프로필 속성에 대 한 자세한 내용은 참조 하세요. ASP.NET Profile Properties Overview합니다. ASP.NET 버전 2.0에 추가 하는 프로필 기능에 대 한 자세한 내용은 참조 하세요. ASP.NET Profile Properties Overview합니다.
생성자
ProfileGroupSettingsCollection() |
ProfileGroupSettingsCollection 클래스의 새 인스턴스를 초기화합니다. |
속성
메서드
명시적 인터페이스 구현
ICollection.CopyTo(Array, Int32) |
ConfigurationElementCollection을 배열에 복사합니다. (다음에서 상속됨 ConfigurationElementCollection) |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다. |
적용 대상
추가 정보
.NET