Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
InnerText
override
string
System.Xml.XmlElement.InnerText
get
set
Definition at line
138
of file
XmlElement.cs
.
139
{
140
get
141
{
142
return
base
.InnerText;
143
}
144
set
145
{
146
XmlLinkedNode
lastNode
=
LastNode
;
147
if
(
lastNode
!=
null
&&
lastNode
.NodeType == XmlNodeType.Text &&
lastNode
.next ==
lastNode
)
148
{
149
lastNode.Value
=
value
;
150
return
;
151
}
152
RemoveAllChildren
();
153
AppendChild
(
OwnerDocument
.
CreateTextNode
(
value
));
154
}
155
}
System.Xml.XmlDocument.CreateTextNode
virtual XmlText CreateTextNode(string? text)
Definition
XmlDocument.cs:871
System.Xml.XmlElement.OwnerDocument
override XmlDocument OwnerDocument
Definition
XmlElement.cs:49
System.Xml.XmlElement.LastNode
override? XmlLinkedNode LastNode
Definition
XmlElement.cs:77
System.Xml.XmlElement.RemoveAllChildren
void RemoveAllChildren()
Definition
XmlElement.cs:527
System.Xml.XmlLinkedNode.XmlLinkedNode
XmlLinkedNode(XmlDocument doc)
Definition
XmlLinkedNode.cs:43
System.Xml.DocumentXmlWriterType.AppendChild
@ AppendChild
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
System
Xml
XmlElement
Generated by
1.10.0