ProfilePropertySettings 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ProfilePropertySettings 클래스의 새 인스턴스를 초기화합니다.
오버로드
ProfilePropertySettings(String) |
지정된 이름을 사용하여 ProfilePropertySettings 클래스의 새 인스턴스를 초기화합니다. |
ProfilePropertySettings(String, Boolean, SerializationMode, String, String, String, Boolean, String) |
지정된 이름과 설정을 사용하여 ProfilePropertySettings 클래스의 새 인스턴스를 초기화합니다. |
ProfilePropertySettings(String)
지정된 이름을 사용하여 ProfilePropertySettings 클래스의 새 인스턴스를 초기화합니다.
public:
ProfilePropertySettings(System::String ^ name);
public ProfilePropertySettings (string name);
new System.Web.Configuration.ProfilePropertySettings : string -> System.Web.Configuration.ProfilePropertySettings
Public Sub New (name As String)
매개 변수
- name
- String
ProfilePropertySettings 개체의 고유 이름입니다.
설명
다음 표에서이 생성자에 사용 되는 기본 설정을 보여 줍니다.
설정 | 기본값 |
---|---|
AllowAnonymous |
false . |
DefaultValue | 빈 문자열("")입니다. |
ReadOnly |
false . |
SerializeAs | ProviderSpecific. |
Type | 빈 문자열("")입니다. |
추가 정보
적용 대상
ProfilePropertySettings(String, Boolean, SerializationMode, String, String, String, Boolean, String)
지정된 이름과 설정을 사용하여 ProfilePropertySettings 클래스의 새 인스턴스를 초기화합니다.
public:
ProfilePropertySettings(System::String ^ name, bool readOnly, System::Web::Configuration::SerializationMode serializeAs, System::String ^ providerName, System::String ^ defaultValue, System::String ^ profileType, bool allowAnonymous, System::String ^ customProviderData);
public ProfilePropertySettings (string name, bool readOnly, System.Web.Configuration.SerializationMode serializeAs, string providerName, string defaultValue, string profileType, bool allowAnonymous, string customProviderData);
new System.Web.Configuration.ProfilePropertySettings : string * bool * System.Web.Configuration.SerializationMode * string * string * string * bool * string -> System.Web.Configuration.ProfilePropertySettings
Public Sub New (name As String, readOnly As Boolean, serializeAs As SerializationMode, providerName As String, defaultValue As String, profileType As String, allowAnonymous As Boolean, customProviderData As String)
매개 변수
- name
- String
ProfilePropertySettings 개체의 고유 이름입니다.
- readOnly
- Boolean
동적으로 생성된 true
클래스의 관련된 속성이 읽기 전용이어야 함을 나타내려면 ProfileCommon
이고, 그렇지 않으면 false
입니다.
- serializeAs
- SerializationMode
SerializationMode 값 중 하나입니다.
- defaultValue
- String
생성된 페이지의 Profile 클래스에 있는 명명된 속성에 사용되는 기본값이 포함된 문자열입니다.
- profileType
- String
올바른 형식 참조 또는 빈 문자열입니다.
- allowAnonymous
- Boolean
동적으로 생성된 true
클래스의 관련된 속성이 익명 사용자를 지원해야 함을 나타내려면 ProfileCommon
이며, 그렇지 않고 익명 사용자는 명명된 속성을 변경할 수 없음을 나타내려면 false
입니다.
- customProviderData
- String
속성과 관련된 공급자에 사용되는 공급자별 정보가 포함된 문자열입니다.
설명
ASP.NET 컴파일 시스템은 런타임 시에 지정 된 정보를 사용 합니다 profile
이라는 클래스를 생성 하는 구성 파일의 섹션 ProfileCommon
에서 파생 된 ProfileBase합니다. 클래스에 액세스 하 고 개별 사용자 프로필에 대 한 값을 수정할 수 있습니다.
ProfileCommon
클래스 정의에 정의 된 속성에 기반 합니다 properties
하위 섹션는 profile
구성 파일의 섹션입니다. 인스턴스를 만들 때 지정 하는 매개 변수 값을 ProfilePropertySettings 클래스의 관련된 된 속성을 정의 하는 ProfileCommon
클래스입니다.
프로필 속성에 대 한 자세한 내용은 참조 하세요. ASP.NET Profile Properties Overview합니다.
추가 정보
적용 대상
.NET