2003-02-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / System.XML / System.Xml / XmlSpace.cs
index 9b1728f0bc706cad820c20294d938b82b11cae1a..f1e1128ff3c1c9259838e6cf93741ec1ebaffe36 100644 (file)
@@ -1,37 +1,37 @@
-// XmlSpace.cs\r
-//\r
-// This code was automatically generated from\r
-// ECMA CLI XML Library Specification.\r
-// Generator: libgen.xsl\r
-// Source file: AllTypes.xml\r
-// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml\r
-//\r
-// (C) 2001 Ximian, Inc.  http://www.ximian.com\r
-\r
-\r
-namespace System.Xml {\r
-\r
-\r
-       /// <summary>\r
-       /// <para>Specifies the white\r
-       ///       space attribute (xml:space), which indicates whether white space should be preserved in an element.</para>\r
-       /// </summary>\r
-       /// <remarks>\r
-       /// <block subset="none" type="note">\r
-       /// <para>This enumeration is used by instances of the <see cref="T:System.Xml.XmlParserContext" />, \r
-       ///    <see cref="T:System.Xml.XmlTextReader" />, and <see cref="T:System.Xml.XmlTextWriter" /> classes.</para>\r
-       /// </block>\r
-       /// </remarks>\r
-       public enum XmlSpace {\r
-\r
-               /// <summary><para>No xml:space attribute is in scope.</para></summary>\r
-               None = 0,\r
-\r
-               /// <summary><para> xml:space = 'default' is in scope.</para></summary>\r
-               Default = 1,\r
-\r
-               /// <summary><para>xml:space = 'preserve' is in scope.</para></summary>\r
-               Preserve = 2,\r
-       } // XmlSpace\r
-\r
-} // System.Xml\r
+// XmlSpace.cs
+//
+// This code was automatically generated from
+// ECMA CLI XML Library Specification.
+// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
+// Created: Wed, 5 Sep 2001 06:31:52 UTC
+// Source file: AllTypes.xml
+// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
+//
+// (C) 2001 Ximian, Inc.  http://www.ximian.com
+
+
+namespace System.Xml {
+
+
+       /// <summary>
+       /// Specifies the current xml:space scope
+       /// </summary>
+       public enum XmlSpace {
+
+               /// <summary>
+               /// No xml:space scope.
+               /// </summary>
+               None = 0,
+
+               /// <summary>
+               /// the xml:space scope = "default"
+               /// </summary>
+               Default = 1,
+
+               /// <summary>
+               /// the xml:space scope = "preserve"
+               /// </summary>
+               Preserve = 2,
+       } // XmlSpace
+
+} // System.Xml