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

◆ CompileAnyAttributeUnion()

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

Definition at line 1778 of file SchemaCollectionCompiler.cs.

1779 {
1780 if (a == null)
1781 {
1782 return b;
1783 }
1784 if (b == null)
1785 {
1786 return a;
1787 }
1788 XmlSchemaAnyAttribute xmlSchemaAnyAttribute = XmlSchemaAnyAttribute.Union(a, b, v1Compat: true);
1789 if (xmlSchemaAnyAttribute == null)
1790 {
1792 }
1793 return xmlSchemaAnyAttribute;
1794 }
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.SchemaCollectionCompiler.CompileLocalAttributes().