Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlQueryDataWriter.cs
Go to the documentation of this file.
1
using
System.IO
;
2
3
namespace
System.Xml.Xsl.Runtime
;
4
5
internal
sealed
class
XmlQueryDataWriter
:
BinaryWriter
6
{
7
public
XmlQueryDataWriter
(
Stream
output
)
8
:
base
(
output
)
9
{
10
}
11
12
public
void
WriteStringQ
(
string
value
)
13
{
14
Write
(
value
!=
null
);
15
if
(
value
!=
null
)
16
{
17
Write
(
value
);
18
}
19
}
20
}
System.IO.BinaryWriter
Definition
BinaryWriter.cs:10
System.IO.Stream
Definition
Stream.cs:11
System.Xml.Xsl.Runtime.XmlQueryDataWriter.WriteStringQ
void WriteStringQ(string value)
Definition
XmlQueryDataWriter.cs:12
System.Xml.Xsl.Runtime.XmlQueryDataWriter.XmlQueryDataWriter
XmlQueryDataWriter(Stream output)
Definition
XmlQueryDataWriter.cs:7
System.Xml.Xsl.Runtime.XmlQueryDataWriter
Definition
XmlQueryDataWriter.cs:6
System.IO.FileAccess.Write
@ Write
System.IO
Definition
ConsoleStream.cs:3
System.Xml.Xsl.Runtime
Definition
AncestorDocOrderIterator.cs:4
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.value
@ value
source
System.Private.Xml
System.Xml.Xsl.Runtime
XmlQueryDataWriter.cs
Generated by
1.10.0