|
16 | 16 | </Base>
|
17 | 17 | <Interfaces />
|
18 | 18 | <Docs>
|
19 |
| - <summary>To be added.</summary> |
| 19 | + <summary>Provides extension methods for the <see cref="T:System.Xml.XmlDocument" /> and <see cref="T:System.Xml.XmlNode" /> for document navigation.</summary> |
20 | 20 | <remarks>To be added.</remarks>
|
21 | 21 | </Docs>
|
22 | 22 | <Members>
|
|
41 | 41 | <Parameter Name="document" Type="System.Xml.XmlDocument" RefType="this" />
|
42 | 42 | </Parameters>
|
43 | 43 | <Docs>
|
44 |
| - <param name="document">To be added.</param> |
45 |
| - <summary>To be added.</summary> |
46 |
| - <returns>To be added.</returns> |
| 44 | + <param name="document">The document from which the XPath navigator is created.</param> |
| 45 | + <summary>Creates a new XPath navigator object for navigating the specified document.</summary> |
| 46 | + <returns>An XPath navigator object.</returns> |
47 | 47 | <remarks>To be added.</remarks>
|
48 | 48 | </Docs>
|
49 | 49 | </Member>
|
|
68 | 68 | <Parameter Name="node" Type="System.Xml.XmlNode" RefType="this" />
|
69 | 69 | </Parameters>
|
70 | 70 | <Docs>
|
71 |
| - <param name="node">To be added.</param> |
72 |
| - <summary>To be added.</summary> |
73 |
| - <returns>To be added.</returns> |
| 71 | + <param name="node">The node where the navigator is initially positioned.</param> |
| 72 | + <summary>Creates an XPath navigator for navigating the specified node.</summary> |
| 73 | + <returns>An XPath navigator object used to navigate the node. The XPath navigator is positioned on the node from which the method is called, not on the root of the document.</returns> |
74 | 74 | <remarks>To be added.</remarks>
|
75 | 75 | </Docs>
|
76 | 76 | </Member>
|
|
96 | 96 | <Parameter Name="node" Type="System.Xml.XmlNode" />
|
97 | 97 | </Parameters>
|
98 | 98 | <Docs>
|
99 |
| - <param name="document">To be added.</param> |
100 |
| - <param name="node">To be added.</param> |
101 |
| - <summary>To be added.</summary> |
102 |
| - <returns>To be added.</returns> |
| 99 | + <param name="document">The document from which the XPath navigator is created.</param> |
| 100 | + <param name="node">The node where the navigator is initially positioned.</param> |
| 101 | + <summary>Creates an XPath navigator object for navigating the specified document positioned on the specified node.</summary> |
| 102 | + <returns>An XPath navigator object.</returns> |
103 | 103 | <remarks>To be added.</remarks>
|
104 | 104 | </Docs>
|
105 | 105 | </Member>
|
|
125 | 125 | <Parameter Name="xpath" Type="System.String" />
|
126 | 126 | </Parameters>
|
127 | 127 | <Docs>
|
128 |
| - <param name="node">To be added.</param> |
129 |
| - <param name="xpath">To be added.</param> |
130 |
| - <summary>To be added.</summary> |
131 |
| - <returns>To be added.</returns> |
| 128 | + <param name="node">The node where the navigator is initially positioned.</param> |
| 129 | + <param name="xpath">The XPath expression to match.</param> |
| 130 | + <summary>Selects a list of nodes matching the specified XPath expression.</summary> |
| 131 | + <returns>A collection of nodes that match the specified XPath expression.</returns> |
132 | 132 | <remarks>To be added.</remarks>
|
133 | 133 | </Docs>
|
134 | 134 | </Member>
|
|
155 | 155 | <Parameter Name="nsmgr" Type="System.Xml.XmlNamespaceManager" />
|
156 | 156 | </Parameters>
|
157 | 157 | <Docs>
|
158 |
| - <param name="node">To be added.</param> |
159 |
| - <param name="xpath">To be added.</param> |
160 |
| - <param name="nsmgr">To be added.</param> |
161 |
| - <summary>To be added.</summary> |
162 |
| - <returns>To be added.</returns> |
| 158 | + <param name="node">The node where the navigator is initially positioned.</param> |
| 159 | + <param name="xpath">The XPath expression to match.</param> |
| 160 | + <param name="nsmgr">A namespace manager to resolve XPath expression prefix namespaces.</param> |
| 161 | + <summary>Selects a list of nodes matching the specified XPath expression. Any prefixes found in the XPath expression are resolved using the supplied namespace manager.</summary> |
| 162 | + <returns>A collection of nodes that match the specified XPath expression.</returns> |
163 | 163 | <remarks>To be added.</remarks>
|
| 164 | + <related type="article" href="https://docs.microsoft.com/previous-versions/dotnet/netframework-4.0/ms256086(v=vs.100)">XPath examples</related> |
164 | 165 | </Docs>
|
165 | 166 | </Member>
|
166 | 167 | <Member MemberName="SelectSingleNode">
|
|
185 | 186 | <Parameter Name="xpath" Type="System.String" />
|
186 | 187 | </Parameters>
|
187 | 188 | <Docs>
|
188 |
| - <param name="node">To be added.</param> |
189 |
| - <param name="xpath">To be added.</param> |
190 |
| - <summary>To be added.</summary> |
191 |
| - <returns>To be added.</returns> |
| 189 | + <param name="node">The node where the navigator is initially positioned.</param> |
| 190 | + <param name="xpath">The XPath expression to match.</param> |
| 191 | + <summary>Selects the first node that matches the XPath expression.</summary> |
| 192 | + <returns>The first node that matches the XPath query, or <see langword="null" /> if no matching node is found.</returns> |
192 | 193 | <remarks>To be added.</remarks>
|
| 194 | + <related type="article" href="https://docs.microsoft.com/previous-versions/dotnet/netframework-4.0/ms256086(v=vs.100)">XPath examples</related> |
193 | 195 | </Docs>
|
194 | 196 | </Member>
|
195 | 197 | <Member MemberName="SelectSingleNode">
|
|
215 | 217 | <Parameter Name="nsmgr" Type="System.Xml.XmlNamespaceManager" />
|
216 | 218 | </Parameters>
|
217 | 219 | <Docs>
|
218 |
| - <param name="node">To be added.</param> |
219 |
| - <param name="xpath">To be added.</param> |
220 |
| - <param name="nsmgr">To be added.</param> |
221 |
| - <summary>To be added.</summary> |
222 |
| - <returns>To be added.</returns> |
| 220 | + <param name="node">The node where the navigator is initially positioned.</param> |
| 221 | + <param name="xpath">The XPath expression to match.</param> |
| 222 | + <param name="nsmgr">A namespace manager to resolve XPath expression prefix namespaces.</param> |
| 223 | + <summary>Selects the first node that matches the XPath expression. Any prefixes found in the XPath expression are resolved using the supplied namespace manager.</summary> |
| 224 | + <returns>The first node that matches the XPath query, or <see langword="null" /> if no matching node is found.</returns> |
223 | 225 | <remarks>To be added.</remarks>
|
| 226 | + <related type="article" href="https://docs.microsoft.com/previous-versions/dotnet/netframework-4.0/ms256086(v=vs.100)">XPath examples</related> |
224 | 227 | </Docs>
|
225 | 228 | </Member>
|
226 | 229 | <Member MemberName="ToXPathNavigable">
|
|
244 | 247 | <Parameter Name="node" Type="System.Xml.XmlNode" RefType="this" />
|
245 | 248 | </Parameters>
|
246 | 249 | <Docs>
|
247 |
| - <param name="node">To be added.</param> |
248 |
| - <summary>To be added.</summary> |
249 |
| - <returns>To be added.</returns> |
| 250 | + <param name="node">The node in which the implementation should position newly created navigators.</param> |
| 251 | + <summary>Creates an <see cref="T:System.Xml.XPath.IXPathNavigable" /> instance used for producing navigators.</summary> |
| 252 | + <returns>An <see cref="T:System.Xml.XPath.IXPathNavigable" /> instance.</returns> |
250 | 253 | <remarks>To be added.</remarks>
|
251 | 254 | </Docs>
|
252 | 255 | </Member>
|
|
0 commit comments