Added Files.
[mono.git] / mcs / class / 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 namespace System.Data
11 {
12         /// <summary>
13         /// Use the members of this enumeration when setting the WriteMode parameter of the WriteXml method.
14         /// </summary>
15         public enum XmlWriteMode
16         {
17                 DiffGram,
18                 IgnoreSchema,
19                 WriteSchema
20         }
21 }