only for RuBoard - do not distribute or recompile Previous Section Next Section
XmlNodeChangedAction enum

System.Xml (system.xml.dll) serializable

This simple enumeration describes the change that has occurred within an XmlDocument instance. It can be one of the following: Change, which indicates that a node within the document has changed in some way; Insert, which indicates that a node has been inserted into the document; or Remove, which indicates that a node has been removed. This is one of the properties specified in the XmlNodeChangedEventArgs parameter to the XmlNodeChangedEventHandler delegate instance registered with the XmlDocument.

public enum XmlNodeChangedAction {
   Insert = 0,
   Remove = 1,
   Change = 2
}

Hierarchy

System.Objectfigs/U2192.gif System.ValueTypefigs/U2192.gif System.Enum(System.IComparable, System.IFormattable, System.IConvertible)figs/U2192.gif XmlNodeChangedAction

Returned By

XmlNodeChangedEventArgs.Action

only for RuBoard - do not distribute or recompile Previous Section Next Section