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

◆ CheckRefinedSimpleType()

void System.Xml.Schema.SchemaCollectionPreprocessor.CheckRefinedSimpleType ( XmlSchemaSimpleType stype)
inlineprivate

Definition at line 724 of file SchemaCollectionPreprocessor.cs.

725 {
726 if (stype.Content != null && stype.Content is XmlSchemaSimpleTypeRestriction)
727 {
728 XmlSchemaSimpleTypeRestriction xmlSchemaSimpleTypeRestriction = (XmlSchemaSimpleTypeRestriction)stype.Content;
729 if (xmlSchemaSimpleTypeRestriction.BaseTypeName == stype.QualifiedName)
730 {
731 return;
732 }
733 }
735 }
static string Sch_InvalidTypeRedefine
Definition SR.cs:830
Definition SR.cs:7
void SendValidationEvent(string code, XmlSchemaObject source)

References System.SR.Sch_InvalidTypeRedefine, and System.Xml.Schema.BaseProcessor.SendValidationEvent().

Referenced by System.Xml.Schema.SchemaCollectionPreprocessor.PreprocessRedefine().