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