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

◆ CreateXmlSchema()

XmlSchema System.Xml.Schema.XmlSchemaInference.CreateXmlSchema ( string targetNS)
inlineprivate

Definition at line 368 of file XmlSchemaInference.cs.

369 {
370 XmlSchema xmlSchema = new XmlSchema();
371 xmlSchema.AttributeFormDefault = XmlSchemaForm.Unqualified;
372 xmlSchema.ElementFormDefault = XmlSchemaForm.Qualified;
373 xmlSchema.TargetNamespace = targetNS;
375 return xmlSchema;
376 }
XmlSchema? Add(string? targetNamespace, string schemaUri)

References System.Xml.Schema.XmlSchemaSet.Add().