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

◆ VerifyXmlChars()

static string System.Xml.XmlConvert.VerifyXmlChars ( string content)
inlinestatic

Definition at line 435 of file XmlConvert.cs.

436 {
437 if (content == null)
438 {
439 throw new ArgumentNullException("content");
440 }
441 VerifyCharData(content, ExceptionType.XmlException);
442 return content;
443 }
static void VerifyCharData(string data, ExceptionType exceptionType)

References System.Xml.XmlConvert.VerifyCharData().