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

◆ ElementType

object? System.Xml.Schema.XmlSchemaElement.ElementType
get

Definition at line 247 of file XmlSchemaElement.cs.

248 {
249 get
250 {
251 if (_elementType == null)
252 {
253 return null;
254 }
255 if (_elementType.QualifiedName.Namespace == "http://www.w3.org/2001/XMLSchema")
256 {
257 return _elementType.Datatype;
258 }
259 return _elementType;
260 }
261 }