* XmlNodeChageType.cs, XmlChangeFilters.cs : fixed enum values. * XPathResultType.cs : marked [MonoFIX] on .Navigator. svn path=/trunk/mcs/; revision=31093
@@ -1,3 +1,8 @@
+2004-07-13 Atsushi Enomoto <[email protected]>
+
+ * XmlNodeChageType.cs, XmlChangeFilters.cs : fixed enum values.
+ * XPathResultType.cs : marked [MonoFIX] on .Navigator.
2004-07-11 Atsushi Enomoto <[email protected]>
* Expression.cs, Iterator.cs, XPathNavigator.cs :
@@ -30,12 +30,16 @@
namespace System.Xml.XPath
{
+#if NET_2_0
+ [Serializable]
+#endif
public enum XPathResultType
Number = 0,
String = 1,
Boolean = 2,
NodeSet = 3,
+ [MonoFIX ("MS.NET: 1")]
Navigator = 4,
Any = 5,
Error = 6,
@@ -29,12 +29,14 @@
+ [Flags]
public enum XmlChangeFilters
- Updated,
- Inserted,
- Deleted,
- AllChanges
+ Inserted = 1,
+ Deleted = 2,
+ Updated = 4,
+ AllChanges = 7
}
#endif
@@ -29,12 +29,13 @@
public enum XmlNodeChangeType
- Unchanged
+ Updated = 1,
+ Inserted = 2,
+ Deleted = 4,
+ Unchanged = 8