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

◆ ParseQName()

XmlQualifiedName System.Xml.Schema.XsdBuilder.ParseQName ( string value,
string attributeName )
inlineprivate

Definition at line 2156 of file XsdBuilder.cs.

2157 {
2158 try
2159 {
2160 value = XmlComplianceUtil.NonCDataNormalize(value);
2161 string prefix;
2162 return XmlQualifiedName.Parse(value, _namespaceManager, out prefix);
2163 }
2164 catch (Exception)
2165 {
2167 return XmlQualifiedName.Empty;
2168 }
2169 }
static string Sch_InvalidXsdAttributeValue
Definition SR.cs:576
Definition SR.cs:7
readonly XmlNamespaceManager _namespaceManager
void SendValidationEvent(string code, string arg0, string arg1, string arg2)

References System.Xml.Schema.XsdBuilder._namespaceManager, System.Xml.XmlQualifiedName.Empty, System.Xml.XmlComplianceUtil.NonCDataNormalize(), System.Xml.XmlQualifiedName.Parse(), System.prefix, System.SR.Sch_InvalidXsdAttributeValue, System.Xml.Schema.XsdBuilder.SendValidationEvent(), and System.value.