Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Normalized
bool
System.Runtime.Serialization.XmlReaderDelegator.Normalized
get
set
package
inherited
Definition at line
71
of file
XmlReaderDelegator.cs
.
72
{
73
get
74
{
75
if
(!(
reader
is
XmlTextReader
xmlTextReader
))
76
{
77
if
(
reader
is
IXmlTextParser
xmlTextParser
)
78
{
79
return
xmlTextParser
.Normalized;
80
}
81
return
false
;
82
}
83
return
xmlTextReader
.Normalization;
84
}
85
set
86
{
87
if
(!(
reader
is
XmlTextReader
xmlTextReader
))
88
{
89
if
(
reader
is
IXmlTextParser
xmlTextParser
)
90
{
91
xmlTextParser.Normalized
=
value
;
92
}
93
}
94
else
95
{
96
xmlTextReader.Normalization
=
value
;
97
}
98
}
99
}
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.ExceptionArgument.value
@ value
System
Runtime
Serialization
Json
JsonReaderDelegator
Generated by
1.10.0