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

◆ IsName()

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

Definition at line 940 of file XmlReader.cs.

941 {
942 if (str == null)
943 {
944 throw new NullReferenceException();
945 }
946 return ValidateNames.IsNameNoNamespaces(str);
947 }

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