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

◆ IsDocOrderDistinct

bool System.Xml.Xsl.Runtime.XmlQueryNodeSequence.IsDocOrderDistinct
getset

Definition at line 15 of file XmlQueryNodeSequence.cs.

16 {
17 get
18 {
19 if (_docOrderDistinct != this)
20 {
21 return base.Count <= 1;
22 }
23 return true;
24 }
25 set
26 {
27 _docOrderDistinct = (value ? this : null);
28 }
29 }