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

◆ ParseNmtoken()

static int System.Xml.ValidateNames.ParseNmtoken ( string s,
int offset )
inlinestaticpackage

Definition at line 17 of file ValidateNames.cs.

18 {
19 int i;
20 for (i = offset; i < s.Length && XmlCharType.IsNCNameSingleChar(s[i]); i++)
21 {
22 }
23 return i - offset;
24 }

References System.Xml.Dictionary, System.Xml.XmlCharType.IsNCNameSingleChar(), System.offset, and System.s.

Referenced by System.Xml.XmlDocument.CheckName().