More patches from Eran Domb <erand@mainsoft.com>.
[mono.git] / mcs / class / System.Data / System.Data / XmlWriteMode.cs
1 //
2 // System.Data.XmlWriteMode.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Use the members of this enumeration when setting the WriteMode parameter of the WriteXml method.
16         /// </summary>
17         [Serializable]
18         public enum XmlWriteMode
19         {
20                 WriteSchema = 0,
21                 IgnoreSchema = 1,
22                 DiffGram = 2
23         }
24 }