Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
RtfNavigator.cs
Go to the documentation of this file.
2
4
5internal abstract class RtfNavigator : XPathNavigator
6{
7 public override XPathNodeType NodeType => XPathNodeType.Root;
8
9 public override string LocalName => string.Empty;
10
11 public override string NamespaceURI => string.Empty;
12
13 public override string Name => string.Empty;
14
15 public override string Prefix => string.Empty;
16
17 public override bool IsEmptyElement => false;
18
19 public override XmlNameTable NameTable
20 {
21 get
22 {
23 throw new NotSupportedException();
24 }
25 }
26
27 public abstract void CopyToWriter(XmlWriter writer);
28
29 public abstract XPathNavigator ToNavigator();
30
31 public override bool MoveToFirstAttribute()
32 {
33 throw new NotSupportedException();
34 }
35
36 public override bool MoveToNextAttribute()
37 {
38 throw new NotSupportedException();
39 }
40
42 {
43 throw new NotSupportedException();
44 }
45
47 {
48 throw new NotSupportedException();
49 }
50
51 public override bool MoveToNext()
52 {
53 throw new NotSupportedException();
54 }
55
56 public override bool MoveToPrevious()
57 {
58 throw new NotSupportedException();
59 }
60
61 public override bool MoveToFirstChild()
62 {
63 throw new NotSupportedException();
64 }
65
66 public override bool MoveToParent()
67 {
68 throw new NotSupportedException();
69 }
70
71 public override bool MoveToId(string id)
72 {
73 throw new NotSupportedException();
74 }
75
76 public override bool IsSamePosition(XPathNavigator other)
77 {
78 throw new NotSupportedException();
79 }
80}
override bool MoveToId(string id)
void CopyToWriter(XmlWriter writer)
override bool IsSamePosition(XPathNavigator other)
override XPathNodeType NodeType
override bool MoveToFirstNamespace(XPathNamespaceScope namespaceScope)
override bool MoveToNextNamespace(XPathNamespaceScope namespaceScope)