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

◆ IsProcessContentsRestricted()

bool System.Xml.Schema.Compiler.IsProcessContentsRestricted ( XmlSchemaComplexType baseType,
XmlSchemaAnyAttribute derivedAttributeWildcard,
XmlSchemaAnyAttribute baseAttributeWildcard )
inlineprivate

Definition at line 2084 of file Compiler.cs.

2085 {
2086 if (baseType == XmlSchemaComplexType.AnyType)
2087 {
2088 return true;
2089 }
2090 if (derivedAttributeWildcard.ProcessContentsCorrect >= baseAttributeWildcard.ProcessContentsCorrect)
2091 {
2092 return true;
2093 }
2094 return false;
2095 }

References System.Xml.Schema.XmlSchemaComplexType.AnyType.

Referenced by System.Xml.Schema.Compiler.CheckAtrributeGroupRestriction(), and System.Xml.Schema.Compiler.CompileLocalAttributes().