SettingsSerializeAs Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines the serialization scheme used to store application settings.
public enum class SettingsSerializeAs
public enum SettingsSerializeAs
type SettingsSerializeAs =
Public Enum SettingsSerializeAs
- Inheritance
Fields
Name | Value | Description |
---|---|---|
String | 0 | The settings property is serialized as plain text. |
Xml | 1 | The settings property is serialized as XML using XML serialization. |
Binary | 2 | The settings property is serialized using binary object serialization. |
ProviderSpecific | 3 | The settings provider has implicit knowledge of the property or its type and picks an appropriate serialization mechanism. Often used for custom serialization. |
Remarks
The SettingsSerializeAs enumeration is used to specify the serialization mechanism used by the application settings provider to persist the values of application settings properties. For example, the <System.Configuration.SettingsSerializeAsAttribute> uses this enumeration in its constructor to request that a property or group of properties be persisted using the specified serialization mechanism.
Applies to
See also
.NET