Make sure to clear compiled items. Fixes regressions appeared in WCF land.
[mono.git] / mcs / class / System.ServiceModel / Mono.Xml.XPath / DTMXPathNode2.cs
1 //
2 // Mono.Xml.XPath.DTMXPathNode2.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // (C) 2004 Novell Inc
8 //
9 // These classes represent each node of DTMXPathNavigator.
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34 using System.Xml.XPath;
35
36 namespace Mono.Xml.XPath
37 {
38 #if OUTSIDE_SYSTEM_XML
39         public
40 #else
41         internal
42 #endif
43 #if DTM_CLASS
44                 class DTMXPathLinkedNode2
45 #else
46                 struct DTMXPathLinkedNode2
47 #endif
48         {
49                 public int FirstChild;
50                 public int Parent;
51                 public int PreviousSibling;
52                 public int NextSibling;
53                 public int FirstAttribute;
54                 public int FirstNamespace;
55                 public XPathNodeType NodeType;
56                 public int BaseURI;
57                 public bool IsEmptyElement;
58                 public int LocalName;
59                 public int NamespaceURI;
60                 public int Prefix;
61                 public int Value;
62                 public int XmlLang;
63                 public int LineNumber;
64                 public int LinePosition;
65         }
66
67 #if OUTSIDE_SYSTEM_XML
68         public
69 #else
70         internal
71 #endif
72 #if DTM_CLASS
73                 class DTMXPathAttributeNode2
74 #else
75                 struct DTMXPathAttributeNode2
76 #endif
77         {
78                 public int OwnerElement;
79                 public int NextAttribute;
80                 public int LocalName;
81                 public int NamespaceURI;
82                 public int Prefix;
83                 public int Value;
84                 public int LineNumber;
85                 public int LinePosition;
86         }
87
88 #if OUTSIDE_SYSTEM_XML
89         public
90 #else
91         internal
92 #endif
93 #if DTM_CLASS
94                 class DTMXPathNamespaceNode2
95 #else
96                 struct DTMXPathNamespaceNode2
97 #endif
98         {
99                 public int DeclaredElement;
100                 public int NextNamespace;
101                 public int Name;
102                 public int Namespace;
103         }
104 }