SettingsProperty 생성자

정의

SettingsProperty 클래스의 새 인스턴스를 초기화합니다.

오버로드

SettingsProperty(SettingsProperty)

제공된 매개 변수를 기반으로 SettingsProperty 클래스의 새 인스턴스를 초기화합니다.

SettingsProperty(String)

SettingsProperty 클래스의 새 인스턴스를 초기화합니다. 제공된 매개 변수를 기반으로 합니다.

SettingsProperty(String, Type, SettingsProvider, Boolean, Object, SettingsSerializeAs, SettingsAttributeDictionary, Boolean, Boolean)

제공된 매개 변수에 따라 SettingsProperty 클래스의 새 인스턴스를 만듭니다.

SettingsProperty(SettingsProperty)

Source:
SettingsProperty.cs
Source:
SettingsProperty.cs
Source:
SettingsProperty.cs

제공된 매개 변수를 기반으로 SettingsProperty 클래스의 새 인스턴스를 초기화합니다.

public:
 SettingsProperty(System::Configuration::SettingsProperty ^ propertyToCopy);
public SettingsProperty (System.Configuration.SettingsProperty propertyToCopy);
new System.Configuration.SettingsProperty : System.Configuration.SettingsProperty -> System.Configuration.SettingsProperty
Public Sub New (propertyToCopy As SettingsProperty)

매개 변수

propertyToCopy
SettingsProperty

기존 SettingsProperty 개체의 복사본을 지정합니다.

적용 대상

SettingsProperty(String)

Source:
SettingsProperty.cs
Source:
SettingsProperty.cs
Source:
SettingsProperty.cs

SettingsProperty 클래스의 새 인스턴스를 초기화합니다. 제공된 매개 변수를 기반으로 합니다.

public:
 SettingsProperty(System::String ^ name);
public SettingsProperty (string name);
new System.Configuration.SettingsProperty : string -> System.Configuration.SettingsProperty
Public Sub New (name As String)

매개 변수

name
String

기존 SettingsProperty 개체의 이름을 지정합니다.

적용 대상

SettingsProperty(String, Type, SettingsProvider, Boolean, Object, SettingsSerializeAs, SettingsAttributeDictionary, Boolean, Boolean)

Source:
SettingsProperty.cs
Source:
SettingsProperty.cs
Source:
SettingsProperty.cs

제공된 매개 변수에 따라 SettingsProperty 클래스의 새 인스턴스를 만듭니다.

public:
 SettingsProperty(System::String ^ name, Type ^ propertyType, System::Configuration::SettingsProvider ^ provider, bool isReadOnly, System::Object ^ defaultValue, System::Configuration::SettingsSerializeAs serializeAs, System::Configuration::SettingsAttributeDictionary ^ attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing);
public SettingsProperty (string name, Type propertyType, System.Configuration.SettingsProvider provider, bool isReadOnly, object defaultValue, System.Configuration.SettingsSerializeAs serializeAs, System.Configuration.SettingsAttributeDictionary attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing);
new System.Configuration.SettingsProperty : string * Type * System.Configuration.SettingsProvider * bool * obj * System.Configuration.SettingsSerializeAs * System.Configuration.SettingsAttributeDictionary * bool * bool -> System.Configuration.SettingsProperty
Public Sub New (name As String, propertyType As Type, provider As SettingsProvider, isReadOnly As Boolean, defaultValue As Object, serializeAs As SettingsSerializeAs, attributes As SettingsAttributeDictionary, throwOnErrorDeserializing As Boolean, throwOnErrorSerializing As Boolean)

매개 변수

name
String

SettingsProperty 개체의 이름입니다.

propertyType
Type

SettingsProperty 개체의 형식입니다.

provider
SettingsProvider

유지하는 데 사용할 SettingsProvider 개체입니다.

isReadOnly
Boolean

Boolean 개체가 읽기 전용인지 여부를 지정하는 SettingsProperty 값입니다.

defaultValue
Object

SettingsProperty 개체의 기본값입니다.

serializeAs
SettingsSerializeAs

SettingsSerializeAs 개체입니다. 이 개체는 애플리케이션 설정을 저장할 serialization 체계를 설정하는 데 사용되는 열거형입니다.

throwOnErrorDeserializing
Boolean

속성이 역직렬화되지 못한 경우 오류가 throw되는지 여부를 지정하는 부울 값입니다.

throwOnErrorSerializing
Boolean

속성이 serialize되지 못한 경우 오류가 throw되는지 여부를 지정하는 부울 값입니다.

적용 대상