Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
InnerXml
virtual
string
System.Xml.XmlNode.InnerXml
get
set
inherited
Definition at line
208
of file
XmlNode.cs
.
209
{
210
get
211
{
212
StringWriter
stringWriter
=
new
StringWriter
(
CultureInfo
.
InvariantCulture
);
213
XmlDOMTextWriter
xmlDOMTextWriter
=
new
XmlDOMTextWriter(
stringWriter
);
214
try
215
{
216
WriteContentTo
(
xmlDOMTextWriter
);
217
}
218
finally
219
{
220
xmlDOMTextWriter
.Close();
221
}
222
return
stringWriter
.ToString();
223
}
224
set
225
{
226
throw
new
InvalidOperationException
(
System
.
SR
.
Xdom_Set_InnerXml
);
227
}
228
}
System.Globalization.CultureInfo.InvariantCulture
static CultureInfo InvariantCulture
Definition
CultureInfo.cs:144
System.Globalization.CultureInfo
Definition
CultureInfo.cs:8
System.IO.StringWriter
Definition
StringWriter.cs:9
System.SR.Xdom_Set_InnerXml
static string Xdom_Set_InnerXml
Definition
SR.cs:1302
System.SR
Definition
SR.cs:7
System.Xml.XmlNode.WriteContentTo
void WriteContentTo(XmlWriter w)
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System
Definition
BlockingCollection.cs:8
System
Xml
XmlWhitespace
Generated by
1.10.0