using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Determines the serialization scheme used to store application settings.
// Token: 0x02000384 RID: 900
[Token(Token = "0x2000384")]
public enum SettingsSerializeAs
{
/// The settings property is serialized using binary object serialization.
// Token: 0x04000ED7 RID: 3799
[Token(Token = "0x4000ED7")]
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: 0x04000ED8 RID: 3800
[Token(Token = "0x4000ED8")]
ProviderSpecific,
/// The settings property is serialized as plain text.
// Token: 0x04000ED9 RID: 3801
[Token(Token = "0x4000ED9")]
String = 0,
/// The settings property is serialized as XML using XML serialization.
// Token: 0x04000EDA RID: 3802
[Token(Token = "0x4000EDA")]
Xml
}
}