Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Data

string System.Xml.XmlProcessingInstruction.Data
getset

Definition at line 41 of file XmlProcessingInstruction.cs.

42 {
43 get
44 {
45 return _data;
46 }
47 set
48 {
50 XmlNodeChangedEventArgs eventArgs = GetEventArgs(this, xmlNode, xmlNode, _data, value, XmlNodeChangedAction.Change);
51 if (eventArgs != null)
52 {
54 }
55 _data = value;
56 if (eventArgs != null)
57 {
59 }
60 }
61 }
virtual XmlNodeChangedEventArgs GetEventArgs(XmlNode node, XmlNode oldParent, XmlNode newParent, string oldValue, string newValue, XmlNodeChangedAction action)
Definition XmlNode.cs:1239
virtual ? XmlNode ParentNode
Definition XmlNode.cs:76
virtual void AfterEvent(XmlNodeChangedEventArgs args)
Definition XmlNode.cs:1261
virtual void BeforeEvent(XmlNodeChangedEventArgs args)
Definition XmlNode.cs:1253