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

◆ GetSchemaByUri()

bool System.Xml.Schema.XmlSchemaSet.GetSchemaByUri ( Uri schemaUri,
[NotNullWhen(true)] out XmlSchema schema )
inlinepackage

Definition at line 1083 of file XmlSchemaSet.cs.

1084 {
1085 schema = null;
1086 if (schemaUri == null || schemaUri.OriginalString.Length == 0)
1087 {
1088 return false;
1089 }
1090 schema = (XmlSchema)_schemaLocations[schemaUri];
1091 if (schema != null)
1092 {
1093 return true;
1094 }
1095 return false;
1096 }
readonly Hashtable _schemaLocations

References System.Xml.Schema.XmlSchemaSet._schemaLocations.

Referenced by System.Xml.Schema.XmlSchemaSet.IsSchemaLoaded().