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

◆ HasFeature()

bool System.Xml.XmlImplementation.HasFeature ( string strFeature,
string strVersion )
inline

Definition at line 19 of file XmlImplementation.cs.

20 {
21 if (string.Equals("XML", strFeature, StringComparison.OrdinalIgnoreCase))
22 {
23 switch (strVersion)
24 {
25 case null:
26 case "1.0":
27 case "2.0":
28 return true;
29 }
30 }
31 return false;
32 }

References System.Xml.Dictionary.