Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlNodeChangedEventArgs.cs
Go to the documentation of this file.
1namespace System.Xml;
2
4{
5 private readonly XmlNodeChangedAction _action;
6
7 private readonly XmlNode _node;
8
9 private readonly XmlNode _oldParent;
10
11 private readonly XmlNode _newParent;
12
13 private readonly string _oldValue;
14
15 private readonly string _newValue;
16
17 public XmlNodeChangedAction Action => _action;
18
19 public XmlNode? Node => _node;
20
22
24
25 public string? OldValue => _oldValue;
26
27 public string? NewValue => _newValue;
28
38}
readonly XmlNodeChangedAction _action
XmlNodeChangedEventArgs(XmlNode? node, XmlNode? oldParent, XmlNode? newParent, string? oldValue, string? newValue, XmlNodeChangedAction action)