b99aff9cd583b9851aac025ddb280c8fc34a747f
[mono.git] / mcs / class / System.XML / System.Xml / WhitespaceHandling.cs
1 // WhitespaceHandling.cs\r
2 //\r
3 // This code was automatically generated from\r
4 // ECMA CLI XML Library Specification.\r
5 // Generator: libgen.xsl\r
6 // Source file: AllTypes.xml\r
7 // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml\r
8 //\r
9 // (C) 2001 Ximian, Inc.  http://www.ximian.com\r
10 \r
11 \r
12 namespace System.Xml {\r
13 \r
14 \r
15         /// <summary>\r
16         /// <para> Specifies the type of white space returned by instances of \r
17         ///       the <see cref="T:System.Xml.XmlTextReader" /> class.\r
18         ///       </para>\r
19         /// </summary>\r
20         /// <remarks>\r
21         /// <para>Significant white space is white space between markup in \r
22         ///       a mixed content model, or white space within an element that has the xml:space =\r
23         ///       "preserve" attribute. Insignificant\r
24         ///       white space is any other white space between markup.</para>\r
25         /// </remarks>\r
26         public enum WhitespaceHandling {\r
27 \r
28                 /// <summary><para>Return both significant and insignificant white space. This is the default. </para></summary>\r
29                 All = 0,\r
30 \r
31                 /// <summary><para> Return significant white space only.\r
32                 ///       </para></summary>\r
33                 Significant = 1,\r
34 \r
35                 /// <summary><para>Return neither significant nor insignificant white\r
36                 ///       space.</para></summary>\r
37                 None = 2,\r
38         } // WhitespaceHandling\r
39 \r
40 } // System.Xml\r