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

◆ Changed

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

Definition at line 61 of file XObject.cs.

62 {
63 add
64 {
65 if (value != null)
66 {
68 if (xObjectChangeAnnotation == null)
69 {
70 xObjectChangeAnnotation = new XObjectChangeAnnotation();
72 }
73 XObjectChangeAnnotation xObjectChangeAnnotation2 = xObjectChangeAnnotation;
75 }
76 }
77 remove
78 {
79 if (value == null)
80 {
81 return;
82 }
84 if (xObjectChangeAnnotation != null)
85 {
87 if (xObjectChangeAnnotation.changing == null && xObjectChangeAnnotation.changed == null)
88 {
90 }
91 }
92 }
93 }
void AddAnnotation(object annotation)
Definition XObject.cs:133