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

◆ CheckRefinedSimpleType()

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

Definition at line 975 of file Preprocessor.cs.

976 {
977 if (stype.Content != null && stype.Content is XmlSchemaSimpleTypeRestriction)
978 {
979 XmlSchemaSimpleTypeRestriction xmlSchemaSimpleTypeRestriction = (XmlSchemaSimpleTypeRestriction)stype.Content;
980 if (xmlSchemaSimpleTypeRestriction.BaseTypeName == stype.QualifiedName)
981 {
982 return;
983 }
984 }
986 }
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.Preprocessor.PreprocessRedefine().