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
+28
View File
@@ -0,0 +1,28 @@
using System;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Specifies how a <see cref="T:System.Data.DataColumn" /> is mapped.</summary>
// Token: 0x02000069 RID: 105
[Token(Token = "0x2000069")]
public enum MappingType
{
/// <summary>The column is mapped to an XML element.</summary>
// Token: 0x04000241 RID: 577
[Token(Token = "0x4000241")]
Element = 1,
/// <summary>The column is mapped to an XML attribute.</summary>
// Token: 0x04000242 RID: 578
[Token(Token = "0x4000242")]
Attribute,
/// <summary>The column is mapped to an <see cref="T:System.Xml.XmlText" /> node.</summary>
// Token: 0x04000243 RID: 579
[Token(Token = "0x4000243")]
SimpleContent,
/// <summary>The column is mapped to an internal structure.</summary>
// Token: 0x04000244 RID: 580
[Token(Token = "0x4000244")]
Hidden
}
}