* The Depth property was not implemented correctly and the Read method did not
[mono.git] / mcs / class / System.XML / System.Xml / XmlNodeChangedAction.cs
1 using System;\r
2 \r
3 namespace System.Xml\r
4 {\r
5         /// <summary>\r
6         /// Enumeration of node changed actions.\r
7         /// </summary>\r
8         public enum XmlNodeChangedAction\r
9         {\r
10 \r
11                 /// <summary>\r
12                 /// A node is being inserted in the tree\r
13                 /// </summary>\r
14                 Insert = 0,\r
15 \r
16         /// <summary>\r
17         /// A node is being removed from the tree.\r
18         /// </summary>\r
19                 Remove = 1,\r
20 \r
21                 /// <summary>\r
22                 /// A node is being changed.\r
23                 /// </summary>\r
24         Change  = 2,\r
25 \r
26         }\r
27 }\r