System.Xml.XmlNodeChangedEventArgs.XmlNodeChangedEventArgs C# (CSharp) Méthode

XmlNodeChangedEventArgs() public méthode

public XmlNodeChangedEventArgs ( XmlNode node, XmlNode oldParent, XmlNode newParent, string oldValue, string newValue, XmlNodeChangedAction action )
node XmlNode
oldParent XmlNode
newParent XmlNode
oldValue string
newValue string
action XmlNodeChangedAction
        public XmlNodeChangedEventArgs( XmlNode node, XmlNode oldParent, XmlNode newParent, string oldValue, string newValue, XmlNodeChangedAction action ) {
            this.node = node;
            this.oldParent = oldParent;
            this.newParent = newParent;
            this.action = action;
            this.oldValue = oldValue;
            this.newValue = newValue;
        }
XmlNodeChangedEventArgs