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

XmlNodeChangedAction.cs « System.Xml « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 811edfd92f039106ba72b564e004f0a457a22396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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,

	}
}