8 private bool _IsReadOnly;
10 private object _DefaultValue;
18 private Type _PropertyType;
20 private bool _ThrowOnErrorDeserializing;
22 private bool _ThrowOnErrorSerializing;
26 public virtual string Name 63 _DefaultValue = value;
77 _PropertyType = value;
120 return _ThrowOnErrorDeserializing;
124 _ThrowOnErrorDeserializing = value;
135 return _ThrowOnErrorSerializing;
139 _ThrowOnErrorSerializing = value;
164 _PropertyType = propertyType;
165 _Provider = provider;
166 _IsReadOnly = isReadOnly;
167 _DefaultValue = defaultValue;
168 _SerializeAs = serializeAs;
169 _Attributes = attributes;
170 _ThrowOnErrorDeserializing = throwOnErrorDeserializing;
171 _ThrowOnErrorSerializing = throwOnErrorSerializing;
178 _Name = propertyToCopy.
Name;
182 _Provider = propertyToCopy.
Provider;
bool ThrowOnErrorSerializing
Gets or sets a value specifying whether an error will be thrown when the property is unsuccessfully s...
SettingsProperty(string name, Type propertyType, SettingsProvider provider, bool isReadOnly, object defaultValue, SettingsSerializeAs serializeAs, SettingsAttributeDictionary attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing)
Creates a new instance of the T:System.Configuration.SettingsProperty class based on the supplied par...
virtual object DefaultValue
Gets or sets the default value of the T:System.Configuration.SettingsProperty object.
Used internally as the class that represents metadata about an individual configuration property.
SettingsProperty(string name)
Initializes a new instance of the T:System.Configuration.SettingsProperty class. based on the supplie...
bool ThrowOnErrorDeserializing
Gets or sets a value specifying whether an error will be thrown when the property is unsuccessfully d...
virtual SettingsProvider Provider
Gets or sets the provider for the T:System.Configuration.SettingsProperty.
Represents a collection of key/value pairs used to describe a configuration object as well as a T:Sys...
virtual bool IsReadOnly
Gets or sets a value specifying whether a T:System.Configuration.SettingsProperty object is read-only...
SettingsProperty(SettingsProperty propertyToCopy)
Initializes a new instance of the T:System.Configuration.SettingsProperty class, based on the supplie...
Represents type declarations: class types, interface types, array types, value types,...
virtual Type PropertyType
Gets or sets the type for the T:System.Configuration.SettingsProperty.
virtual SettingsAttributeDictionary Attributes
Gets a T:System.Configuration.SettingsAttributeDictionary object containing the attributes of the T:S...
Acts as a base class for deriving custom settings providers in the application settings architecture.
virtual SettingsSerializeAs SerializeAs
Gets or sets a T:System.Configuration.SettingsSerializeAs object for the T:System....
SettingsSerializeAs
Determines the serialization scheme used to store application settings.
virtual string Name
Gets or sets the name of the T:System.Configuration.SettingsProperty.