2002-12-24 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / System.XML / System.Xml / XmlSpace.cs
1 // XmlSpace.cs
2 //
3 // This code was automatically generated from
4 // ECMA CLI XML Library Specification.
5 // Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
6 // Created: Wed, 5 Sep 2001 06:31:52 UTC
7 // Source file: AllTypes.xml
8 // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
9 //
10 // (C) 2001 Ximian, Inc.  http://www.ximian.com
11
12
13 namespace System.Xml {
14
15
16         /// <summary>
17         /// Specifies the current xml:space scope
18         /// </summary>
19         public enum XmlSpace {
20
21                 /// <summary>
22                 /// No xml:space scope.
23                 /// </summary>
24                 None = 0,
25
26                 /// <summary>
27                 /// the xml:space scope = "default"
28                 /// </summary>
29                 Default = 1,
30
31                 /// <summary>
32                 /// the xml:space scope = "preserve"
33                 /// </summary>
34                 Preserve = 2,
35         } // XmlSpace
36
37 } // System.Xml