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

◆ CompileAnyAttributeIntersection()

XmlSchemaAnyAttribute System.Xml.Schema.Compiler.CompileAnyAttributeIntersection ( XmlSchemaAnyAttribute a,
XmlSchemaAnyAttribute b )
inlineprivate

Definition at line 2115 of file Compiler.cs.

2116 {
2117 if (a == null)
2118 {
2119 return b;
2120 }
2121 if (b == null)
2122 {
2123 return a;
2124 }
2125 XmlSchemaAnyAttribute xmlSchemaAnyAttribute = XmlSchemaAnyAttribute.Intersection(a, b, v1Compat: false);
2126 if (xmlSchemaAnyAttribute == null)
2127 {
2129 }
2130 return xmlSchemaAnyAttribute;
2131 }
static string Sch_UnexpressibleAnyAttribute
Definition SR.cs:1062
Definition SR.cs:7
void SendValidationEvent(string code, XmlSchemaObject source)

References System.Xml.Dictionary, System.Xml.Schema.XmlSchemaAnyAttribute.Intersection(), System.SR.Sch_UnexpressibleAnyAttribute, and System.Xml.Schema.BaseProcessor.SendValidationEvent().

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