X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.XML%2FSystem.Xml%2FXmlSpace.cs;h=f1e1128ff3c1c9259838e6cf93741ec1ebaffe36;hb=2a6da5d6f1e6d02f0e3595b3a02af6cacea2772c;hp=18f753ce58417d2841d83230ee0f77c6a5ace55d;hpb=405dc3ea6cf92549587bad34d414e7cf427b6ebb;p=mono.git diff --git a/mcs/class/System.XML/System.Xml/XmlSpace.cs b/mcs/class/System.XML/System.Xml/XmlSpace.cs index 18f753ce584..f1e1128ff3c 100644 --- a/mcs/class/System.XML/System.Xml/XmlSpace.cs +++ b/mcs/class/System.XML/System.Xml/XmlSpace.cs @@ -1,19 +1,37 @@ -// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- -// -// System.Xml.XmlSpace.cs -// -// Author: -// Jason Diamond (jason@injektilo.org) -// -// (C) 2001 Jason Diamond http://injektilo.org/ -// - -namespace System.Xml -{ - public enum XmlSpace - { - Default, - None, - Preserve - } -} +// 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 { + + + /// + /// Specifies the current xml:space scope + /// + public enum XmlSpace { + + /// + /// No xml:space scope. + /// + None = 0, + + /// + /// the xml:space scope = "default" + /// + Default = 1, + + /// + /// the xml:space scope = "preserve" + /// + Preserve = 2, + } // XmlSpace + +} // System.Xml