Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.XML/System.Xml/XmlNodeChangedAction.cs')
-rwxr-xr-xmcs/class/System.XML/System.Xml/XmlNodeChangedAction.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/mcs/class/System.XML/System.Xml/XmlNodeChangedAction.cs b/mcs/class/System.XML/System.Xml/XmlNodeChangedAction.cs
deleted file mode 100755
index 811edfd92f0..00000000000
--- a/mcs/class/System.XML/System.Xml/XmlNodeChangedAction.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-
-namespace System.Xml
-{
- /// <summary>
- /// Enumeration of node changed actions.
- /// </summary>
- public enum XmlNodeChangedAction
- {
-
- /// <summary>
- /// A node is being inserted in the tree
- /// </summary>
- Insert = 0,
-
- /// <summary>
- /// A node is being removed from the tree.
- /// </summary>
- Remove = 1,
-
- /// <summary>
- /// A node is being changed.
- /// </summary>
- Change = 2,
-
- }
-}