System.Xml.XmlNodeChangedEventArgs
namespace System.Xml
{
public class XmlNodeChangedEventArgs : EventArgs
{
public XmlNodeChangedAction Action { get; }
public XmlNode NewParent { get; }
public string NewValue { get; }
public XmlNode Node { get; }
public XmlNode OldParent { get; }
public string OldValue { get; }
public XmlNodeChangedEventArgs(XmlNode node, XmlNode oldParent, XmlNode newParent, string oldValue, string newValue, XmlNodeChangedAction action);
}
}