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

◆ IsNameToken()

static bool System.Xml.XmlReader.IsNameToken ( string str)
inlinestaticinherited

Definition at line 949 of file XmlReader.cs.

950 {
951 if (str == null)
952 {
953 throw new NullReferenceException();
954 }
955 return ValidateNames.IsNmtokenNoNamespaces(str);
956 }

References System.Xml.ValidateNames.IsNmtokenNoNamespaces(), and System.str.