X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.XML%2FSystem.Xml%2FWriteState.cs;h=7d3877087826be1dc6c056ff129a8d95032aff73;hb=f00c428bbe9dd976f1c36ababcd2bb406d2bca33;hp=ff1a10c0cf308192ca80ae88001d69ba0e608425;hpb=f415eb4ef50bf572718d76b17740011638683f6b;p=mono.git diff --git a/mcs/class/System.XML/System.Xml/WriteState.cs b/mcs/class/System.XML/System.Xml/WriteState.cs index ff1a10c0cf3..7d387708782 100755 --- a/mcs/class/System.XML/System.Xml/WriteState.cs +++ b/mcs/class/System.XML/System.Xml/WriteState.cs @@ -1,16 +1,14 @@ -// WriteState.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:40 UTC -// Source file: AllTypes.xml -// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml -// -// (C) 2001 Ximian, Inc. http://www.ximian.com +// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- +// +// System.Xml.WriteState +// +// Author: +// Daniel Weber (daniel-weber@austin.rr.com) +// +// (C) 2001 Daniel Weber - -namespace System.Xml { +namespace System.Xml +{ /// @@ -18,28 +16,38 @@ namespace System.Xml { public enum WriteState { /// + /// A write method has not been called. /// Start = 0, /// + /// The prolog is being written. /// Prolog = 1, /// + /// An element start tag is being written. /// Element = 2, /// + /// An attribute is being written. /// Attribute = 3, /// + /// Element content is being written. /// Content = 4, /// + /// The close method has been called. /// Closed = 5, - } // WriteState -} // System.Xml + + + + + } +}