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

◆ Children

ArrayList? System.Security.SecurityElement.Children
getset

Definition at line 112 of file SecurityElement.cs.

113 {
114 get
115 {
116 return _children;
117 }
118 set
119 {
120 if (value != null && value.Contains(null))
121 {
122 throw new ArgumentException(SR.ArgumentNull_Child);
123 }
125 }
126 }

Referenced by System.Security.SecurityElement.SearchForTextOfTag().