<PackageReference Include="System.Xml.XmlDocument" Version="4.0.1-beta-23409" />

XmlNodeChangedEventArgs

public XmlNodeChangedAction Action { get; }

Gets a value indicating what type of node change event is occurring.

public XmlNode NewParent { get; }

Gets the value of the ParentNode after the operation completes.

public string NewValue { get; }

Gets the new value of the node.

public XmlNode Node { get; }

Gets the XmlNode that is being added, removed or changed.

public XmlNode OldParent { get; }

Gets the value of the ParentNode before the operation began.

public string OldValue { get; }

Gets the original value of the node.

public XmlNodeChangedEventArgs(XmlNode node, XmlNode oldParent, XmlNode newParent, string oldValue, string newValue, XmlNodeChangedAction action)

Initializes a new instance of the XmlNodeChangedEventArgs class.