using System; using Cpp2IlInjected; namespace System.Data { /// Specifies how a is mapped. // Token: 0x02000069 RID: 105 [Token(Token = "0x2000069")] public enum MappingType { /// The column is mapped to an XML element. // Token: 0x04000241 RID: 577 [Token(Token = "0x4000241")] Element = 1, /// The column is mapped to an XML attribute. // Token: 0x04000242 RID: 578 [Token(Token = "0x4000242")] Attribute, /// The column is mapped to an node. // Token: 0x04000243 RID: 579 [Token(Token = "0x4000243")] SimpleContent, /// The column is mapped to an internal structure. // Token: 0x04000244 RID: 580 [Token(Token = "0x4000244")] Hidden } }