using System; using Cpp2IlInjected; namespace System.Data { /// Specifies how to write XML data and a relational schema from a . // Token: 0x02000096 RID: 150 [Token(Token = "0x2000096")] public enum XmlWriteMode { /// Writes the current contents of the as XML data with the relational structure as inline XSD schema. If the has only a schema with no data, only the inline schema is written. If the does not have a current schema, nothing is written. // Token: 0x04000317 RID: 791 [Token(Token = "0x4000317")] WriteSchema, /// Writes the current contents of the as XML data, without an XSD schema. If no data is loaded into the , nothing is written. // Token: 0x04000318 RID: 792 [Token(Token = "0x4000318")] IgnoreSchema, /// Writes the entire as a DiffGram, including original and current values. To generate a DiffGram containing only changed values, call , and then call as a DiffGram on the returned . // Token: 0x04000319 RID: 793 [Token(Token = "0x4000319")] DiffGram } }