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

◆ GetName()

static string System.Xml.XmlExceptionHelper.GetName ( string prefix,
string localName )
inlinestaticprivate

Definition at line 50 of file XmlExceptionHelper.cs.

51 {
52 if (prefix.Length == 0)
53 {
54 return localName;
55 }
56 return prefix + ":" + localName;
57 }

References System.prefix.

Referenced by System.Xml.XmlExceptionHelper.GetWhatWasFound(), System.Xml.XmlExceptionHelper.ThrowDuplicateAttribute(), and System.Xml.XmlExceptionHelper.ThrowTagMismatch().