106 {
107 get
108 {
110 {
112 {
113 case XmlNodeType.Element:
114 return XPathNodeType.Element;
115 case XmlNodeType.Attribute:
116 {
119 {
120 return XPathNodeType.Attribute;
121 }
122 return XPathNodeType.Namespace;
123 }
125 return XPathNodeType.
Root;
126 case XmlNodeType.Comment:
127 return XPathNodeType.Comment;
128 case XmlNodeType.ProcessingInstruction:
129 return XPathNodeType.ProcessingInstruction;
130 default:
131 return XPathNodeType.Text;
132 }
133 }
134 return XPathNodeType.Text;
135 }
136 }