This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Determines the serialization format for a <see cref="T:System.Data.DataSet" />.</summary>
// Token: 0x02000036 RID: 54
[Token(Token = "0x2000036")]
public enum SerializationFormat
{
/// <summary>Serialize as XML content. The default.</summary>
// Token: 0x040000B4 RID: 180
[Token(Token = "0x40000B4")]
Xml,
/// <summary>Serialize as binary content. Available in ADO.NET 2.0 only.</summary>
// Token: 0x040000B5 RID: 181
[Token(Token = "0x40000B5")]
Binary
}
}