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