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

◆ Changing

EventHandler<XObjectChangeEventArgs> System.Xml.Linq.XObject.Changing
addremoveinherited

Definition at line 95 of file XObject.cs.

96 {
97 add
98 {
99 if (value != null)
100 {
102 if (xObjectChangeAnnotation == null)
103 {
104 xObjectChangeAnnotation = new XObjectChangeAnnotation();
106 }
107 XObjectChangeAnnotation xObjectChangeAnnotation2 = xObjectChangeAnnotation;
109 }
110 }
111 remove
112 {
113 if (value == null)
114 {
115 return;
116 }
118 if (xObjectChangeAnnotation != null)
119 {
121 if (xObjectChangeAnnotation.changing == null && xObjectChangeAnnotation.changed == null)
122 {
124 }
125 }
126 }
127 }
void AddAnnotation(object annotation)
Definition XObject.cs:133