Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
RtfTreeNavigator.cs
Go to the documentation of this file.
2
4
5internal sealed class RtfTreeNavigator : RtfNavigator
6{
8
10
12
13 public override string Value => _events.EventsToString();
14
15 public override string BaseURI => _events.BaseUri;
16
23
25 {
26 _events = that._events;
27 _constr = that._constr;
28 _nameTable = that._nameTable;
29 }
30
31 public override void CopyToWriter(XmlWriter writer)
32 {
34 }
35
36 public override XPathNavigator ToNavigator()
37 {
39 }
40
41 public override XPathNavigator Clone()
42 {
43 return new RtfTreeNavigator(this);
44 }
45
46 public override bool MoveTo(XPathNavigator other)
47 {
49 {
50 _events = rtfTreeNavigator._events;
51 _constr = rtfTreeNavigator._constr;
52 _nameTable = rtfTreeNavigator._nameTable;
53 return true;
54 }
55 return false;
56 }
57}
void EventsToWriter(XmlWriter writer)
XPathNavigator GetNavigator(XmlEventCache events, XmlNameTable nameTable)
override bool MoveTo(XPathNavigator other)
RtfTreeNavigator(XmlEventCache events, XmlNameTable nameTable)
override void CopyToWriter(XmlWriter writer)