Update Reference Sources to .NET Framework 4.6
[mono.git] / mcs / class / referencesource / System.Data / System / Data / XmlWriteMode.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="XmlWriteMode.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>                                                                
5 // <owner current="true" primary="true">amirhmy</owner>
6 // <owner current="true" primary="false">markash</owner>
7 // <owner current="false" primary="false">jasonzhu</owner>
8 //------------------------------------------------------------------------------
9
10 namespace System.Data {
11
12     /// <devdoc>
13     ///    <para>[To be supplied.]</para>
14     /// </devdoc>
15     public enum XmlWriteMode {    
16         /// <devdoc>
17         ///    <para>[To be supplied.]</para>
18         /// </devdoc>
19         WriteSchema = 0,
20         /// <devdoc>
21         ///    <para>[To be supplied.]</para>
22         /// </devdoc>
23         IgnoreSchema = 1,
24         /// <devdoc>
25         ///    <para>[To be supplied.]</para>
26         /// </devdoc>
27         DiffGram = 2
28     }
29 }