Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
WhitespaceHandling
WhitespaceHandling
System.Runtime.Serialization.XmlReaderDelegator.WhitespaceHandling
get
set
package
inherited
Definition at line
101
of file
XmlReaderDelegator.cs
.
102
{
103
get
104
{
105
if
(!(
reader
is
XmlTextReader
xmlTextReader
))
106
{
107
if
(
reader
is
IXmlTextParser
xmlTextParser
)
108
{
109
return
xmlTextParser
.WhitespaceHandling;
110
}
111
return
WhitespaceHandling
.None;
112
}
113
return
xmlTextReader
.WhitespaceHandling;
114
}
115
set
116
{
117
if
(!(
reader
is
XmlTextReader
xmlTextReader
))
118
{
119
if
(
reader
is
IXmlTextParser
xmlTextParser
)
120
{
121
xmlTextParser.WhitespaceHandling
=
value
;
122
}
123
}
124
else
125
{
126
xmlTextReader.WhitespaceHandling
=
value
;
127
}
128
}
129
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Runtime.Serialization.XmlReaderDelegator.reader
XmlReader reader
Definition
XmlReaderDelegator.cs:11
System.Xml.XmlTextReader
Definition
XmlTextReader.cs:10
System.Xml.Serialization.IXmlTextParser
Definition
IXmlTextParser.cs:4
System.Runtime.Serialization.CollectionKind.Dictionary
@ Dictionary
System.Xml.WhitespaceHandling
WhitespaceHandling
Definition
WhitespaceHandling.cs:4
System.ExceptionArgument.value
@ value
System
Runtime
Serialization
Json
JsonReaderDelegator
Generated by
1.10.0