Files
27Aug2021-Cpp2IL-Dump/System.Data/MappingType.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

29 lines
853 B
C#

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
}
}