Added missing members to XmlParserContext and started using it from XmlTextReader.
[mono.git] / mcs / class / System.XML / System.Xml / WriteState.cs
index a0b3714cac25259e699b3809622d52bded230795..7d3877087826be1dc6c056ff129a8d95032aff73 100755 (executable)
@@ -1,50 +1,53 @@
-// WriteState.cs\r
+// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-\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
+// System.Xml.WriteState\r
 //\r
-// (C) 2001 Ximian, Inc.  http://www.ximian.com\r
-\r
-\r
-namespace System.Xml {\r
-\r
-\r
-       /// <summary>\r
-       /// <para> Specifies the state of an instance of the <see cref="T:System.Xml.XmlTextWriter" /> class.\r
-       ///    </para>\r
-       /// </summary>\r
-       public enum WriteState {\r
-\r
-               /// <summary><para> An instance of the <see cref="!:System.Xml.XmlTextWriter.XmlTextWriter" qualify="true" /> class is initialized \r
-               ///    but none of the writing methods nor the <see cref="M:System.Xml.XmlTextWriter.Close" qualify="true" />\r
-               ///    method have been called.\r
-               ///    </para><para> The <see cref="M:System.Xml.XmlTextWriter.WriteEndDocument" qualify="true" /> method resets\r
-               /// the <see cref="P:System.Xml.XmlTextWriter.WriteState" qualify="true" /> to this\r
-               /// value. </para></summary>\r
-               Start = 0,\r
-\r
-               /// <summary><para> The XML declaration is being written.\r
-               ///       </para></summary>\r
-               Prolog = 1,\r
-\r
-               /// <summary><para> An element start tag is being written.\r
-               ///       </para></summary>\r
-               Element = 2,\r
-\r
-               /// <summary><para> An attribute value is being written.\r
-               ///       </para></summary>\r
-               Attribute = 3,\r
-\r
-               /// <summary><para> Element content is being written.\r
-               ///       </para></summary>\r
-               Content = 4,\r
-\r
-               /// <summary><para> The <see cref="M:System.Xml.XmlTextWriter.Close" /> method has been called.\r
-               ///    </para></summary>\r
-               Closed = 5,\r
-       } // WriteState\r
-\r
-} // System.Xml\r
+// Author:\r
+//   Daniel Weber (daniel-weber@austin.rr.com)\r
+//\r
+// (C) 2001 Daniel Weber
+
+namespace System.Xml \r
+{
+
+
+       /// <summary>
+       /// </summary>
+       public enum WriteState {
+
+               /// <summary>
+               /// A write method has not been called.
+               /// </summary>
+               Start = 0,
+
+               /// <summary>
+               /// The prolog is being written.
+               /// </summary>
+               Prolog = 1,
+
+               /// <summary>
+               /// An element start tag is being written.
+               /// </summary>
+               Element = 2,
+
+               /// <summary>
+               /// An attribute is being written.
+               /// </summary>
+               Attribute = 3,
+
+               /// <summary>
+               /// Element content is being written.
+               /// </summary>
+               Content = 4,
+
+               /// <summary>
+               /// The close method has been called.
+               /// </summary>
+               Closed = 5,
+
+
+
+
+
+       } 
+}