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

◆ CompileAnyAttributeUnion()

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

Definition at line 2097 of file Compiler.cs.

2098 {
2099 if (a == null)
2100 {
2101 return b;
2102 }
2103 if (b == null)
2104 {
2105 return a;
2106 }
2107 XmlSchemaAnyAttribute xmlSchemaAnyAttribute = XmlSchemaAnyAttribute.Union(a, b, v1Compat: false);
2108 if (xmlSchemaAnyAttribute == null)
2109 {
2111 }
2112 return xmlSchemaAnyAttribute;
2113 }
static string Sch_UnexpressibleAnyAttribute
Definition SR.cs:1062
Definition SR.cs:7
void SendValidationEvent(string code, XmlSchemaObject source)

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

Referenced by System.Xml.Schema.Compiler.CompileLocalAttributes().