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