Initial commit
[mono.git] / mcs / class / referencesource / System.Xml / System / Xml / Core / NamespaceHandling.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="NewLineHandling.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>                                                                
5 // <owner current="true" primary="true">[....]</owner>
6 //------------------------------------------------------------------------------
7
8 namespace System.Xml {
9     
10     //
11     // NamespaceHandling speficies how should the XmlWriter handle namespaces.
12     //  
13
14     [Flags]
15     public enum NamespaceHandling {
16         
17         //
18         // Default behavior
19         //
20         Default             = 0x0,
21
22         //
23         // Duplicate namespace declarations will be removed
24         //
25         OmitDuplicates      = 0x1,
26     }
27 }