Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ Create()

static XmlName System.Xml.XmlName.Create ( string prefix,
string localName,
string ns,
int hashCode,
XmlDocument ownerDoc,
XmlName next,
IXmlSchemaInfo schemaInfo )
inlinestaticinherited

Definition at line 78 of file XmlName.cs.

79 {
80 if (schemaInfo == null)
81 {
82 return new XmlName(prefix, localName, ns, hashCode, ownerDoc, next);
83 }
84 return new XmlNameEx(prefix, localName, ns, hashCode, ownerDoc, next, schemaInfo);
85 }
XmlName(string prefix, string localName, string ns, int hashCode, XmlDocument ownerDoc, XmlName next)
Definition XmlName.cs:87
XmlDocument ownerDoc
Definition XmlName.cs:17

References System.Xml.XmlName.XmlName(), System.Xml.XmlName.next, System.Xml.XmlName.ownerDoc, and System.prefix.

Referenced by System.Xml.DomNameTable.AddName().