using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Determines the serialization scheme used to store application settings.
// Token: 0x02000388 RID: 904
[Token(Token = "0x2000388")]
public enum SettingsSerializeAs
{
/// The settings property is serialized using binary object serialization.
// Token: 0x04000EE4 RID: 3812
[Token(Token = "0x4000EE4")]
Binary = 2,
/// The settings provider has implicit knowledge of the property or its type and picks an appropriate serialization mechanism. Often used for custom serialization.
// Token: 0x04000EE5 RID: 3813
[Token(Token = "0x4000EE5")]
ProviderSpecific,
/// The settings property is serialized as plain text.
// Token: 0x04000EE6 RID: 3814
[Token(Token = "0x4000EE6")]
String = 0,
/// The settings property is serialized as XML using XML serialization.
// Token: 0x04000EE7 RID: 3815
[Token(Token = "0x4000EE7")]
Xml
}
}