XmlNodeChangedEventArgs Constructor

Definition

Initializes a new instance of the XmlNodeChangedEventArgs class.

public:
 XmlNodeChangedEventArgs(System::Xml::XmlNode ^ node, System::Xml::XmlNode ^ oldParent, System::Xml::XmlNode ^ newParent, System::String ^ oldValue, System::String ^ newValue, System::Xml::XmlNodeChangedAction action);
public XmlNodeChangedEventArgs (System.Xml.XmlNode node, System.Xml.XmlNode oldParent, System.Xml.XmlNode newParent, string oldValue, string newValue, System.Xml.XmlNodeChangedAction action);
public XmlNodeChangedEventArgs (System.Xml.XmlNode? node, System.Xml.XmlNode? oldParent, System.Xml.XmlNode? newParent, string? oldValue, string? newValue, System.Xml.XmlNodeChangedAction action);
new System.Xml.XmlNodeChangedEventArgs : System.Xml.XmlNode * System.Xml.XmlNode * System.Xml.XmlNode * string * string * System.Xml.XmlNodeChangedAction -> System.Xml.XmlNodeChangedEventArgs
Public Sub New (node As XmlNode, oldParent As XmlNode, newParent As XmlNode, oldValue As String, newValue As String, action As XmlNodeChangedAction)

Parameters

node
XmlNode

The XmlNode that generated the event.

oldParent
XmlNode

The old parent XmlNode of the XmlNode that generated the event.

newParent
XmlNode

The new parent XmlNode of the XmlNode that generated the event.

oldValue
String

The old value of the XmlNode that generated the event.

newValue
String

The new value of the XmlNode that generated the event.

Applies to