Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12667 lines
563 KiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Xml</name>
  5. </assembly>
  6. <members>
  7. <member name="M:System.Xml.ResDescriptionAttribute.#ctor(System.String)">
  8. <summary>
  9. Constructs a new sys description.
  10. </summary>
  11. <param name="description">
  12. description text.
  13. </param>
  14. </member>
  15. <member name="P:System.Xml.ResDescriptionAttribute.Description">
  16. <summary>
  17. Retrieves the description text.
  18. </summary>
  19. <returns>
  20. description
  21. </returns>
  22. </member>
  23. <member name="T:System.Xml.XPath.XPathNavigator">
  24. <summary>
  25. <para>Reads data from any data store using a cursor model.</para>
  26. </summary>
  27. </member>
  28. <member name="M:System.Xml.XPath.XPathNavigator.Clone">
  29. <summary>
  30. <para> Creates a new <see langword="XPathNavigator" /> positioned
  31. at the same node as this <see langword="XPathNavigator" />
  32. .</para>
  33. </summary>
  34. <returns>
  35. <para>A new <see langword="XPathNavigator" /> object positioned at the same node
  36. as the original <see langword="XPathNavigator" /> .</para>
  37. </returns>
  38. </member>
  39. <member name="M:System.Xml.XPath.XPathNavigator.GetAttribute(System.String,System.String)">
  40. <summary>
  41. <para> Gets the value of the attribute with the
  42. specified <see cref="P:System.Xml.XPath.XPathNavigator.LocalName" /> and <see cref="P:System.Xml.XPath.XPathNavigator.NamespaceURI" /> .</para>
  43. </summary>
  44. <param name="localName">The local name of the attribute.</param>
  45. <param name="namespaceURI">The namespace URI of the attribute.</param>
  46. <returns>
  47. <para>The value of the specified attribute; String.Empty if a
  48. matching attribute is not found or if the navigator is not positioned on an element node.</para>
  49. </returns>
  50. </member>
  51. <member name="M:System.Xml.XPath.XPathNavigator.MoveToAttribute(System.String,System.String)">
  52. <summary>
  53. <para> Moves to the attribute with matching <see cref="P:System.Xml.XPath.XPathNavigator.LocalName" /> and <see cref="P:System.Xml.XPath.XPathNavigator.NamespaceURI" />
  54. .</para>
  55. </summary>
  56. <param name="localName">The local name of the attribute.</param>
  57. <param name="namespaceURI">The namespace URI of the attribute.</param>
  58. <returns>
  59. <para>
  60. <see langword="true" /> if the attribute is found;
  61. otherwise, <see langword="false" />. If <see langword="false" />, the position
  62. of the navigator does not change.</para>
  63. </returns>
  64. </member>
  65. <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirstAttribute">
  66. <summary>
  67. <para> Moves to the first attribute.</para>
  68. </summary>
  69. <returns>
  70. <para>
  71. <see langword="true" /> if the
  72. navigator is successful moving to the first attribute; otherwise,
  73. <see langword="false" />.</para>
  74. </returns>
  75. </member>
  76. <member name="M:System.Xml.XPath.XPathNavigator.MoveToNextAttribute">
  77. <summary>
  78. <para> Moves to the next attribute.</para>
  79. </summary>
  80. <returns>
  81. <para>
  82. <see langword="true" /> if the
  83. navigator is successful moving to the next attribute;
  84. <see langword="false" /> if there are no more attributes.</para>
  85. </returns>
  86. </member>
  87. <member name="M:System.Xml.XPath.XPathNavigator.GetNamespace(System.String)">
  88. <summary>
  89. <para> Returns the value of the namespace node
  90. corresponding to the specified local name.</para>
  91. </summary>
  92. <param name="name">The local name of the namespace node.</param>
  93. <returns>
  94. <para>The value of the namespace node; String.Empty if a
  95. matching namespace node is not found or if the
  96. navigator is not positioned on an element node.</para>
  97. </returns>
  98. </member>
  99. <member name="M:System.Xml.XPath.XPathNavigator.MoveToNamespace(System.String)">
  100. <summary>
  101. <para> Moves the
  102. <see langword="XPathNavigator" /> to the namespace
  103. node with the specified local name.</para>
  104. </summary>
  105. <param name="name">The local name of the namespace node.</param>
  106. <returns>
  107. <para>
  108. <see langword="true" /> if the move was
  109. successful; <see langword="false" /> if a matching namespace node was not found or
  110. if the navigator is not positioned on an element node.</para>
  111. </returns>
  112. </member>
  113. <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirstNamespace">
  114. <summary>
  115. <para> Moves the
  116. <see langword="XPathNavigator" /> to first namespace node of the current element.</para>
  117. </summary>
  118. <returns>
  119. <para>
  120. <see langword="true" /> if the
  121. navigator is successful moving to the
  122. first namespace node; otherwise <see langword="false" />.</para>
  123. </returns>
  124. </member>
  125. <member name="M:System.Xml.XPath.XPathNavigator.MoveToNextNamespace">
  126. <summary>
  127. <para> Moves the
  128. <see langword="XPathNavigator" />
  129. to the next namespace node.</para>
  130. </summary>
  131. <returns>
  132. <para>
  133. <see langword="true" /> if the
  134. navigator is successful moving to the
  135. next namespace node; otherwise <see langword="false" />. If <see langword="false" />, the position of
  136. the navigator is unchanged.</para>
  137. </returns>
  138. </member>
  139. <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope)">
  140. <summary>
  141. <para>Moves the <see langword="XPathNavigator" /> to the first
  142. namespace node matching the <see cref="T:System.Xml.XPath.XPathNamespaceScope" /> specified.</para>
  143. </summary>
  144. <param name="namespaceScope">An <see cref="T:System.Xml.XPath.XPathNamespaceScope" /> value describing the namespace scope.</param>
  145. <returns>
  146. <para>
  147. <see langword="true" /> if the navigator is successful moving to the first namespace node; otherwise <see langword="false" />.</para>
  148. </returns>
  149. </member>
  150. <member name="M:System.Xml.XPath.XPathNavigator.MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope)">
  151. <summary>
  152. <para>Moves the <see langword="XPathNavigator" /> to the next namespace node matching
  153. the <see cref="T:System.Xml.XPath.XPathNamespaceScope" />
  154. specified. </para>
  155. </summary>
  156. <param name="namespaceScope">An <see cref="T:System.Xml.XPath.XPathNamespaceScope" /> value describing the namespace scope.</param>
  157. <returns>
  158. <para>
  159. <see langword="true" /> if the navigator is successful moving to the next
  160. namespace node; otherwise <see langword="false" />. If <see langword="false" />, the
  161. position of the navigator is unchanged.</para>
  162. </returns>
  163. </member>
  164. <member name="M:System.Xml.XPath.XPathNavigator.MoveToNext">
  165. <summary>
  166. <para> Moves to the
  167. next sibling of the current node.</para>
  168. </summary>
  169. <returns>
  170. <para>
  171. <see langword="true" /> if the
  172. navigator is successful moving to the next sibling node;
  173. <see langword="false" /> if there are no more siblings or if the
  174. navigator is currently positioned on an attribute node. If
  175. <see langword="false" />
  176. , the position of the navigator is unchanged.</para>
  177. </returns>
  178. </member>
  179. <member name="M:System.Xml.XPath.XPathNavigator.MoveToPrevious">
  180. <summary>
  181. <para> Moves to the
  182. previous sibling of the current node.</para>
  183. </summary>
  184. <returns>
  185. <para>
  186. <see langword="true" /> if the
  187. navigator is successful moving to the previous sibling node;
  188. <see langword="false" /> if there is no
  189. previous sibling or if the navigator is currently positioned on an attribute node. </para>
  190. </returns>
  191. </member>
  192. <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirst">
  193. <summary>
  194. <para> Moves to the
  195. first sibling of the current node.</para>
  196. </summary>
  197. <returns>
  198. <para>
  199. <see langword="true" /> if the
  200. navigator is successful moving to the first sibling node;
  201. <see langword="false" /> if there is no
  202. first sibling or if the navigator is currently positioned on an attribute node. </para>
  203. </returns>
  204. </member>
  205. <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirstChild">
  206. <summary>
  207. <para> Moves to the
  208. first child of the current node.</para>
  209. </summary>
  210. <returns>
  211. <para>
  212. <see langword="true" /> if there is a first child node; otherwise
  213. <see langword="false" />.</para>
  214. </returns>
  215. </member>
  216. <member name="M:System.Xml.XPath.XPathNavigator.MoveToParent">
  217. <summary>
  218. <para> Moves to
  219. the parent of the current node.</para>
  220. </summary>
  221. <returns>
  222. <para>
  223. <see langword="true" /> if there is a parent node; otherwise
  224. <see langword="false" />.</para>
  225. </returns>
  226. </member>
  227. <member name="M:System.Xml.XPath.XPathNavigator.MoveToRoot">
  228. <summary>
  229. <para> Moves to the root node
  230. to which the current node belongs.</para>
  231. </summary>
  232. </member>
  233. <member name="M:System.Xml.XPath.XPathNavigator.MoveTo(System.Xml.XPath.XPathNavigator)">
  234. <summary>
  235. <para> Moves to the same
  236. position as the specified <see langword="XPathNavigator" />
  237. .</para>
  238. </summary>
  239. <param name="other">The <see langword="XPathNavigator" /> positioned on the node that you want to move to.</param>
  240. <returns>
  241. <para>
  242. <see langword="true " />if successful; otherwise <see langword="false" />. If <see langword="false" /> , the position of the
  243. navigator is unchanged.</para>
  244. </returns>
  245. </member>
  246. <member name="M:System.Xml.XPath.XPathNavigator.MoveToId(System.String)">
  247. <summary>
  248. <para> Moves to the
  249. node that has an attribute of type ID whose
  250. value matches the specified string.</para>
  251. </summary>
  252. <param name="id">A string representing the ID value of the node to which you want to move. This argument does not need to be atomized.</param>
  253. <returns>
  254. <para>
  255. <see langword="true " />if the move
  256. was successful; otherwise <see langword="false" />. If
  257. <see langword="false" /> , the position of the navigator is unchanged.</para>
  258. <note type="note">
  259. If the navigator is implemented over
  260. an <see cref="T:System.Xml.XmlDataDocument" />, this method always returns <see langword="false" />
  261. and the position of the navigator is not changed.
  262. </note>
  263. </returns>
  264. </member>
  265. <member name="M:System.Xml.XPath.XPathNavigator.IsSamePosition(System.Xml.XPath.XPathNavigator)">
  266. <summary>
  267. <para> Determines whether
  268. the current <see langword="XPathNavigator" /> is at the same position as the
  269. specified <see langword="XPathNavigator" />
  270. .</para>
  271. </summary>
  272. <param name="other">The <see langword="XPathNavigator" /> that you want to compare against.</param>
  273. <returns>
  274. <para>
  275. <see langword="true" /> if the two navigators have the
  276. same position; otherwise, <see langword="false" />.</para>
  277. </returns>
  278. </member>
  279. <member name="M:System.Xml.XPath.XPathNavigator.Compile(System.String)">
  280. <summary>
  281. <para> Compiles a string representing an XPath expression and returns
  282. an <see cref="T:System.Xml.XPath.XPathExpression" />
  283. .</para>
  284. </summary>
  285. <param name="xpath">A string representing an XPath expression.</param>
  286. <returns>
  287. <para>An <see langword="XPathExpression" /> object representing
  288. the XPath expression.</para>
  289. </returns>
  290. </member>
  291. <member name="M:System.Xml.XPath.XPathNavigator.Evaluate(System.Xml.XPath.XPathExpression)">
  292. <summary>
  293. <para>Evaluates the <see cref="T:System.Xml.XPath.XPathExpression" /> and returns the typed result (number, Boolean,
  294. string, or node set). Use the <see cref="T:System.Xml.XPath.XPathNodeIterator" /> to iterate over a set of
  295. nodes.</para>
  296. </summary>
  297. <param name="expr">An <see langword="XPathExpression" /> that can be evaluated.</param>
  298. <returns>
  299. <para>The result of the expression.</para>
  300. </returns>
  301. </member>
  302. <member name="M:System.Xml.XPath.XPathNavigator.Evaluate(System.Xml.XPath.XPathExpression,System.Xml.XPath.XPathNodeIterator)">
  303. <summary>
  304. <para>Evaluates the <see cref="T:System.Xml.XPath.XPathExpression" /> using the supplied context and returns the
  305. typed result (number, Boolean, string, or node set).</para>
  306. </summary>
  307. <param name="expr">An <see langword="XPathExpression" /> that can be evaluated.</param>
  308. <param name=" context">An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the selected node set that the evaluation is to be performed on.</param>
  309. <returns>
  310. <para>The result of the expression.</para>
  311. </returns>
  312. </member>
  313. <member name="M:System.Xml.XPath.XPathNavigator.Evaluate(System.String)">
  314. <summary>
  315. <para>Evaluates the string representing an XPath expression and
  316. returns the typed result (number, Boolean, string, or node set). Use
  317. the <see cref="T:System.Xml.XPath.XPathNodeIterator" />
  318. to iterate over a set of nodes.</para>
  319. </summary>
  320. <param name="xpath">A string representing an XPath expression that can be evaluated.</param>
  321. <returns>
  322. <para>The result of the expression.</para>
  323. </returns>
  324. </member>
  325. <member name="M:System.Xml.XPath.XPathNavigator.Matches(System.Xml.XPath.XPathExpression)">
  326. <summary>
  327. <para>Determines whether the current node matches the
  328. specified <see cref="T:System.Xml.XPath.XPathExpression" />
  329. .</para>
  330. </summary>
  331. <param name="expr">An <see langword="XPathExpression" /> encapsulating a compiled XSLT pattern.</param>
  332. <returns>
  333. <para>
  334. <see langword="true" /> if the
  335. current node matches the <see langword="XPathExpression" />
  336. ; otherwise,
  337. <see langword="false" />
  338. .</para>
  339. </returns>
  340. </member>
  341. <member name="M:System.Xml.XPath.XPathNavigator.Matches(System.String)">
  342. <summary>
  343. <para>Determines whether the current node matches the
  344. specified XSLT pattern.</para>
  345. </summary>
  346. <param name="xpath">A string representing an XSLT pattern.</param>
  347. <returns>
  348. <para>
  349. <see langword="true" /> if the
  350. current node matches the XSLT pattern; otherwise,
  351. <see langword="false" />
  352. .</para>
  353. </returns>
  354. </member>
  355. <member name="M:System.Xml.XPath.XPathNavigator.Select(System.Xml.XPath.XPathExpression)">
  356. <summary>
  357. <para>Selects a node set using the specified <see cref="T:System.Xml.XPath.XPathExpression" />
  358. .</para>
  359. </summary>
  360. <param name="expr">An <see langword="XPathExpression" /> .</param>
  361. <returns>
  362. <para>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the
  363. selected node set.</para>
  364. </returns>
  365. </member>
  366. <member name="M:System.Xml.XPath.XPathNavigator.Select(System.String)">
  367. <summary>
  368. <para>Selects a node set using the specified XPath expression.</para>
  369. </summary>
  370. <param name="xpath">A string representing an XPath expression.</param>
  371. <returns>
  372. <para>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the
  373. selected node set.</para>
  374. </returns>
  375. </member>
  376. <member name="M:System.Xml.XPath.XPathNavigator.SelectChildren(System.Xml.XPath.XPathNodeType)">
  377. <summary>
  378. <para> Selects all the child nodes of the current node
  379. with the matching <see cref="T:System.Xml.XPath.XPathNodeType" />.</para>
  380. </summary>
  381. <param name="type">The <see langword="XPathNodeType" /> of the child nodes.</param>
  382. <returns>
  383. <para>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the selected nodes.</para>
  384. </returns>
  385. </member>
  386. <member name="M:System.Xml.XPath.XPathNavigator.SelectChildren(System.String,System.String)">
  387. <summary>
  388. <para>Selects all the child element nodes of the current node
  389. with the supplied local name and namespace URI.</para>
  390. </summary>
  391. <param name="name">The local name of the child nodes.</param>
  392. <param name=" namespaceURI">The namespace URI of the child nodes.</param>
  393. <returns>
  394. <para>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the selected nodes.</para>
  395. </returns>
  396. </member>
  397. <member name="M:System.Xml.XPath.XPathNavigator.SelectDescendants(System.Xml.XPath.XPathNodeType,System.Boolean)">
  398. <summary>
  399. <para> Selects all the descendant nodes of the current
  400. node with the matching <see cref="T:System.Xml.XPath.XPathNodeType" /> .</para>
  401. </summary>
  402. <param name="type">The <see langword="XPathNodeType" /> of the descendant nodes.</param>
  403. <param name=" matchSelf">
  404. <see langword="true" /> to include the context node in the selection; otherwise <see langword="false" /> .</param>
  405. <returns>
  406. <para>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the selected nodes.</para>
  407. </returns>
  408. </member>
  409. <member name="M:System.Xml.XPath.XPathNavigator.SelectDescendants(System.String,System.String,System.Boolean)">
  410. <summary>
  411. <para>Selects all the descendant element nodes of the current
  412. node with the supplied local name and namespace URI.</para>
  413. </summary>
  414. <param name="name">The local name of the descendant nodes.</param>
  415. <param name=" namespaceURI">The namespace URI of the descendant nodes.</param>
  416. <param name=" matchSelf">
  417. <see langword="true" /> to include the context node in the selection; otherwise <see langword="false" /> .</param>
  418. <returns>
  419. <para>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the selected nodes.</para>
  420. </returns>
  421. </member>
  422. <member name="M:System.Xml.XPath.XPathNavigator.SelectAncestors(System.Xml.XPath.XPathNodeType,System.Boolean)">
  423. <summary>
  424. <para>Selects all the ancestor element nodes of the current
  425. node with the matching <see cref="T:System.Xml.XPath.XPathNodeType" /> .</para>
  426. </summary>
  427. <param name="type">The <see langword="XPathNodeType" /> of the ancestor nodes.</param>
  428. <param name=" matchSelf">
  429. <see langword="true" /> to include the context node in the selection; otherwise <see langword="false" /> .</param>
  430. <returns>
  431. <para>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the selected nodes.</para>
  432. </returns>
  433. </member>
  434. <member name="M:System.Xml.XPath.XPathNavigator.SelectAncestors(System.String,System.String,System.Boolean)">
  435. <summary>
  436. <para>Selects all the ancestor element nodes of the current
  437. node with the supplied local name and namespace URI.</para>
  438. </summary>
  439. <param name="name">The local name of the ancestor nodes.</param>
  440. <param name=" namespaceURI">The namespace URI of the ancestor nodes.</param>
  441. <param name=" matchSelf">
  442. <see langword="true" /> to include the context node in the selection; otherwise <see langword="false" /> .</param>
  443. <returns>
  444. <para>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the selected nodes.</para>
  445. </returns>
  446. </member>
  447. <member name="M:System.Xml.XPath.XPathNavigator.ComparePosition(System.Xml.XPath.XPathNavigator)">
  448. <summary>
  449. <para> Compares the position of the current navigator with the
  450. position of the specified <see langword="XPathNavigator" /> .</para>
  451. </summary>
  452. <param name="nav">The <see langword="XPathNavigator" /> to compare against.</param>
  453. <returns>
  454. <para>An <see cref="T:System.Xml.XmlNodeOrder" /> value representing the comparative position of the
  455. two navigators. The following table describes the <see langword="XmlNodeOrder" />
  456. enumeration.</para>
  457. <list type="table">
  458. <listheader>
  459. <term>XmlNodeOrder</term>
  460. <description>Description</description>
  461. </listheader>
  462. <item>
  463. <term> Before</term>
  464. <description>
  465. <para> The current node of this navigator is before the current node
  466. of the supplied navigator.</para>
  467. </description>
  468. </item>
  469. <item>
  470. <term> After</term>
  471. <description>
  472. <para> The current node of this navigator is after the current node of
  473. the supplied navigator.</para>
  474. </description>
  475. </item>
  476. <item>
  477. <term> Same</term>
  478. <description>
  479. <para> The two navigators are positioned
  480. on the same node.</para>
  481. </description>
  482. </item>
  483. <item>
  484. <term> Unknown</term>
  485. <description>
  486. <para>The node positions cannot be determined in document order, relative to
  487. each other. This could occur if the two nodes reside in different
  488. trees.</para>
  489. </description>
  490. </item>
  491. </list>
  492. </returns>
  493. </member>
  494. <member name="M:System.Xml.XPath.XPathNavigator.IsDescendant(System.Xml.XPath.XPathNavigator)">
  495. <summary>
  496. <para>Determines whether the specified
  497. <see langword="XPathNavigator" /> is a descendant of the current
  498. <see langword="XPathNavigator" />.</para>
  499. </summary>
  500. <param name="nav">The <see langword="XPathNavigator" /> that you want to compare against. </param>
  501. <returns>
  502. <para>
  503. <see langword="true" /> if <paramref name="nav" />
  504. is a descendant of the current navigator; otherwise <see langword="false" />.</para>
  505. </returns>
  506. </member>
  507. <member name="M:System.Xml.XPath.XPathNavigator.ToString">
  508. <summary>
  509. <para>Gets the text value of the current node. This
  510. method is equivalent to returning the <see cref="P:System.Xml.XPath.XPathNavigator.Value" /> property.</para>
  511. </summary>
  512. <returns>
  513. <para>The content returned depends on the <see cref="P:System.Xml.XPath.XPathNavigator.NodeType" /> of the node. </para>
  514. <list type="table">
  515. <listheader>
  516. <term>Node Type</term>
  517. <description>Value</description>
  518. </listheader>
  519. <item>
  520. <term> Attribute</term>
  521. <description>The value of the attribute.</description>
  522. </item>
  523. <item>
  524. <term> Element</term>
  525. <description>The <see cref="P:System.Xml.XmlNode.InnerText" /> of the element.</description>
  526. </item>
  527. <item>
  528. <term> Comment</term>
  529. <description>The content of the comment.</description>
  530. </item>
  531. <item>
  532. <term> ProcessingInstruction</term>
  533. <description>The entire content excluding the target.</description>
  534. </item>
  535. <item>
  536. <term> Text</term>
  537. <description>
  538. <para>The content of the text node.</para>
  539. </description>
  540. </item>
  541. <item>
  542. <term> Whitespace</term>
  543. <description>The white space between mark-up.</description>
  544. </item>
  545. <item>
  546. <term> SignificantWhitespace</term>
  547. <description>The white space between markup in a mixed content
  548. model or white space within an xml:space= 'preserve' scope.</description>
  549. </item>
  550. <item>
  551. <term> Root</term>
  552. <description>The <see cref="P:System.Xml.XmlNode.InnerText" /> of the root
  553. node.</description>
  554. </item>
  555. </list>
  556. </returns>
  557. </member>
  558. <member name="P:System.Xml.XPath.XPathNavigator.NodeType">
  559. <summary>
  560. <para> Gets the type of the current node.</para>
  561. </summary>
  562. </member>
  563. <member name="P:System.Xml.XPath.XPathNavigator.LocalName">
  564. <summary>
  565. <para> Gets the name of the current node without the namespace prefix.</para>
  566. </summary>
  567. </member>
  568. <member name="P:System.Xml.XPath.XPathNavigator.NamespaceURI">
  569. <summary>
  570. <para> Gets the namespace URI (as defined in the W3C Namespace Specification) of the current node.</para>
  571. </summary>
  572. </member>
  573. <member name="P:System.Xml.XPath.XPathNavigator.Name">
  574. <summary>
  575. <para> Gets the qualified name of
  576. the current node.</para>
  577. </summary>
  578. </member>
  579. <member name="P:System.Xml.XPath.XPathNavigator.Prefix">
  580. <summary>
  581. <para> Gets the prefix associated with
  582. the current node.</para>
  583. </summary>
  584. </member>
  585. <member name="P:System.Xml.XPath.XPathNavigator.Value">
  586. <summary>
  587. <para> Gets the text value of the current node.</para>
  588. </summary>
  589. </member>
  590. <member name="P:System.Xml.XPath.XPathNavigator.BaseURI">
  591. <summary>
  592. <para> Gets the base URI for the current node.</para>
  593. </summary>
  594. </member>
  595. <member name="P:System.Xml.XPath.XPathNavigator.XmlLang">
  596. <summary>
  597. <para> Gets the
  598. <see langword="xml:lang" /> scope for the
  599. current node.</para>
  600. </summary>
  601. </member>
  602. <member name="P:System.Xml.XPath.XPathNavigator.IsEmptyElement">
  603. <summary>
  604. <para> Gets a value indicating whether
  605. the current
  606. node is an empty element (for example, &lt;MyElement/&gt;).</para>
  607. </summary>
  608. </member>
  609. <member name="P:System.Xml.XPath.XPathNavigator.NameTable">
  610. <summary>
  611. <para> Gets
  612. the <see cref="T:System.Xml.XmlNameTable" />
  613. associated with this implementation.</para>
  614. </summary>
  615. </member>
  616. <member name="P:System.Xml.XPath.XPathNavigator.HasAttributes">
  617. <summary>
  618. <para> Gets a
  619. value indicating whether the element node has any attributes.</para>
  620. </summary>
  621. </member>
  622. <member name="P:System.Xml.XPath.XPathNavigator.HasChildren">
  623. <summary>
  624. <para> Gets a value indicating whether
  625. the current node has child nodes.</para>
  626. </summary>
  627. </member>
  628. <member name="T:System.Xml.IHasXmlNode">
  629. <summary>
  630. <para>Enables a class to return an <see cref="T:System.Xml.XmlNode" /> from the
  631. current context or position.</para>
  632. </summary>
  633. </member>
  634. <member name="M:System.Xml.IHasXmlNode.GetNode">
  635. <summary>
  636. <para>Returns the <see cref="T:System.Xml.XmlNode" /> for the current position.</para>
  637. </summary>
  638. <returns>
  639. <para>The <see langword="XmlNode" /> for the
  640. current position.</para>
  641. </returns>
  642. </member>
  643. <member name="T:System.Xml.XPath.XPathNodeIterator">
  644. <summary>
  645. <para> Provides an iterator over a set of selected nodes.</para>
  646. </summary>
  647. </member>
  648. <member name="M:System.Xml.XPath.XPathNodeIterator.Clone">
  649. <summary>
  650. <para>When overridden in a derived class, creates a new
  651. <see langword="XPathNodeIterator" />.</para>
  652. </summary>
  653. <returns>
  654. <para>A new
  655. <see langword="XPathNodeIterator" /> object.</para>
  656. </returns>
  657. </member>
  658. <member name="M:System.Xml.XPath.XPathNodeIterator.MoveNext">
  659. <summary>
  660. <para>When overridden in a derived class, moves
  661. the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the next node in the selected set.</para>
  662. </summary>
  663. <returns>
  664. <para>
  665. <see langword="true" /> if the
  666. <see langword="XPathNavigator" /> moved to the next node;
  667. <see langword="false" /> if there are no more selected nodes.</para>
  668. </returns>
  669. </member>
  670. <member name="P:System.Xml.XPath.XPathNodeIterator.Current">
  671. <summary>
  672. <para>When overridden in a derived class, returns the
  673. navigator for this <see langword="XPathNodeIterator" /> positioned on the current
  674. node.</para>
  675. </summary>
  676. </member>
  677. <member name="P:System.Xml.XPath.XPathNodeIterator.CurrentPosition">
  678. <summary>
  679. <para>When overridden in a derived class, gets the index of the current position in the selected
  680. set of nodes.</para>
  681. </summary>
  682. </member>
  683. <member name="P:System.Xml.XPath.XPathNodeIterator.Count">
  684. <summary>
  685. <para>Gets the index of the last node in the selected set of nodes.</para>
  686. </summary>
  687. </member>
  688. <member name="T:System.Xml.EntityHandling">
  689. <summary>
  690. <para>Specifies how entities are handled.</para>
  691. </summary>
  692. </member>
  693. <member name="F:System.Xml.EntityHandling.ExpandEntities">
  694. <summary>
  695. <para> Expands all entities. This is the default.
  696. </para>
  697. <para> Entity reference nodes (<see cref="P:System.Xml.XmlValidatingReader.NodeType" />= XmlNodeType.EntityReference) are not returned. The entity text is
  698. expanded in place of the entity references.
  699. </para>
  700. </summary>
  701. </member>
  702. <member name="F:System.Xml.EntityHandling.ExpandCharEntities">
  703. <summary>
  704. <para>Expands character entities and returns general entities
  705. as nodes (<see cref="P:System.Xml.XmlValidatingReader.NodeType" />=XmlNodeType.EntityReference, <see cref="P:System.Xml.XmlValidatingReader.Name" />=the name of the entity, <see cref="P:System.Xml.XmlValidatingReader.HasValue" />
  706. =
  707. false).</para>
  708. <para>You must call <see cref="M:System.Xml.XmlReader.ResolveEntity" /> to see what the general entities expand to. This
  709. enables you to optimize entity handling by only expanding the entity the
  710. first time it is used.</para>
  711. <para>When set to ExpandCharEntities, a reader call to the <see cref="M:System.Xml.XmlReader.GetAttribute(System.String)" />
  712. method expands all entities
  713. (both general and character entities).</para>
  714. </summary>
  715. </member>
  716. <member name="T:System.Xml.IXmlLineInfo">
  717. <summary>
  718. <para>Provides an interface to enable a class to return line and position information.</para>
  719. </summary>
  720. </member>
  721. <member name="M:System.Xml.IXmlLineInfo.HasLineInfo">
  722. <summary>
  723. Gets a value indicating whether the class can return
  724. line information.
  725. </summary>
  726. <returns>
  727. <see langword="true" /> if <see cref="P:System.Xml.IXmlLineInfo.LineNumber" /> and <see cref="P:System.Xml.IXmlLineInfo.LinePosition" /> can be provided; otherwise, <see langword="false" />.
  728. </returns>
  729. </member>
  730. <member name="P:System.Xml.IXmlLineInfo.LineNumber">
  731. <summary>
  732. <para>Gets the current line number.</para>
  733. </summary>
  734. </member>
  735. <member name="P:System.Xml.IXmlLineInfo.LinePosition">
  736. <summary>
  737. <para>Gets the current line position.</para>
  738. </summary>
  739. </member>
  740. <member name="T:System.Xml.NameTable">
  741. <summary>
  742. <para>Implements a single-threaded <see cref="T:System.Xml.XmlNameTable" /> .</para>
  743. </summary>
  744. </member>
  745. <member name="T:System.Xml.XmlNameTable">
  746. <summary>
  747. <para> Table of atomized string objects.</para>
  748. </summary>
  749. </member>
  750. <member name="M:System.Xml.XmlNameTable.Get(System.Char[],System.Int32,System.Int32)">
  751. <summary>
  752. <para>When overridden in a derived class, gets the atomized
  753. string containing the
  754. same characters as the specified range of characters in the given array.</para>
  755. <para>For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" /> .</para>
  756. </summary>
  757. <param name="array">The character array containing the name to look up.</param>
  758. <param name="offset">The zero-based index into the array specifying the first character of the name.</param>
  759. <param name="length">The number of characters in the name.</param>
  760. <returns>
  761. <para> The atomized string or <see langword="null" /> if the
  762. string has not already been atomized. If <paramref name="length" /> is zero,
  763. String.Empty is returned.</para>
  764. </returns>
  765. </member>
  766. <member name="M:System.Xml.XmlNameTable.Get(System.String)">
  767. <summary>
  768. <para>When overridden in a derived class, gets the atomized
  769. string containing the same
  770. value as the specified string.</para>
  771. <para>For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" /> .</para>
  772. </summary>
  773. <param name="array">The name to look up.</param>
  774. <returns>
  775. <para>The atomized string or <see langword="null" /> if the
  776. string has not already been atomized.</para>
  777. </returns>
  778. </member>
  779. <member name="M:System.Xml.XmlNameTable.Add(System.Char[],System.Int32,System.Int32)">
  780. <summary>
  781. <para>When overridden in a derived class, atomizes the
  782. specified string and adds it to the <see langword="XmlNameTable" />.</para>
  783. <para>For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" /> .</para>
  784. </summary>
  785. <param name="array">The character array containing the name to add.</param>
  786. <param name="offset">Zero based index into the array specifying the first character of the name.</param>
  787. <param name="length">The number of characters in the name.</param>
  788. <returns>
  789. <para>The new atomized string or the existing one if it
  790. already exists. If length is zero, String.Empty is returned.</para>
  791. </returns>
  792. </member>
  793. <member name="M:System.Xml.XmlNameTable.Add(System.String)">
  794. <summary>
  795. <para>When overridden in a derived class, atomizes the
  796. specified string and adds it to the <see langword="XmlNameTable" /> .</para>
  797. <para>For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" /> .</para>
  798. </summary>
  799. <param name="array">The name to add.</param>
  800. <returns>
  801. <para>The new atomized string or the existing one if it already
  802. exists.</para>
  803. </returns>
  804. </member>
  805. <member name="M:System.Xml.NameTable.#ctor">
  806. <summary>
  807. <para>Initializes a new instance of the
  808. <see langword="NameTable" /> class.</para>
  809. </summary>
  810. </member>
  811. <member name="M:System.Xml.NameTable.Add(System.String)">
  812. <summary>
  813. <para> Atomizes the specified string and adds it to the
  814. <see langword="NameTable" />
  815. .</para>
  816. <para> For more information on atomized strings, see <see cref="T:System.Xml.NameTable" />
  817. .</para>
  818. </summary>
  819. <param name="key">The string to add.</param>
  820. <returns>
  821. <para>The atomized string or the existing string if it already
  822. exists in the <see langword="NameTable" /> .</para>
  823. </returns>
  824. </member>
  825. <member name="M:System.Xml.NameTable.Add(System.Char[],System.Int32,System.Int32)">
  826. <summary>
  827. <para> Atomizes the specified string and adds it to the
  828. <see langword="NameTable" />
  829. .</para>
  830. <para>For more information on atomized strings, see <see cref="T:System.Xml.NameTable" />.</para>
  831. </summary>
  832. <param name="key">The character array containing the string to add.</param>
  833. <param name="start">The zero-based index into the array specifying the first character of the string.</param>
  834. <param name="len">The number of characters in the string.</param>
  835. <returns>
  836. <para>The atomized string or the existing string if one already
  837. exists in the <see langword="NameTable" />
  838. . If <paramref name="len" /> is zero, String.Empty is returned.</para>
  839. </returns>
  840. </member>
  841. <member name="M:System.Xml.NameTable.Get(System.String)">
  842. <summary>
  843. <para> Gets the atomized string with the specified
  844. value.</para>
  845. <para>For more information on atomized strings, see <see cref="T:System.Xml.NameTable" />
  846. .</para>
  847. </summary>
  848. <param name="value">The name to find.</param>
  849. <returns>
  850. <para>The atomized string object or
  851. <see langword="null" /> if the string has not already been atomized.</para>
  852. </returns>
  853. </member>
  854. <member name="M:System.Xml.NameTable.Get(System.Char[],System.Int32,System.Int32)">
  855. <summary>
  856. <para>Gets the atomized string
  857. containing the same characters as the specified range of characters in the given
  858. array.</para>
  859. <para>For more information on atomized strings, see <see cref="T:System.Xml.NameTable" />.</para>
  860. </summary>
  861. <param name="key">The character array containing the name to find.</param>
  862. <param name="start">The zero-based index into the array specifying the first character of the name.</param>
  863. <param name="len">The number of characters in the name.</param>
  864. <returns>
  865. <para>The atomized string or <see langword="null" /> if the
  866. string has not already been atomized. If <paramref name="len" /> is zero,
  867. String.Empty is returned.</para>
  868. </returns>
  869. </member>
  870. <member name="T:System.Xml.ReadState">
  871. <summary>
  872. <para>Specifies the state of the reader.</para>
  873. </summary>
  874. </member>
  875. <member name="F:System.Xml.ReadState.Initial">
  876. <summary>
  877. <para>The <see langword="Read" /> method has not been called.</para>
  878. </summary>
  879. </member>
  880. <member name="F:System.Xml.ReadState.Interactive">
  881. <summary>
  882. <para>The <see langword="Read" /> method
  883. has been called. Additional methods may be called on the reader.</para>
  884. </summary>
  885. </member>
  886. <member name="F:System.Xml.ReadState.Error">
  887. <summary>
  888. An error occurred that prevents the
  889. read operation from continuing.
  890. </summary>
  891. </member>
  892. <member name="F:System.Xml.ReadState.EndOfFile">
  893. <summary>
  894. <para>The end of the file has been reached
  895. successfully.</para>
  896. </summary>
  897. </member>
  898. <member name="F:System.Xml.ReadState.Closed">
  899. <summary>
  900. <para>The <see cref="M:System.Xml.XmlReader.Close" /> method has been called.</para>
  901. </summary>
  902. </member>
  903. <member name="T:System.Xml.ValidationType">
  904. <summary>
  905. <para>Specifies the type of validation to perform.</para>
  906. </summary>
  907. </member>
  908. <member name="F:System.Xml.ValidationType.None">
  909. <summary>
  910. <para>Creates an XML 1.0 compliant non-validating parser.
  911. Default attributes are reported and general entities can be resolved by calling
  912. <see cref="M:System.Xml.XmlValidatingReader.ResolveEntity" />
  913. . The DOCTYPE is not used
  914. for validation purposes.</para>
  915. <para> No validation
  916. errors are thrown.</para>
  917. </summary>
  918. </member>
  919. <member name="F:System.Xml.ValidationType.Auto">
  920. <summary>
  921. <see cref="T:System.Xml.XmlValidatingReader" />validates if DTD or
  922. schema information is found.
  923. </summary>
  924. </member>
  925. <member name="F:System.Xml.ValidationType.DTD">
  926. <summary>
  927. <para>Validates according to the DTD.</para>
  928. </summary>
  929. </member>
  930. <member name="F:System.Xml.ValidationType.XDR">
  931. <summary>
  932. <para> Validate according to XDR schemas; including inline
  933. schemas. XDR schemas are recognized using the <see langword="x-schema" />
  934. namespace prefix
  935. or the <see cref="P:System.Xml.XmlValidatingReader.Schemas" />
  936. property.</para>
  937. </summary>
  938. </member>
  939. <member name="F:System.Xml.ValidationType.Schema">
  940. <summary>
  941. <para> Validate according to XSD schemas; including inline
  942. schemas. XSD schemas are associated with namespace URIs either by using the
  943. <see langword="schemaLocation" />
  944. attribute or the provided <see cref="P:System.Xml.XmlValidatingReader.Schemas" />
  945. property.</para>
  946. </summary>
  947. </member>
  948. <member name="T:System.Xml.WhitespaceHandling">
  949. <summary>
  950. <para> Specifies how white space is handled.
  951. </para>
  952. </summary>
  953. </member>
  954. <member name="F:System.Xml.WhitespaceHandling.All">
  955. <summary>
  956. <para>Return <see langword="Whitespace" /> and
  957. <see langword="SignificantWhitespace" />
  958. nodes. This is the default.</para>
  959. </summary>
  960. </member>
  961. <member name="F:System.Xml.WhitespaceHandling.Significant">
  962. <summary>
  963. <para> Return <see langword="SignificantWhitespace" /> nodes only.
  964. </para>
  965. </summary>
  966. </member>
  967. <member name="F:System.Xml.WhitespaceHandling.None">
  968. <summary>
  969. <para>Return no <see langword="Whitespace" /> and no
  970. <see langword="SignificantWhitespace" />
  971. nodes.</para>
  972. </summary>
  973. </member>
  974. <member name="T:System.Xml.XmlAttribute">
  975. <summary>
  976. <para> Represents an attribute. Valid and default values for the attribute are defined in a DTD or schema.
  977. </para>
  978. </summary>
  979. </member>
  980. <member name="T:System.Xml.XmlNode">
  981. <summary>
  982. <para> Represents a single node in the XML document.
  983. </para>
  984. </summary>
  985. </member>
  986. <member name="T:System.Xml.XPath.IXPathNavigable">
  987. <summary>
  988. <para>Provides an accessor to the <see cref="T:System.Xml.XPath.XPathNavigator" />.</para>
  989. </summary>
  990. </member>
  991. <member name="M:System.Xml.XPath.IXPathNavigable.CreateNavigator">
  992. <summary>
  993. <para>Creates a new <see cref="T:System.Xml.XPath.XPathNavigator" /> for this
  994. <see langword="IXPathNavigable" /> interface.</para>
  995. </summary>
  996. <returns>
  997. <para>An <see langword="XPathNavigator" />
  998. object.</para>
  999. </returns>
  1000. </member>
  1001. <member name="M:System.Xml.XmlNode.CreateNavigator">
  1002. <summary>
  1003. <para>Creates an <see cref="T:System.Xml.XPath.XPathNavigator" /> for navigating this object.</para>
  1004. </summary>
  1005. <returns>
  1006. <para>An <see langword="XPathNavigator" />
  1007. object. The <see langword="XPathNavigator" /> is positioned on the node from
  1008. which the method was called. It is not positioned on the root of the
  1009. document.</para>
  1010. </returns>
  1011. </member>
  1012. <member name="M:System.Xml.XmlNode.SelectSingleNode(System.String)">
  1013. <summary>
  1014. <para>Selects the first <see langword="XmlNode" /> that matches the
  1015. XPath expression.</para>
  1016. </summary>
  1017. <param name="xpath">The XPath expression.</param>
  1018. <returns>
  1019. <para>The first <see langword="XmlNode" /> that matches the
  1020. XPath query or <see langword="null" /> if no matching node was found.</para>
  1021. </returns>
  1022. </member>
  1023. <member name="M:System.Xml.XmlNode.SelectSingleNode(System.String,System.Xml.XmlNamespaceManager)">
  1024. <summary>
  1025. <para>Selects the first <see langword="XmlNode" /> that matches the XPath
  1026. expression. Any prefixes found in the XPath expression are resolved using the supplied <see cref="T:System.Xml.XmlNamespaceManager" />
  1027. .</para>
  1028. </summary>
  1029. <param name="xpath">The XPath expression.</param>
  1030. <param name=" nsmgr">An <see cref="T:System.Xml.XmlNamespaceManager" /> to use for resolving namespaces for prefixes in the XPath expression.</param>
  1031. <returns>
  1032. <para>The first <see langword="XmlNode" />
  1033. that matches the XPath query or <see langword="null" /> if no matching node was
  1034. found.</para>
  1035. </returns>
  1036. </member>
  1037. <member name="M:System.Xml.XmlNode.SelectNodes(System.String)">
  1038. <summary>
  1039. <para>Selects a list of nodes matching the XPath
  1040. expression.</para>
  1041. </summary>
  1042. <param name="xpath">The XPath expression.</param>
  1043. <returns>
  1044. <para>An <see cref="T:System.Xml.XmlNodeList" /> containing a collection of nodes
  1045. matching the XPath query.</para>
  1046. </returns>
  1047. </member>
  1048. <member name="M:System.Xml.XmlNode.SelectNodes(System.String,System.Xml.XmlNamespaceManager)">
  1049. <summary>
  1050. <para>Selects a list of nodes matching the XPath expression.
  1051. Any prefixes found in the XPath expression are resolved using the supplied
  1052. <see cref="T:System.Xml.XmlNamespaceManager" /> .</para>
  1053. </summary>
  1054. <param name="xpath">The XPath expression.</param>
  1055. <param name=" nsmgr">An <see cref="T:System.Xml.XmlNamespaceManager" /> to use for resolving namespaces for prefixes in the XPath expression.</param>
  1056. <returns>
  1057. <para>An <see cref="T:System.Xml.XmlNodeList" /> containing a collection of nodes matching the XPath
  1058. query.</para>
  1059. </returns>
  1060. </member>
  1061. <member name="M:System.Xml.XmlNode.InsertBefore(System.Xml.XmlNode,System.Xml.XmlNode)">
  1062. <summary>
  1063. <para>Inserts the specified node immediately before the specified reference node.</para>
  1064. </summary>
  1065. <param name="newChild">The <see langword="XmlNode" /> to insert.</param>
  1066. <param name="refChild">The <see langword="XmlNode" /> that is the reference node. The <paramref name="newChild" /> is placed before this node.</param>
  1067. <returns>
  1068. The node being inserted.
  1069. </returns>
  1070. </member>
  1071. <member name="M:System.Xml.XmlNode.InsertAfter(System.Xml.XmlNode,System.Xml.XmlNode)">
  1072. <summary>
  1073. <para>Inserts the specified node immediately after the specified reference node.</para>
  1074. </summary>
  1075. <param name="newChild">The <see langword="XmlNode" /> to insert.</param>
  1076. <param name="refChild">The <see langword="XmlNode" /> that is the reference node. The <paramref name="newNode" /> is placed after the <paramref name="refNode" /> .</param>
  1077. <returns>
  1078. The node being inserted.
  1079. </returns>
  1080. </member>
  1081. <member name="M:System.Xml.XmlNode.ReplaceChild(System.Xml.XmlNode,System.Xml.XmlNode)">
  1082. <summary>
  1083. <para>Replaces the child node <paramref name="oldChild" />
  1084. with <paramref name="newChild" /> node.</para>
  1085. </summary>
  1086. <param name="newChild">The new node to put in the child list.</param>
  1087. <param name="oldChild">The node being replaced in the list.</param>
  1088. <returns>
  1089. <para>The node replaced.</para>
  1090. </returns>
  1091. </member>
  1092. <member name="M:System.Xml.XmlNode.RemoveChild(System.Xml.XmlNode)">
  1093. <summary>
  1094. <para>Removes specified child node.</para>
  1095. </summary>
  1096. <param name="oldChild">The node being removed.</param>
  1097. <returns>
  1098. <para>The node removed.</para>
  1099. </returns>
  1100. </member>
  1101. <member name="M:System.Xml.XmlNode.PrependChild(System.Xml.XmlNode)">
  1102. <summary>
  1103. <para>Adds the specified node to the beginning of the list of children of
  1104. this node.</para>
  1105. </summary>
  1106. <param name="newChild">The node to add. If it is an <see cref="T:System.Xml.XmlDocumentFragment" /> , the entire contents of the document fragment are moved into the child list of this node.</param>
  1107. <returns>
  1108. <para>The node added.</para>
  1109. </returns>
  1110. </member>
  1111. <member name="M:System.Xml.XmlNode.AppendChild(System.Xml.XmlNode)">
  1112. <summary>
  1113. <para>Adds the specified node to the end of the list of children of
  1114. this node.</para>
  1115. </summary>
  1116. <param name="newChild">The node to add. If it is a <see cref="T:System.Xml.XmlDocumentFragment" /> , the entire contents of the document fragment are moved into the child list of this node.</param>
  1117. <returns>
  1118. <para>The node added.</para>
  1119. </returns>
  1120. </member>
  1121. <member name="M:System.Xml.XmlNode.CloneNode(System.Boolean)">
  1122. <summary>
  1123. <para>When overridden in a derived class, creates a duplicate of the node.</para>
  1124. </summary>
  1125. <param name="deep">
  1126. <see langword="true" />to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
  1127. <returns>
  1128. <para>The cloned node.</para>
  1129. </returns>
  1130. </member>
  1131. <member name="M:System.Xml.XmlNode.Normalize">
  1132. <summary>
  1133. <para> Puts all XmlText nodes in the full depth of the sub-tree underneath
  1134. this XmlNode into a "normal" form where only markup
  1135. (that is, tags, comments, processing instructions, CDATA sections,
  1136. and entity references) separates XmlText nodes, that is, there
  1137. are no adjacent XmlText nodes.
  1138. </para>
  1139. </summary>
  1140. </member>
  1141. <member name="M:System.Xml.XmlNode.Supports(System.String,System.String)">
  1142. <summary>
  1143. <para> Test if the DOM implementation implements a specific feature.
  1144. </para>
  1145. </summary>
  1146. <param name="feature">The package name of the feature to test. This name is case-insensitive. </param>
  1147. <param name="version">This is the version number of the package name to test. If the version is not specified (null), supporting any version of the feature will cause the method to return true. </param>
  1148. <returns>
  1149. <para>
  1150. <see langword="true" /> if the feature is implemented in the specified version;
  1151. otherwise, <see langword="false" />.
  1152. </para>
  1153. The following table describes the combinations that
  1154. return <see langword="true" />.
  1155. <list type="table"><listheader><term> Feature</term><description> Version</description></listheader><item><term> XML</term><description> 1.0</description></item><item><term> XML</term><description>2.0</description></item></list></returns>
  1156. </member>
  1157. <member name="M:System.Xml.XmlNode.Clone">
  1158. <summary>
  1159. <para>Creates a duplicate of this node.</para>
  1160. </summary>
  1161. <returns>
  1162. <para>The cloned node.</para>
  1163. </returns>
  1164. </member>
  1165. <member name="M:System.Xml.XmlNode.GetEnumerator">
  1166. <summary>
  1167. <para> Provides support for the for each style iteration over
  1168. the nodes in the <see langword="XmlNode" />
  1169. .</para>
  1170. </summary>
  1171. <returns>
  1172. <para>An <see cref="T:System.Collections.IEnumerator" /> .</para>
  1173. </returns>
  1174. </member>
  1175. <member name="M:System.Xml.XmlNode.WriteTo(System.Xml.XmlWriter)">
  1176. <summary>
  1177. <para>When overridden in a derived class, saves the current node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  1178. </summary>
  1179. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  1180. </member>
  1181. <member name="M:System.Xml.XmlNode.WriteContentTo(System.Xml.XmlWriter)">
  1182. <summary>
  1183. <para>When overridden in a derived class, saves all the children of the node to the specified
  1184. <see cref="T:System.Xml.XmlWriter" /> .</para>
  1185. </summary>
  1186. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  1187. </member>
  1188. <member name="M:System.Xml.XmlNode.RemoveAll">
  1189. <summary>
  1190. <para>Removes all the children and/or attributes
  1191. of the current node.</para>
  1192. </summary>
  1193. </member>
  1194. <member name="M:System.Xml.XmlNode.GetNamespaceOfPrefix(System.String)">
  1195. <summary>
  1196. <para>Looks up the closest xmlns declaration for the given
  1197. prefix that is in scope for the current node and returns
  1198. the namespace URI in the declaration.</para>
  1199. </summary>
  1200. <param name="prefix">Prefix whose namespace URI you want to find</param>
  1201. <returns>
  1202. <para>The namespace URI of the specified prefix.</para>
  1203. </returns>
  1204. </member>
  1205. <member name="M:System.Xml.XmlNode.GetPrefixOfNamespace(System.String)">
  1206. <summary>
  1207. <para>Looks up the closest xmlns declaration for the given namespace
  1208. URI that is in scope for the current node and returns
  1209. the prefix defined in that declaration.</para>
  1210. </summary>
  1211. <param name="namespaceURI">Namespace URI whose prefix you want to find</param>
  1212. <returns>
  1213. <para>The prefix for the specified namespace URI.</para>
  1214. </returns>
  1215. </member>
  1216. <member name="P:System.Xml.XmlNode.Name">
  1217. <summary>
  1218. <para>When overridden in a derived class, gets the qualified name of the node.</para>
  1219. </summary>
  1220. </member>
  1221. <member name="P:System.Xml.XmlNode.Value">
  1222. <summary>
  1223. <para>Gets or sets the value of the node.</para>
  1224. </summary>
  1225. </member>
  1226. <member name="P:System.Xml.XmlNode.NodeType">
  1227. <summary>
  1228. <para>When overridden in a derived class, gets the type of the current node.</para>
  1229. </summary>
  1230. </member>
  1231. <member name="P:System.Xml.XmlNode.ParentNode">
  1232. <summary>
  1233. <para>Gets the parent of this node (for nodes that can have
  1234. parents).</para>
  1235. </summary>
  1236. </member>
  1237. <member name="P:System.Xml.XmlNode.ChildNodes">
  1238. <summary>
  1239. <para>Gets all the children of the node.</para>
  1240. </summary>
  1241. </member>
  1242. <member name="P:System.Xml.XmlNode.PreviousSibling">
  1243. <summary>
  1244. <para>Gets
  1245. the node immediately preceding this node.</para>
  1246. </summary>
  1247. </member>
  1248. <member name="P:System.Xml.XmlNode.NextSibling">
  1249. <summary>
  1250. <para>Gets
  1251. the node immediately following this node.</para>
  1252. </summary>
  1253. </member>
  1254. <member name="P:System.Xml.XmlNode.Attributes">
  1255. <summary>
  1256. <para>Gets an <see cref="T:System.Xml.XmlAttributeCollection" />
  1257. containing the attributes
  1258. of this node.</para>
  1259. </summary>
  1260. </member>
  1261. <member name="P:System.Xml.XmlNode.OwnerDocument">
  1262. <summary>
  1263. <para>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</para>
  1264. </summary>
  1265. </member>
  1266. <member name="P:System.Xml.XmlNode.FirstChild">
  1267. <summary>
  1268. <para>Gets the first child of the node.</para>
  1269. </summary>
  1270. </member>
  1271. <member name="P:System.Xml.XmlNode.LastChild">
  1272. <summary>
  1273. <para>Gets the last child of the node.</para>
  1274. </summary>
  1275. </member>
  1276. <member name="P:System.Xml.XmlNode.HasChildNodes">
  1277. <summary>
  1278. <para>Gets a value indicating whether this node has any child nodes.</para>
  1279. </summary>
  1280. </member>
  1281. <member name="P:System.Xml.XmlNode.NamespaceURI">
  1282. <summary>
  1283. <para>Gets the namespace URI of this node.</para>
  1284. </summary>
  1285. </member>
  1286. <member name="P:System.Xml.XmlNode.Prefix">
  1287. <summary>
  1288. <para>Gets or sets the namespace prefix of this node.</para>
  1289. </summary>
  1290. </member>
  1291. <member name="P:System.Xml.XmlNode.LocalName">
  1292. <summary>
  1293. <para> When overridden in a derived class, gets the local name of the node.</para>
  1294. </summary>
  1295. </member>
  1296. <member name="P:System.Xml.XmlNode.IsReadOnly">
  1297. <summary>
  1298. <para> Gets a value indicating whether the node is read-only.
  1299. </para>
  1300. </summary>
  1301. </member>
  1302. <member name="P:System.Xml.XmlNode.InnerText">
  1303. <summary>
  1304. <para>Gets or sets the concatenated values of the node and
  1305. all its children.</para>
  1306. </summary>
  1307. </member>
  1308. <member name="P:System.Xml.XmlNode.OuterXml">
  1309. <summary>
  1310. <para>Gets the markup
  1311. representing this node and all its children.</para>
  1312. </summary>
  1313. </member>
  1314. <member name="P:System.Xml.XmlNode.InnerXml">
  1315. <summary>
  1316. <para>Gets or sets the markup representing
  1317. just the children of this node.</para>
  1318. </summary>
  1319. </member>
  1320. <member name="P:System.Xml.XmlNode.BaseURI">
  1321. <summary>
  1322. <para>Gets the base URI of the current node.</para>
  1323. </summary>
  1324. </member>
  1325. <member name="P:System.Xml.XmlNode.Item(System.String)">
  1326. <summary>
  1327. <para> Gets the first child element with the specified
  1328. <see cref="P:System.Xml.XmlNode.Name" /> .</para>
  1329. </summary>
  1330. <param name="name">The qualified name of the element to retrieve</param>
  1331. </member>
  1332. <member name="P:System.Xml.XmlNode.Item(System.String,System.String)">
  1333. <summary>
  1334. <para> Gets the first child element with the
  1335. specified <see cref="P:System.Xml.XmlNode.LocalName" /> and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  1336. .</para>
  1337. </summary>
  1338. <param name="localname">The local name of the element.</param>
  1339. <param name=" ns">The namespace URI of the element.</param>
  1340. </member>
  1341. <member name="M:System.Xml.XmlAttribute.CloneNode(System.Boolean)">
  1342. <summary>
  1343. <para>Creates a duplicate of this node.</para>
  1344. </summary>
  1345. <param name="deep">
  1346. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself </param>
  1347. <returns>
  1348. <para>The duplicate node.</para>
  1349. </returns>
  1350. </member>
  1351. <member name="M:System.Xml.XmlAttribute.WriteTo(System.Xml.XmlWriter)">
  1352. <summary>
  1353. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  1354. </summary>
  1355. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  1356. </member>
  1357. <member name="M:System.Xml.XmlAttribute.WriteContentTo(System.Xml.XmlWriter)">
  1358. <summary>
  1359. <para>Saves all the children of the node to the specified
  1360. <see cref="T:System.Xml.XmlWriter" /> .</para>
  1361. </summary>
  1362. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  1363. </member>
  1364. <member name="P:System.Xml.XmlAttribute.ParentNode">
  1365. <summary>
  1366. Gets the parent of this node. For
  1367. <see langword="XmlAttribute" /> nodes, this property always returns
  1368. <see langword="null" />.
  1369. </summary>
  1370. </member>
  1371. <member name="P:System.Xml.XmlAttribute.Name">
  1372. <summary>
  1373. <para>Gets the qualified name of the node.</para>
  1374. </summary>
  1375. </member>
  1376. <member name="P:System.Xml.XmlAttribute.LocalName">
  1377. <summary>
  1378. <para> Gets the local name of the node.</para>
  1379. </summary>
  1380. </member>
  1381. <member name="P:System.Xml.XmlAttribute.NamespaceURI">
  1382. <summary>
  1383. <para>Gets the namespace URI of this node.</para>
  1384. </summary>
  1385. </member>
  1386. <member name="P:System.Xml.XmlAttribute.Prefix">
  1387. <summary>
  1388. <para>Gets or sets the namespace prefix of this node.</para>
  1389. </summary>
  1390. </member>
  1391. <member name="P:System.Xml.XmlAttribute.NodeType">
  1392. <summary>
  1393. <para>Gets the type of the current node.</para>
  1394. </summary>
  1395. </member>
  1396. <member name="P:System.Xml.XmlAttribute.OwnerDocument">
  1397. <summary>
  1398. <para>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</para>
  1399. </summary>
  1400. </member>
  1401. <member name="P:System.Xml.XmlAttribute.Value">
  1402. <summary>
  1403. <para>Gets or sets the value of the node.</para>
  1404. </summary>
  1405. </member>
  1406. <member name="P:System.Xml.XmlAttribute.InnerText">
  1407. <summary>
  1408. <para>Gets or sets the concatenated values of the node and all
  1409. its children.</para>
  1410. </summary>
  1411. </member>
  1412. <member name="P:System.Xml.XmlAttribute.Specified">
  1413. <summary>
  1414. <para>Gets a value indicating whether the attribute value was
  1415. explicitly set.</para>
  1416. </summary>
  1417. </member>
  1418. <member name="P:System.Xml.XmlAttribute.OwnerElement">
  1419. <summary>
  1420. <para>Gets the <see cref="T:System.Xml.XmlElement" /> to which the attribute
  1421. belongs.</para>
  1422. </summary>
  1423. </member>
  1424. <member name="P:System.Xml.XmlAttribute.InnerXml">
  1425. <summary>
  1426. <para> Gets or sets the markup representing
  1427. the children of this node.</para>
  1428. </summary>
  1429. </member>
  1430. <member name="P:System.Xml.XmlAttribute.BaseURI">
  1431. <summary>
  1432. <para>Gets the base URI of the node.</para>
  1433. </summary>
  1434. </member>
  1435. <member name="T:System.Xml.XmlAttributeCollection">
  1436. <summary>
  1437. <para>
  1438. Represents a collection of attributes that can be accessed by name or
  1439. index.
  1440. </para>
  1441. </summary>
  1442. </member>
  1443. <member name="T:System.Xml.XmlNamedNodeMap">
  1444. <summary>
  1445. <para>
  1446. Represents a
  1447. collection of nodes that can be accessed by name or index.
  1448. </para>
  1449. </summary>
  1450. </member>
  1451. <member name="M:System.Xml.XmlNamedNodeMap.GetNamedItem(System.String)">
  1452. <summary>
  1453. <para>Retrieves an <see cref="T:System.Xml.XmlNode" />
  1454. specified by name.</para>
  1455. </summary>
  1456. <param name="name">The qualified name of the node to retrieve. It is matched against the <see cref="P:System.Xml.XmlNode.Name" /> property of the matching node.</param>
  1457. <returns>
  1458. <para>An <see langword="XmlNode" /> with
  1459. the specified name or <see langword="null" /> if a matching node is
  1460. not found.</para>
  1461. </returns>
  1462. </member>
  1463. <member name="M:System.Xml.XmlNamedNodeMap.SetNamedItem(System.Xml.XmlNode)">
  1464. <summary>
  1465. <para>Adds an <see cref="T:System.Xml.XmlNode" /> using its <see cref="P:System.Xml.XmlNode.Name" /> property</para>
  1466. </summary>
  1467. <param name="node">An <see langword="XmlNode" /> to store in the <see langword="XmlNamedNodeMap" /> . If a node with that name is already present in the map, it is replaced by the new one.</param>
  1468. <returns>
  1469. <para>If the <paramref name="node" /> replaces an
  1470. existing node with the same name, the old node is returned;
  1471. otherwise, <see langword="null" />
  1472. is returned.</para>
  1473. </returns>
  1474. </member>
  1475. <member name="M:System.Xml.XmlNamedNodeMap.RemoveNamedItem(System.String)">
  1476. <summary>
  1477. <para>Removes the node from the
  1478. <see langword="XmlNamedNodeMap" /> .</para>
  1479. </summary>
  1480. <param name="name">The qualified name of the node to remove. The name is matched against the <see cref="P:System.Xml.XmlNode.Name" /> property of the matching node.</param>
  1481. <returns>
  1482. <para>The <see langword="XmlNode" /> removed from this
  1483. <see langword="XmlNamedNodeMap" /> or <see langword="null" /> if a
  1484. matching node was
  1485. not found. </para>
  1486. </returns>
  1487. </member>
  1488. <member name="M:System.Xml.XmlNamedNodeMap.Item(System.Int32)">
  1489. <summary>
  1490. <para>Retrieves the node at the specified index in the
  1491. <see langword="XmlNamedNodeMap" />
  1492. .</para>
  1493. </summary>
  1494. <param name="index">The index position of the node to retrieve from the <see langword="XmlNamedNodeMap" /> . The index is zero-based; therefore, the index of the first node is 0 and the index of the last node is <see cref="P:System.Xml.XmlNamedNodeMap.Count" /> -1.</param>
  1495. <returns>
  1496. <para>The <see cref="T:System.Xml.XmlNode" /> at the specified index. If <paramref name="index" /> is less than 0 or
  1497. greater than or equal to the <see cref="P:System.Xml.XmlNamedNodeMap.Count" />
  1498. property, <see langword="null" /> is returned.</para>
  1499. </returns>
  1500. </member>
  1501. <member name="M:System.Xml.XmlNamedNodeMap.GetNamedItem(System.String,System.String)">
  1502. <summary>
  1503. <para>Retrieves a node with the matching <see cref="P:System.Xml.XmlNode.LocalName" /> and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  1504. .</para>
  1505. </summary>
  1506. <param name="localName">The local name of the node to retrieve.</param>
  1507. <param name=" namespaceURI">The namespace URI of the node to retrieve.</param>
  1508. <returns>
  1509. <para>An <see cref="T:System.Xml.XmlNode" /> with
  1510. the matching local name and namespace URI or <see langword="null" /> if a
  1511. matching node was not found.</para>
  1512. </returns>
  1513. </member>
  1514. <member name="M:System.Xml.XmlNamedNodeMap.RemoveNamedItem(System.String,System.String)">
  1515. <summary>
  1516. <para> Removes a node with the matching <see cref="P:System.Xml.XmlNode.LocalName" />
  1517. and <see cref="P:System.Xml.XmlNode.NamespaceURI" /> .</para>
  1518. </summary>
  1519. <param name="localName">The local name of the node to remove.</param>
  1520. <param name=" namespaceURI">The namespace URI of the node to remove.</param>
  1521. <returns>
  1522. <para>The <see cref="T:System.Xml.XmlNode" /> removed or
  1523. <see langword="null" /> if a matching node was not found.</para>
  1524. </returns>
  1525. </member>
  1526. <member name="M:System.Xml.XmlNamedNodeMap.GetEnumerator">
  1527. <summary>
  1528. <para>Provides support for the "foreach" style iteration over
  1529. the collection of nodes in the <see langword="XmlNamedNodeMap" />
  1530. .</para>
  1531. </summary>
  1532. <returns>
  1533. <para>An <see cref="T:System.Collections.IEnumerator" /> .</para>
  1534. </returns>
  1535. </member>
  1536. <member name="P:System.Xml.XmlNamedNodeMap.Count">
  1537. <summary>
  1538. <para>Gets the number of nodes in the
  1539. <see langword="XmlNamedNodeMap" /> .</para>
  1540. </summary>
  1541. </member>
  1542. <member name="M:System.Xml.XmlAttributeCollection.SetNamedItem(System.Xml.XmlNode)">
  1543. <summary>
  1544. <para>Adds a <see cref="T:System.Xml.XmlNode" /> using its <see cref="P:System.Xml.XmlNode.Name" /> property</para>
  1545. </summary>
  1546. <param name="node">An attribute node to store in this collection. The node will later be accessible using the name of the node. If a node with that name is already present in the collection, it is replaced by the new one; otherwise, the node is appended to the end of the collection.</param>
  1547. <returns>
  1548. <para>If the <paramref name="node" /> replaces an
  1549. existing node with the same name, the old node is returned; otherwise, the added
  1550. node
  1551. is returned.</para>
  1552. </returns>
  1553. </member>
  1554. <member name="M:System.Xml.XmlAttributeCollection.Prepend(System.Xml.XmlAttribute)">
  1555. <summary>
  1556. <para>Inserts the specified attribute as the first node in the collection.</para>
  1557. </summary>
  1558. <param name="node">The <see cref="T:System.Xml.XmlAttribute" /> to insert.</param>
  1559. <returns>
  1560. <para>The <see langword="XmlAttribute" />
  1561. added to the collection.</para>
  1562. </returns>
  1563. </member>
  1564. <member name="M:System.Xml.XmlAttributeCollection.Append(System.Xml.XmlAttribute)">
  1565. <summary>
  1566. <para>Inserts the specified attribute as the last node in the collection.</para>
  1567. </summary>
  1568. <param name="node">The <see cref="T:System.Xml.XmlAttribute" /> to insert.</param>
  1569. <returns>
  1570. <para>The <see langword="XmlAttribute" /> to
  1571. append to the collection.</para>
  1572. </returns>
  1573. </member>
  1574. <member name="M:System.Xml.XmlAttributeCollection.InsertBefore(System.Xml.XmlAttribute,System.Xml.XmlAttribute)">
  1575. <summary>
  1576. <para>Inserts the specified attribute immediately before the specified reference attribute.</para>
  1577. </summary>
  1578. <param name="newNode">The <see cref="T:System.Xml.XmlAttribute" /> to insert.</param>
  1579. <param name="refNode">The <see cref="T:System.Xml.XmlAttribute" /> that is the reference attribute. <paramref name="newNode" /> is placed before the <paramref name="refNode" /> .</param>
  1580. <returns>
  1581. <para>The <see langword="XmlAttribute" /> to insert into the
  1582. collection.</para>
  1583. </returns>
  1584. </member>
  1585. <member name="M:System.Xml.XmlAttributeCollection.InsertAfter(System.Xml.XmlAttribute,System.Xml.XmlAttribute)">
  1586. <summary>
  1587. <para>Inserts the specified attribute immediately after the specified reference attribute.</para>
  1588. </summary>
  1589. <param name="newNode">The <see cref="T:System.Xml.XmlAttribute" /> to insert.</param>
  1590. <param name="refNode">The <see cref="T:System.Xml.XmlAttribute" /> that is the reference attribute. <paramref name="newNode" /> is placed after the <paramref name="refNode" /> .</param>
  1591. <returns>
  1592. <para>The <see langword="XmlAttribute" /> to
  1593. insert into the collection.</para>
  1594. </returns>
  1595. </member>
  1596. <member name="M:System.Xml.XmlAttributeCollection.Remove(System.Xml.XmlAttribute)">
  1597. <summary>
  1598. <para> Removes the specified attribute from the collection.</para>
  1599. </summary>
  1600. <param name="node">The <see cref="T:System.Xml.XmlAttribute" /> to remove.</param>
  1601. <returns>
  1602. <para>The node removed
  1603. or <see langword="null" /> if it is not found in the collection.</para>
  1604. </returns>
  1605. </member>
  1606. <member name="M:System.Xml.XmlAttributeCollection.RemoveAt(System.Int32)">
  1607. <summary>
  1608. <para>Removes the attribute corresponding to the specified index from the collection.</para>
  1609. </summary>
  1610. <param name="i">The index of the node to remove. The first node has index 0.</param>
  1611. <returns>
  1612. <para>Returns <see langword="null" /> if
  1613. there is no attribute at the specified index.</para>
  1614. </returns>
  1615. </member>
  1616. <member name="M:System.Xml.XmlAttributeCollection.RemoveAll">
  1617. <summary>
  1618. <para>Removes all attributes from the collection.</para>
  1619. </summary>
  1620. </member>
  1621. <member name="M:System.Xml.XmlAttributeCollection.CopyTo(System.Xml.XmlAttribute[],System.Int32)">
  1622. <summary>
  1623. <para> Copies all the <see cref="T:System.Xml.XmlAttribute" /> objects from
  1624. this collection into the given array.</para>
  1625. </summary>
  1626. <param name="array">The array that is the destination of the objects copied from this collection.</param>
  1627. <param name=" index">The index in <paramref name="array" /> where copying begins. </param>
  1628. </member>
  1629. <member name="P:System.Xml.XmlAttributeCollection.ItemOf(System.Int32)">
  1630. <summary>
  1631. <para>Gets the attribute with the specified index.</para>
  1632. </summary>
  1633. <param name="i">The index of the attribute.</param>
  1634. </member>
  1635. <member name="P:System.Xml.XmlAttributeCollection.ItemOf(System.String)">
  1636. <summary>
  1637. <para>Gets the attribute with the specified name.</para>
  1638. </summary>
  1639. <param name="name">The qualified name of the attribute.</param>
  1640. </member>
  1641. <member name="P:System.Xml.XmlAttributeCollection.ItemOf(System.String,System.String)">
  1642. <summary>
  1643. <para>Gets the attribute with the specified local name and namespace URI.</para>
  1644. </summary>
  1645. <param name="localName">The local name of the attribute.</param>
  1646. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  1647. </member>
  1648. <member name="T:System.Xml.XmlCDataSection">
  1649. <summary>
  1650. Represents a CDATA section.
  1651. </summary>
  1652. </member>
  1653. <member name="T:System.Xml.XmlCharacterData">
  1654. <summary>
  1655. Provides text manipulation methods that are used by
  1656. several classes.
  1657. </summary>
  1658. </member>
  1659. <member name="T:System.Xml.XmlLinkedNode">
  1660. <summary>
  1661. <para>Gets the node immediately preceding or following this node.</para>
  1662. </summary>
  1663. </member>
  1664. <member name="P:System.Xml.XmlLinkedNode.PreviousSibling">
  1665. <summary>
  1666. <para>Gets the node immediately preceding this
  1667. node.</para>
  1668. </summary>
  1669. </member>
  1670. <member name="P:System.Xml.XmlLinkedNode.NextSibling">
  1671. <summary>
  1672. <para>Gets the node immediately following this
  1673. node.</para>
  1674. </summary>
  1675. </member>
  1676. <member name="M:System.Xml.XmlCharacterData.Substring(System.Int32,System.Int32)">
  1677. <summary>
  1678. <para> Retrieves a substring, of the full string, from the specified range.
  1679. </para>
  1680. </summary>
  1681. <param name="offset">The position within the string to start retrieving. An offset of zero indicates the starting point is at the start of the data. </param>
  1682. <param name=" count">The number of characters to retrieve. </param>
  1683. <returns>
  1684. The substring corresponding to the
  1685. specified range.
  1686. </returns>
  1687. </member>
  1688. <member name="M:System.Xml.XmlCharacterData.AppendData(System.String)">
  1689. <summary>
  1690. <para> Appends the specified string to the end of the character
  1691. data of the node.
  1692. </para>
  1693. </summary>
  1694. <param name="strData">The string to insert into the existing string. </param>
  1695. </member>
  1696. <member name="M:System.Xml.XmlCharacterData.InsertData(System.Int32,System.String)">
  1697. <summary>
  1698. <para> Insert the specified string at the specified character offset.
  1699. </para>
  1700. </summary>
  1701. <param name="offset">The position within the string to insert the supplied string data. </param>
  1702. <param name="strData">The string data that is to be inserted into the existing string. </param>
  1703. </member>
  1704. <member name="M:System.Xml.XmlCharacterData.DeleteData(System.Int32,System.Int32)">
  1705. <summary>
  1706. <para>Remove a range of characters from the node.</para>
  1707. </summary>
  1708. <param name="offset">The position within the string to start deleting. </param>
  1709. <param name=" count">The number of characters to delete. </param>
  1710. </member>
  1711. <member name="M:System.Xml.XmlCharacterData.ReplaceData(System.Int32,System.Int32,System.String)">
  1712. <summary>
  1713. <para>Replace the specified number of characters starting at the specified offset with the
  1714. specified string.</para>
  1715. </summary>
  1716. <param name="offset">The position within the string to start replacing. </param>
  1717. <param name=" count">The number of characters to replace. </param>
  1718. <param name="strData">The new data that replaces the old string data. </param>
  1719. </member>
  1720. <member name="P:System.Xml.XmlCharacterData.Value">
  1721. <summary>
  1722. <para>Gets or sets the value of the node.</para>
  1723. </summary>
  1724. </member>
  1725. <member name="P:System.Xml.XmlCharacterData.InnerText">
  1726. <summary>
  1727. <para> Gets or sets the concatenated values of the node and all the children
  1728. of the node.
  1729. </para>
  1730. </summary>
  1731. </member>
  1732. <member name="P:System.Xml.XmlCharacterData.Data">
  1733. <summary>
  1734. <para> Contains the data of the node.
  1735. </para>
  1736. </summary>
  1737. </member>
  1738. <member name="P:System.Xml.XmlCharacterData.Length">
  1739. <summary>
  1740. <para>Gets the length of the data, in characters.</para>
  1741. </summary>
  1742. </member>
  1743. <member name="M:System.Xml.XmlCDataSection.CloneNode(System.Boolean)">
  1744. <summary>
  1745. <para>Creates a duplicate of this node.</para>
  1746. </summary>
  1747. <param name="deep">
  1748. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself. Because CDATA nodes do not have children, regardless of the parameter setting, the cloned node will always include the data content .</param>
  1749. <returns>
  1750. <para>The cloned node.</para>
  1751. </returns>
  1752. </member>
  1753. <member name="M:System.Xml.XmlCDataSection.WriteTo(System.Xml.XmlWriter)">
  1754. <summary>
  1755. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  1756. </summary>
  1757. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  1758. </member>
  1759. <member name="M:System.Xml.XmlCDataSection.WriteContentTo(System.Xml.XmlWriter)">
  1760. <summary>
  1761. <para>Saves the children of the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  1762. </summary>
  1763. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  1764. </member>
  1765. <member name="P:System.Xml.XmlCDataSection.Name">
  1766. <summary>
  1767. <para>Gets the qualified name of the node.</para>
  1768. </summary>
  1769. </member>
  1770. <member name="P:System.Xml.XmlCDataSection.LocalName">
  1771. <summary>
  1772. <para> Gets the local name of the node.</para>
  1773. </summary>
  1774. </member>
  1775. <member name="P:System.Xml.XmlCDataSection.NodeType">
  1776. <summary>
  1777. <para>Gets the type of the current node.</para>
  1778. </summary>
  1779. </member>
  1780. <member name="T:System.Xml.XmlNodeList">
  1781. <summary>
  1782. <para>Represents an ordered collection of nodes.</para>
  1783. </summary>
  1784. </member>
  1785. <member name="M:System.Xml.XmlNodeList.Item(System.Int32)">
  1786. <summary>
  1787. <para>Retrieves a node at the given index.</para>
  1788. </summary>
  1789. <param name="index">Zero-based index into the list of nodes.</param>
  1790. <returns>
  1791. <para>The <see cref="T:System.Xml.XmlNode" /> in the collection. If <paramref name="index" /> is greater
  1792. than or equal to the number of nodes in the list, this returns
  1793. <see langword="null" />
  1794. .</para>
  1795. </returns>
  1796. </member>
  1797. <member name="M:System.Xml.XmlNodeList.GetEnumerator">
  1798. <summary>
  1799. <para>Provides a simple "foreach" style iteration over the
  1800. collection of nodes in the <see langword="XmlNodeList" />
  1801. .</para>
  1802. </summary>
  1803. <returns>
  1804. <para>An <see cref="T:System.Collections.IEnumerator" /> .</para>
  1805. </returns>
  1806. </member>
  1807. <member name="P:System.Xml.XmlNodeList.Count">
  1808. <summary>
  1809. <para>Gets the number of nodes in the
  1810. <see langword="XmlNodeList" /> .</para>
  1811. </summary>
  1812. </member>
  1813. <member name="P:System.Xml.XmlNodeList.ItemOf(System.Int32)">
  1814. <summary>
  1815. <para>Retrieves a node at the given index.</para>
  1816. </summary>
  1817. <param name="i">Zero-based index into the list of nodes.</param>
  1818. </member>
  1819. <member name="T:System.Xml.XmlComment">
  1820. <summary>
  1821. <para> Represents the content of an XML comment.
  1822. </para>
  1823. </summary>
  1824. </member>
  1825. <member name="M:System.Xml.XmlComment.CloneNode(System.Boolean)">
  1826. <summary>
  1827. <para>Creates a duplicate of this node.</para>
  1828. </summary>
  1829. <param name="deep">
  1830. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself. Because comment nodes do not have children, the cloned node always includes the text content, regardless of the parameter setting.</param>
  1831. <returns>
  1832. <para>The cloned node.</para>
  1833. </returns>
  1834. </member>
  1835. <member name="M:System.Xml.XmlComment.WriteTo(System.Xml.XmlWriter)">
  1836. <summary>
  1837. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  1838. </summary>
  1839. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  1840. </member>
  1841. <member name="M:System.Xml.XmlComment.WriteContentTo(System.Xml.XmlWriter)">
  1842. <summary>
  1843. <para>Saves all the children of the node to the specified
  1844. <see cref="T:System.Xml.XmlWriter" /> . Because comment
  1845. nodes do not have children this method has no effect.</para>
  1846. </summary>
  1847. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  1848. </member>
  1849. <member name="P:System.Xml.XmlComment.Name">
  1850. <summary>
  1851. <para>Gets the qualified name of the node.</para>
  1852. </summary>
  1853. </member>
  1854. <member name="P:System.Xml.XmlComment.LocalName">
  1855. <summary>
  1856. <para> Gets the local name of the node.</para>
  1857. </summary>
  1858. </member>
  1859. <member name="P:System.Xml.XmlComment.NodeType">
  1860. <summary>
  1861. <para>Gets the type of the current node.</para>
  1862. </summary>
  1863. </member>
  1864. <member name="T:System.Xml.XmlConvert">
  1865. <summary>
  1866. <para>Encodes and decodes XML names and provides methods for
  1867. converting between common language runtime types and XML Schema definition
  1868. language (XSD) types. When converting data types the values returned are locale independent.</para>
  1869. </summary>
  1870. </member>
  1871. <member name="M:System.Xml.XmlConvert.EncodeName(System.String)">
  1872. <summary>
  1873. <para> Converts the
  1874. name to a valid XML name.</para>
  1875. </summary>
  1876. <param name="name">A name to be translated.</param>
  1877. <returns>
  1878. <para>Returns the name with any invalid characters replaced by
  1879. an escape string.</para>
  1880. </returns>
  1881. </member>
  1882. <member name="M:System.Xml.XmlConvert.EncodeNmToken(System.String)">
  1883. <summary>
  1884. <para> Verifies the
  1885. name is valid according to the XML specification.</para>
  1886. </summary>
  1887. <param name="name">The name to be encoded.</param>
  1888. <returns>
  1889. <para>The encoded name.</para>
  1890. </returns>
  1891. </member>
  1892. <member name="M:System.Xml.XmlConvert.EncodeLocalName(System.String)">
  1893. <summary>
  1894. <para> Converts the name to a valid XML local name.</para>
  1895. </summary>
  1896. <param name="name">The name to be encoded.</param>
  1897. <returns>
  1898. <para>The encoded name.</para>
  1899. </returns>
  1900. </member>
  1901. <member name="M:System.Xml.XmlConvert.DecodeName(System.String)">
  1902. <summary>
  1903. <para> Decodes a name. This method does the reverse of
  1904. the <see cref="M:System.Xml.XmlConvert.EncodeName(System.String)" /> and <see cref="M:System.Xml.XmlConvert.EncodeLocalName(System.String)" /> methods.</para>
  1905. </summary>
  1906. <param name="name">The name to be transformed.</param>
  1907. <returns>
  1908. <para>The decoded name.</para>
  1909. </returns>
  1910. </member>
  1911. <member name="M:System.Xml.XmlConvert.VerifyName(System.String)">
  1912. <summary>
  1913. <para> Verifies that the name is a valid name according
  1914. to the W3C Extended Markup Language recommendation.</para>
  1915. </summary>
  1916. <param name="name">The name to verify.</param>
  1917. <returns>
  1918. <para>The name, if it is a valid XML name.</para>
  1919. </returns>
  1920. </member>
  1921. <member name="M:System.Xml.XmlConvert.VerifyNCName(System.String)">
  1922. <summary>
  1923. <para>Verifies that the name is a valid NCName according to
  1924. the W3C Extended Markup Language recommendation.</para>
  1925. </summary>
  1926. <param name="name">The name to verify.</param>
  1927. <returns>
  1928. <para>The name, if it is a valid NCName.</para>
  1929. </returns>
  1930. </member>
  1931. <member name="M:System.Xml.XmlConvert.ToString(System.Boolean)">
  1932. <summary>
  1933. <para>Converts the <see cref="T:System.Boolean" /> to a <see cref="T:System.String" />.</para>
  1934. </summary>
  1935. <param name="value">The value to convert.</param>
  1936. <returns>
  1937. <para>A string representation of the <see langword="Boolean" />,
  1938. that is, "true" or "false".</para>
  1939. </returns>
  1940. </member>
  1941. <member name="M:System.Xml.XmlConvert.ToString(System.Char)">
  1942. <summary>
  1943. <para>Converts the <see cref="T:System.Char" /> to a <see cref="T:System.String" /> .</para>
  1944. </summary>
  1945. <param name="value">The value to convert.</param>
  1946. <returns>
  1947. <para>A string representation of the <see langword="Char" />
  1948. .</para>
  1949. </returns>
  1950. </member>
  1951. <member name="M:System.Xml.XmlConvert.ToString(System.Decimal)">
  1952. <summary>
  1953. <para>Converts the <see cref="T:System.Decimal" /> to a <see cref="T:System.String" /> .</para>
  1954. </summary>
  1955. <param name="value">The value to convert.</param>
  1956. <returns>
  1957. <para>A string representation of the
  1958. <see langword="Decimal" />
  1959. .</para>
  1960. </returns>
  1961. </member>
  1962. <member name="M:System.Xml.XmlConvert.ToString(System.SByte)">
  1963. <summary>
  1964. <para>Converts the <see cref="T:System.SByte" /> to a <see cref="T:System.String" /> .</para>
  1965. </summary>
  1966. <param name="value">The value to convert.</param>
  1967. <returns>
  1968. <para>A string representation of the
  1969. <see langword="SByte" />.</para>
  1970. </returns>
  1971. </member>
  1972. <member name="M:System.Xml.XmlConvert.ToString(System.Int16)">
  1973. <summary>
  1974. <para>Converts the <see cref="T:System.Int16" /> to a <see cref="T:System.String" /> .</para>
  1975. </summary>
  1976. <param name="value">The value to convert.</param>
  1977. <returns>
  1978. <para>A string representation of the
  1979. <see langword="Int16" />.</para>
  1980. </returns>
  1981. </member>
  1982. <member name="M:System.Xml.XmlConvert.ToString(System.Int32)">
  1983. <summary>
  1984. <para>Converts the <see cref="T:System.Int32" /> to a <see cref="T:System.String" /> .</para>
  1985. </summary>
  1986. <param name="value">The value to convert.</param>
  1987. <returns>
  1988. <para>A string representation of the
  1989. <see langword="Int32" />.</para>
  1990. </returns>
  1991. </member>
  1992. <member name="M:System.Xml.XmlConvert.ToString(System.Int64)">
  1993. <summary>
  1994. <para>Converts the <see cref="T:System.Int64" /> to a <see cref="T:System.String" /> .</para>
  1995. </summary>
  1996. <param name="value">The value to convert.</param>
  1997. <returns>
  1998. <para>A string representation of the
  1999. <see langword="Int64" />.</para>
  2000. </returns>
  2001. </member>
  2002. <member name="M:System.Xml.XmlConvert.ToString(System.Byte)">
  2003. <summary>
  2004. <para>Converts the <see cref="T:System.Byte" /> to a <see cref="T:System.String" /> .</para>
  2005. </summary>
  2006. <param name="value">The value to convert.</param>
  2007. <returns>
  2008. <para>A string representation of the
  2009. <see langword="Byte" />.</para>
  2010. </returns>
  2011. </member>
  2012. <member name="M:System.Xml.XmlConvert.ToString(System.UInt16)">
  2013. <summary>
  2014. <para>Converts the <see cref="T:System.UInt16" /> to a <see cref="T:System.String" /> .</para>
  2015. </summary>
  2016. <param name="value">The value to convert.</param>
  2017. <returns>
  2018. <para>A string representation of the
  2019. <see langword="UInt16" />.</para>
  2020. </returns>
  2021. </member>
  2022. <member name="M:System.Xml.XmlConvert.ToString(System.UInt32)">
  2023. <summary>
  2024. <para>Converts the <see cref="T:System.UInt32" /> to a <see cref="T:System.String" /> .</para>
  2025. </summary>
  2026. <param name="value">The value to convert.</param>
  2027. <returns>
  2028. <para>A string representation of the
  2029. <see langword="UInt32" />.</para>
  2030. </returns>
  2031. </member>
  2032. <member name="M:System.Xml.XmlConvert.ToString(System.UInt64)">
  2033. <summary>
  2034. <para>Converts the <see cref="T:System.UInt64" /> to a <see cref="T:System.String" /> .</para>
  2035. </summary>
  2036. <param name="value">The value to convert.</param>
  2037. <returns>
  2038. A string representation of the
  2039. <see langword="UInt64" />.
  2040. </returns>
  2041. </member>
  2042. <member name="M:System.Xml.XmlConvert.ToString(System.Single)">
  2043. <summary>
  2044. <para>Converts the <see cref="T:System.Single" /> to a <see cref="T:System.String" /> .</para>
  2045. </summary>
  2046. <param name="value">The value to convert.</param>
  2047. <returns>
  2048. <para>A string representation of the
  2049. <see langword="Single" />.</para>
  2050. </returns>
  2051. </member>
  2052. <member name="M:System.Xml.XmlConvert.ToString(System.Double)">
  2053. <summary>
  2054. <para>Converts the <see cref="T:System.Double" /> to a <see cref="T:System.String" /> .</para>
  2055. </summary>
  2056. <param name="value">The value to convert.</param>
  2057. <returns>
  2058. <para>A string representation of the
  2059. <see langword="Double" />.</para>
  2060. </returns>
  2061. </member>
  2062. <member name="M:System.Xml.XmlConvert.ToString(System.TimeSpan)">
  2063. <summary>
  2064. <para>Converts the <see cref="T:System.TimeSpan" /> to a <see cref="T:System.String" /> .</para>
  2065. </summary>
  2066. <param name="value">The value to convert.</param>
  2067. <returns>
  2068. <para>A string representation of the
  2069. <see langword="TimeSpan" />.</para>
  2070. </returns>
  2071. </member>
  2072. <member name="M:System.Xml.XmlConvert.ToString(System.DateTime)">
  2073. <summary>
  2074. <para>Converts the <see cref="T:System.DateTime" /> to a <see cref="T:System.String" /> .</para>
  2075. </summary>
  2076. <param name="value">The value to convert.</param>
  2077. <returns>
  2078. <para>A string representation of the
  2079. <see langword="DateTime" /> in the format yyyy-MM-ddTHH:mm:ss where 'T' is a constant literal.</para>
  2080. </returns>
  2081. </member>
  2082. <member name="M:System.Xml.XmlConvert.ToString(System.DateTime,System.String)">
  2083. <summary>
  2084. <para>Converts the <see cref="T:System.DateTime" /> to a <see cref="T:System.String" /> .</para>
  2085. </summary>
  2086. <param name="value">The value to convert.</param>
  2087. <param name=" format">The format structure that defines how to display the converted string. Valid formats include "yyyy-MM-ddTHH:mm:sszzzzzz" and its subsets. </param>
  2088. <returns>
  2089. A string representation of the
  2090. <see langword="DateTime" /> in the specified format.
  2091. </returns>
  2092. </member>
  2093. <member name="M:System.Xml.XmlConvert.ToString(System.Guid)">
  2094. <summary>
  2095. <para>Converts the <see cref="T:System.Guid" /> to a <see cref="T:System.String" /> .</para>
  2096. </summary>
  2097. <param name="value">The value to convert.</param>
  2098. <returns>
  2099. <para>A string representation of the
  2100. <see langword="Guid" />.</para>
  2101. </returns>
  2102. </member>
  2103. <member name="M:System.Xml.XmlConvert.ToBoolean(System.String)">
  2104. <summary>
  2105. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Boolean" /> equivalent.</para>
  2106. </summary>
  2107. <param name="s">The string to convert.</param>
  2108. <returns>
  2109. <para>A <see langword="Boolean" /> value,
  2110. that is,
  2111. <see langword="true" /> or <see langword="false" />.</para>
  2112. </returns>
  2113. </member>
  2114. <member name="M:System.Xml.XmlConvert.ToChar(System.String)">
  2115. <summary>
  2116. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Char" /> equivalent.</para>
  2117. </summary>
  2118. <param name="s">The string to convert.</param>
  2119. <returns>
  2120. <para>A <see langword="Char" /> representing
  2121. the first character in the string.</para>
  2122. </returns>
  2123. </member>
  2124. <member name="M:System.Xml.XmlConvert.ToDecimal(System.String)">
  2125. <summary>
  2126. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Decimal" /> equivalent.</para>
  2127. </summary>
  2128. <param name="s">The string to convert.</param>
  2129. <returns>
  2130. <para>A <see langword="Decimal" />
  2131. equivalent of the string.</para>
  2132. </returns>
  2133. </member>
  2134. <member name="M:System.Xml.XmlConvert.ToSByte(System.String)">
  2135. <summary>
  2136. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.SByte" /> equivalent.</para>
  2137. </summary>
  2138. <param name="s">The string to convert.</param>
  2139. <returns>
  2140. <para>An <see langword="SByte" />
  2141. equivalent of the string.</para>
  2142. </returns>
  2143. </member>
  2144. <member name="M:System.Xml.XmlConvert.ToInt16(System.String)">
  2145. <summary>
  2146. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int16" /> equivalent.</para>
  2147. </summary>
  2148. <param name="s">The string to convert.</param>
  2149. <returns>
  2150. <para>An <see langword="Int16" />
  2151. equivalent of the string.</para>
  2152. </returns>
  2153. </member>
  2154. <member name="M:System.Xml.XmlConvert.ToInt32(System.String)">
  2155. <summary>
  2156. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int32" /> equivalent.</para>
  2157. </summary>
  2158. <param name="s">The string to convert.</param>
  2159. <returns>
  2160. <para>An <see langword="Int32" />
  2161. equivalent of the string.</para>
  2162. </returns>
  2163. </member>
  2164. <member name="M:System.Xml.XmlConvert.ToInt64(System.String)">
  2165. <summary>
  2166. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int64" /> equivalent.</para>
  2167. </summary>
  2168. <param name="s">The string to convert.</param>
  2169. <returns>
  2170. <para>An <see langword="Int64" />
  2171. equivalent of the string.</para>
  2172. </returns>
  2173. </member>
  2174. <member name="M:System.Xml.XmlConvert.ToByte(System.String)">
  2175. <summary>
  2176. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Byte" /> equivalent.</para>
  2177. </summary>
  2178. <param name="s">The string to convert.</param>
  2179. <returns>
  2180. <para>A <see langword="Byte" />
  2181. equivalent of the string.</para>
  2182. </returns>
  2183. </member>
  2184. <member name="M:System.Xml.XmlConvert.ToUInt16(System.String)">
  2185. <summary>
  2186. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt16" /> equivalent.</para>
  2187. </summary>
  2188. <param name="s">The string to convert.</param>
  2189. <returns>
  2190. <para>A <see langword="UInt16" />
  2191. equivalent of the string.</para>
  2192. </returns>
  2193. </member>
  2194. <member name="M:System.Xml.XmlConvert.ToUInt32(System.String)">
  2195. <summary>
  2196. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt32" /> equivalent.</para>
  2197. </summary>
  2198. <param name="s">The string to convert.</param>
  2199. <returns>
  2200. <para>A <see langword="UInt32" />
  2201. equivalent of the string.</para>
  2202. </returns>
  2203. </member>
  2204. <member name="M:System.Xml.XmlConvert.ToUInt64(System.String)">
  2205. <summary>
  2206. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt64" /> equivalent.</para>
  2207. </summary>
  2208. <param name="s">The string to convert.</param>
  2209. <returns>
  2210. <para>A <see langword="UInt64" />
  2211. equivalent of the string.</para>
  2212. </returns>
  2213. </member>
  2214. <member name="M:System.Xml.XmlConvert.ToSingle(System.String)">
  2215. <summary>
  2216. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Single" /> equivalent.</para>
  2217. </summary>
  2218. <param name="s">The string to convert.</param>
  2219. <returns>
  2220. <para>A <see langword="Single" />
  2221. equivalent of the string.</para>
  2222. </returns>
  2223. </member>
  2224. <member name="M:System.Xml.XmlConvert.ToDouble(System.String)">
  2225. <summary>
  2226. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Double" /> equivalent.</para>
  2227. </summary>
  2228. <param name="s">The string to convert.</param>
  2229. <returns>
  2230. <para>A <see langword="Double" />
  2231. equivalent of the string.</para>
  2232. </returns>
  2233. </member>
  2234. <member name="M:System.Xml.XmlConvert.ToTimeSpan(System.String)">
  2235. <summary>
  2236. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.TimeSpan" /> equivalent.</para>
  2237. </summary>
  2238. <param name="s">The string to convert.</param>
  2239. <returns>
  2240. <para>A <see langword="TimeSpan" />
  2241. equivalent of the string.</para>
  2242. </returns>
  2243. </member>
  2244. <member name="M:System.Xml.XmlConvert.ToDateTime(System.String)">
  2245. <summary>
  2246. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> equivalent.</para>
  2247. </summary>
  2248. <param name="s">The string to convert.</param>
  2249. <returns>
  2250. <para>A <see langword="DateTime" />
  2251. equivalent of the string.</para>
  2252. </returns>
  2253. </member>
  2254. <member name="M:System.Xml.XmlConvert.ToDateTime(System.String,System.String)">
  2255. <summary>
  2256. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> equivalent.</para>
  2257. </summary>
  2258. <param name="s">The string to convert.</param>
  2259. <param name=" format">The format structure to apply to the converted <see langword="DateTime" />. Valid formats include "yyyy-MM-ddTHH:mm:sszzzzzz" and its subsets. The string is validated against this format.</param>
  2260. <returns>
  2261. A <see langword="DateTime" /> equivalent
  2262. of the string.
  2263. </returns>
  2264. </member>
  2265. <member name="M:System.Xml.XmlConvert.ToDateTime(System.String,System.String[])">
  2266. <summary>
  2267. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> equivalent.</para>
  2268. </summary>
  2269. <param name="s">The string to convert.</param>
  2270. <param name=" formats">An array containing the format structures to apply to the converted <see langword="DateTime" /> . Valid formats include "yyyy-MM-ddTHH:mm:sszzzzzz" and its subsets.</param>
  2271. <returns>
  2272. <para>A <see langword="DateTime" /> equivalent
  2273. of the string.</para>
  2274. </returns>
  2275. </member>
  2276. <member name="M:System.Xml.XmlConvert.ToGuid(System.String)">
  2277. <summary>
  2278. <para>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Guid" /> equivalent.</para>
  2279. </summary>
  2280. <param name="s">The string to convert.</param>
  2281. <returns>
  2282. <para>A <see langword="Guid" />
  2283. equivalent of the string.</para>
  2284. </returns>
  2285. </member>
  2286. <member name="T:System.Xml.XmlDeclaration">
  2287. <summary>
  2288. <para>Represents the XML declaration node: &lt;?xml version='1.0' ...?&gt;. </para>
  2289. </summary>
  2290. </member>
  2291. <member name="M:System.Xml.XmlDeclaration.CloneNode(System.Boolean)">
  2292. <summary>
  2293. <para>Creates a duplicate of this node.</para>
  2294. </summary>
  2295. <param name="deep">
  2296. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself. Because <see langword="XmlDeclaration" /> nodes do not have children, the cloned node always includes the data value, regardless of the parameter setting.</param>
  2297. <returns>
  2298. <para>The cloned node.</para>
  2299. </returns>
  2300. </member>
  2301. <member name="M:System.Xml.XmlDeclaration.WriteTo(System.Xml.XmlWriter)">
  2302. <summary>
  2303. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  2304. </summary>
  2305. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  2306. </member>
  2307. <member name="M:System.Xml.XmlDeclaration.WriteContentTo(System.Xml.XmlWriter)">
  2308. <summary>
  2309. <para> Saves the children of the node to the specified
  2310. <see cref="T:System.Xml.XmlWriter" /> .</para>
  2311. <para>Because <see langword="XmlDeclaration" /> nodes
  2312. do not have children, this method has no effect.</para>
  2313. </summary>
  2314. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  2315. </member>
  2316. <member name="P:System.Xml.XmlDeclaration.Version">
  2317. <summary>
  2318. <para> Gets the
  2319. XML version of the document.</para>
  2320. </summary>
  2321. </member>
  2322. <member name="P:System.Xml.XmlDeclaration.Encoding">
  2323. <summary>
  2324. <para>Gets or sets the encoding level of the XML
  2325. document.</para>
  2326. </summary>
  2327. </member>
  2328. <member name="P:System.Xml.XmlDeclaration.Standalone">
  2329. <summary>
  2330. <para>Gets or sets the value of the standalone attribute.</para>
  2331. </summary>
  2332. </member>
  2333. <member name="P:System.Xml.XmlDeclaration.Value">
  2334. <summary>
  2335. <para>Gets or sets the value of the
  2336. <see langword="XmlDeclaration" />.</para>
  2337. </summary>
  2338. </member>
  2339. <member name="P:System.Xml.XmlDeclaration.InnerText">
  2340. <summary>
  2341. <para> Gets or sets the concatenated values of the
  2342. <see langword="XmlDeclaration" />
  2343. .</para>
  2344. </summary>
  2345. </member>
  2346. <member name="P:System.Xml.XmlDeclaration.Name">
  2347. <summary>
  2348. <para>Gets the qualified name of the node.</para>
  2349. </summary>
  2350. </member>
  2351. <member name="P:System.Xml.XmlDeclaration.LocalName">
  2352. <summary>
  2353. <para> Gets the local name of the node.</para>
  2354. </summary>
  2355. </member>
  2356. <member name="P:System.Xml.XmlDeclaration.NodeType">
  2357. <summary>
  2358. <para>Gets the type of the current node.</para>
  2359. </summary>
  2360. </member>
  2361. <member name="T:System.Xml.XmlDocument">
  2362. <summary>
  2363. <para> Represents an XML
  2364. document.
  2365. </para>
  2366. </summary>
  2367. </member>
  2368. <member name="M:System.Xml.XmlDocument.#ctor">
  2369. <summary>
  2370. <para>Initializes a new instance of the
  2371. <see langword="XmlDocument" /> class.</para>
  2372. </summary>
  2373. </member>
  2374. <member name="M:System.Xml.XmlDocument.#ctor(System.Xml.XmlNameTable)">
  2375. <summary>
  2376. <para>Initializes a new instance of the
  2377. <see langword="XmlDocument" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />
  2378. .</para>
  2379. </summary>
  2380. <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
  2381. </member>
  2382. <member name="M:System.Xml.XmlDocument.#ctor(System.Xml.XmlImplementation)">
  2383. <summary>
  2384. <para>Initializes a new instance of the <see langword="XmlDocument" /> class with the
  2385. specified <see cref="T:System.Xml.XmlImplementation" /> .</para>
  2386. </summary>
  2387. <param name="imp">The <see langword="XmlImplementation" /> to use.</param>
  2388. </member>
  2389. <member name="M:System.Xml.XmlDocument.CloneNode(System.Boolean)">
  2390. <summary>
  2391. <para>Creates a duplicate of this node.</para>
  2392. </summary>
  2393. <param name="deep">
  2394. <see langword="true" />to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
  2395. <returns>
  2396. <para>The cloned <see langword="XmlDocument" /> node.</para>
  2397. </returns>
  2398. </member>
  2399. <member name="M:System.Xml.XmlDocument.CreateAttribute(System.String)">
  2400. <summary>
  2401. <para>Creates an <see cref="T:System.Xml.XmlAttribute" /> with the specified <see cref="P:System.Xml.XmlDocument.Name" /> .</para>
  2402. </summary>
  2403. <param name="name">The qualified name of the attribute. If the name contains a colon, the <see cref="P:System.Xml.XmlNode.Prefix" /> property reflects the part of the name preceding the first colon and the <see cref="P:System.Xml.XmlDocument.LocalName" /> property reflects the part of the name following the first colon. The <see cref="P:System.Xml.XmlNode.NamespaceURI" /> remains empty unless the prefix is a recognized built-in prefix such as xmlns. In this case <see langword="NamespaceURI" /> has a value of http://www.w3.org/2000/xmlns/ . </param>
  2404. <returns>
  2405. <para>The new <see langword="XmlAttribute" /> .</para>
  2406. </returns>
  2407. </member>
  2408. <member name="M:System.Xml.XmlDocument.CreateCDataSection(System.String)">
  2409. <summary>
  2410. <para>Creates an <see cref="T:System.Xml.XmlCDataSection" /> containing the specified data.</para>
  2411. </summary>
  2412. <param name="data">The content of the new <see langword="XmlCDataSection" /> .</param>
  2413. <returns>
  2414. <para>The new <see langword="XmlCDataSection" /> .</para>
  2415. </returns>
  2416. </member>
  2417. <member name="M:System.Xml.XmlDocument.CreateComment(System.String)">
  2418. <summary>
  2419. <para>Creates an <see cref="T:System.Xml.XmlComment" /> containing the specified data.</para>
  2420. </summary>
  2421. <param name="data">The content of the new <see langword="XmlComment" /> .</param>
  2422. <returns>
  2423. <para>The new <see langword="XmlComment" /> .</para>
  2424. </returns>
  2425. </member>
  2426. <member name="M:System.Xml.XmlDocument.CreateDocumentType(System.String,System.String,System.String,System.String)">
  2427. <summary>
  2428. <para>Returns a new <see cref="T:System.Xml.XmlDocumentType" /> object.</para>
  2429. </summary>
  2430. <param name="name">Name of the document type.</param>
  2431. <param name="publicId">The public identifier of the document type or <see langword="null" /> .</param>
  2432. <param name="systemId">The system identifier of the document type or <see langword="null" /> .</param>
  2433. <param name="internalSubset">The DTD internal subset of the document type or <see langword="null" /> .</param>
  2434. <returns>
  2435. <para>The new <see langword="XmlDocumentType" /> .</para>
  2436. </returns>
  2437. </member>
  2438. <member name="M:System.Xml.XmlDocument.CreateDocumentFragment">
  2439. <summary>
  2440. <para>Creates an <see cref="T:System.Xml.XmlDocumentFragment" /> .</para>
  2441. </summary>
  2442. <returns>
  2443. <para>The new <see langword="XmlDocumentFragment" /> .</para>
  2444. </returns>
  2445. </member>
  2446. <member name="M:System.Xml.XmlDocument.CreateElement(System.String)">
  2447. <summary>
  2448. <para>Creates an element with the specified name.</para>
  2449. </summary>
  2450. <param name="name">The qualified name of the element. If the name contains a colon then the <see cref="P:System.Xml.XmlNode.Prefix" /> property reflects the part of the name preceding the colon and the <see cref="P:System.Xml.XmlDocument.LocalName" /> property reflects the part of the name after the colon. The qualified name cannot include a prefix of'xmlns'.</param>
  2451. <returns>
  2452. <para>The new <see langword="XmlElement" /> .</para>
  2453. </returns>
  2454. </member>
  2455. <member name="M:System.Xml.XmlDocument.CreateEntityReference(System.String)">
  2456. <summary>
  2457. <para>Creates an <see cref="T:System.Xml.XmlEntityReference" /> with the specified name.</para>
  2458. </summary>
  2459. <param name="name">The name of the entity reference.</param>
  2460. <returns>
  2461. <para>The new <see langword="XmlEntityReference" /> .</para>
  2462. </returns>
  2463. </member>
  2464. <member name="M:System.Xml.XmlDocument.CreateProcessingInstruction(System.String,System.String)">
  2465. <summary>
  2466. <para>Creates an <see cref="T:System.Xml.XmlProcessingInstruction" /> with the specified
  2467. name and data.</para>
  2468. </summary>
  2469. <param name="target">The name of the processing instruction.</param>
  2470. <param name="data">The data for the processing instruction.</param>
  2471. <returns>
  2472. <para>The new <see langword="XmlProcessingInstruction" /> .</para>
  2473. </returns>
  2474. </member>
  2475. <member name="M:System.Xml.XmlDocument.CreateXmlDeclaration(System.String,System.String,System.String)">
  2476. <summary>
  2477. <para>Creates an <see cref="T:System.Xml.XmlDeclaration" /> node with the specified values. </para>
  2478. </summary>
  2479. <param name="version">The version must be "1.0".</param>
  2480. <param name=" encoding">
  2481. <para>The value of the encoding attribute. This is the encoding that is used when you save the <see cref="T:System.Xml.XmlDocument" /> to a file or a stream; therefore, it must be set to a string supported by the <see cref="T:System.Text.Encoding" /> class, otherwise <see cref="M:System.Xml.XmlDocument.Save(System.String)" /> fails. If this is <see langword="null" /> or String.Empty, the <see langword="Save" /> method does not write an encoding attribute on the XML declaration and therefore the default encoding, UTF-8, is used. </para>
  2482. <para>
  2483. <see langword="Note:" /> If the <see langword="XmlDocument" /> is saved to either a <see cref="T:System.IO.TextWriter" /> or an <see cref="T:System.Xml.XmlTextWriter" />, this encoding value is discarded. Instead, the encoding of the <see langword="TextWriter" /> or the <see langword="XmlTextWriter" /> is used. This ensures that the XML written out can be read back using the correct encoding.</para>
  2484. </param>
  2485. <param name=" standalone">The value must be either "yes" or "no". If this is <see langword="null" /> or String.Empty, the <see langword="Save" /> method does not write a standalone attribute on the XML declaration.</param>
  2486. <returns>
  2487. <para>The new <see langword="XmlDeclaration" /> node.</para>
  2488. </returns>
  2489. </member>
  2490. <member name="M:System.Xml.XmlDocument.CreateTextNode(System.String)">
  2491. <summary>
  2492. <para>Creates an <see cref="T:System.Xml.XmlText" /> with the specified text.</para>
  2493. </summary>
  2494. <param name="text">The text for the Text node.</param>
  2495. <returns>
  2496. <para>The new <see langword="XmlText" /> node.</para>
  2497. </returns>
  2498. </member>
  2499. <member name="M:System.Xml.XmlDocument.CreateSignificantWhitespace(System.String)">
  2500. <summary>
  2501. <para>Creates an <see cref="T:System.Xml.XmlSignificantWhitespace" /> node.</para>
  2502. </summary>
  2503. <param name="text">The string must contain only the following characters &amp;#20; &amp;#10; &amp;#13; and &amp;#9;</param>
  2504. <returns>
  2505. <para>A new <see langword="XmlSignificantWhitespace" /> node.</para>
  2506. </returns>
  2507. </member>
  2508. <member name="M:System.Xml.XmlDocument.CreateNavigator(System.Xml.XmlNode)">
  2509. <summary>
  2510. <para> Creates an <see cref="T:System.Xml.XPath.XPathNavigator" /> object
  2511. for navigating this document.</para>
  2512. </summary>
  2513. <param name="node">The <see cref="T:System.Xml.XmlNode" /> you want the navigator initially positioned on.</param>
  2514. <returns>
  2515. <para>An <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</para>
  2516. </returns>
  2517. </member>
  2518. <member name="M:System.Xml.XmlDocument.CreateWhitespace(System.String)">
  2519. <summary>
  2520. <para>Creates an <see cref="T:System.Xml.XmlWhitespace" /> node.</para>
  2521. </summary>
  2522. <param name="text">The string must contain only the following characters &amp;#20; &amp;#10; &amp;#13; and &amp;#9;</param>
  2523. <returns>
  2524. <para>A new <see langword="XmlWhitespace" /> node.</para>
  2525. </returns>
  2526. </member>
  2527. <member name="M:System.Xml.XmlDocument.GetElementsByTagName(System.String)">
  2528. <summary>
  2529. <para>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant
  2530. elements that match the specified <see cref="P:System.Xml.XmlDocument.Name" />
  2531. .</para>
  2532. </summary>
  2533. <param name="name"> The qualified name to match. It is matched against the <see langword="Name" /> property of the matching node. The special value "*" matches all tags.</param>
  2534. <returns>
  2535. <para>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes.</para>
  2536. </returns>
  2537. </member>
  2538. <member name="M:System.Xml.XmlDocument.CreateAttribute(System.String,System.String)">
  2539. <summary>
  2540. <para>Creates an <see cref="T:System.Xml.XmlAttribute" /> with the specified qualified
  2541. name and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  2542. .</para>
  2543. </summary>
  2544. <param name="qualifiedName">The qualified name of the attribute. If the name contains a colon then the <see cref="P:System.Xml.XmlNode.Prefix" /> property will reflect the part of the name preceding the colon and the <see cref="P:System.Xml.XmlDocument.LocalName" /> property will reflect the part of the name after the colon.</param>
  2545. <param name="namespaceURI">The namespaceURI of the attribute. If the qualified name includes a prefix of xmlns, then this parameter must be http://www.w3.org/2000/xmlns/ .</param>
  2546. <returns>
  2547. <para>The new <see langword="XmlAttribute" /> .</para>
  2548. </returns>
  2549. </member>
  2550. <member name="M:System.Xml.XmlDocument.CreateElement(System.String,System.String)">
  2551. <summary>
  2552. <para>Creates an <see cref="T:System.Xml.XmlElement" /> with the qualified name and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  2553. .</para>
  2554. </summary>
  2555. <param name="qualifiedName">The qualified name of the element. If the name contains a colon then the <see cref="P:System.Xml.XmlNode.Prefix" /> property will reflect the part of the name preceding the colon and the <see cref="P:System.Xml.XmlDocument.LocalName" /> property will reflect the part of the name after the colon. The qualified name cannot include a prefix of'xmlns'.</param>
  2556. <param name="namespaceURI">The namespace URI of the element.</param>
  2557. <returns>
  2558. <para>The new <see langword="XmlElement" /> .</para>
  2559. </returns>
  2560. </member>
  2561. <member name="M:System.Xml.XmlDocument.GetElementsByTagName(System.String,System.String)">
  2562. <summary>
  2563. <para>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant
  2564. elements that match the specified <see cref="P:System.Xml.XmlDocument.LocalName" /> and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  2565. .</para>
  2566. </summary>
  2567. <param name="localName">The LocalName to match. The special value "*" matches all tags.</param>
  2568. <param name="namespaceURI">NamespaceURI to match.</param>
  2569. <returns>
  2570. <para>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes.</para>
  2571. </returns>
  2572. </member>
  2573. <member name="M:System.Xml.XmlDocument.GetElementById(System.String)">
  2574. <summary>
  2575. <para>Gets the <see cref="T:System.Xml.XmlElement" /> with the
  2576. specified ID.</para>
  2577. </summary>
  2578. <param name="elementId">The attribute ID to match.</param>
  2579. <returns>
  2580. <para>The <see langword="XmlElement" /> with
  2581. the matching ID or <see langword="null" /> if no matching element is found.</para>
  2582. </returns>
  2583. </member>
  2584. <member name="M:System.Xml.XmlDocument.ImportNode(System.Xml.XmlNode,System.Boolean)">
  2585. <summary>
  2586. <para>Imports a node from another document to the current document.</para>
  2587. </summary>
  2588. <param name="node">The node being imported.</param>
  2589. <param name="deep">
  2590. <see langword="true" />to perform a deep clone; otherwise, <see langword="false" /> .</param>
  2591. <returns>
  2592. <para>The imported <see cref="T:System.Xml.XmlNode" /> .</para>
  2593. </returns>
  2594. </member>
  2595. <member name="M:System.Xml.XmlDocument.CreateAttribute(System.String,System.String,System.String)">
  2596. <summary>
  2597. <para>Creates an <see cref="T:System.Xml.XmlAttribute" /> with the specified <see cref="P:System.Xml.XmlNode.Prefix" />,
  2598. <see cref="P:System.Xml.XmlDocument.LocalName" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  2599. .</para>
  2600. </summary>
  2601. <param name="prefix">The prefix of the attribute (if any). String.Empty and <see langword="null" /> are equivalent.</param>
  2602. <param name="localName">The local name of the attribute.</param>
  2603. <param name="namespaceURI">The namespace URI of the attribute (if any). String.Empty and <see langword="null" /> are equivalent. If <paramref name="prefix" /> is xmlns, then this parameter must be http://www.w3.org/2000/xmlns/; otherwise an exception is thrown.</param>
  2604. <returns>
  2605. <para>The new <see langword="XmlAttribute" /> .</para>
  2606. </returns>
  2607. </member>
  2608. <member name="M:System.Xml.XmlDocument.CreateDefaultAttribute(System.String,System.String,System.String)">
  2609. <summary>
  2610. <para>Creates a default attribute with the specified prefix,
  2611. local name and namespace URI.</para>
  2612. </summary>
  2613. <param name="prefix">The prefix of the attribute (if any).</param>
  2614. <param name=" localName">The local name of the attribute.</param>
  2615. <param name=" namespaceURI">The namespace URI of the attribute (if any).</param>
  2616. <returns>
  2617. <para>The new <see cref="T:System.Xml.XmlAttribute" />.</para>
  2618. </returns>
  2619. </member>
  2620. <member name="M:System.Xml.XmlDocument.CreateElement(System.String,System.String,System.String)">
  2621. <summary>
  2622. <para>Creates an element with the specified <see cref="P:System.Xml.XmlNode.Prefix" />,
  2623. <see cref="P:System.Xml.XmlDocument.LocalName" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  2624. .</para>
  2625. </summary>
  2626. <param name="prefix">The prefix of the new element (if any). String.Empty and <see langword="null" /> are equivalent.</param>
  2627. <param name=" localName">The local ame of the new element.</param>
  2628. <param name=" namespaceURI">The namespace URI of the new element (if any). String.Empty and <see langword="null" /> are equivalent.</param>
  2629. <returns>
  2630. <para> The new <see cref="T:System.Xml.XmlElement" /> .</para>
  2631. </returns>
  2632. </member>
  2633. <member name="M:System.Xml.XmlDocument.CreateNode(System.Xml.XmlNodeType,System.String,System.String,System.String)">
  2634. <summary>
  2635. <para>Creates a <see cref="T:System.Xml.XmlNode" /> with the specified <see cref="T:System.Xml.XmlNodeType" />,
  2636. <see cref="P:System.Xml.XmlNode.Prefix" />, <see cref="P:System.Xml.XmlDocument.Name" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" /> .</para>
  2637. </summary>
  2638. <param name="type">The <see langword="XmlNodeType" /> of the new node.</param>
  2639. <param name=" prefix">The prefix of the new node.</param>
  2640. <param name=" name">The local name of the new node.</param>
  2641. <param name=" namespaceURI">The namespace URI of the new node.</param>
  2642. <returns>
  2643. <para>The new <see langword="XmlNode" /> .</para>
  2644. </returns>
  2645. </member>
  2646. <member name="M:System.Xml.XmlDocument.CreateNode(System.String,System.String,System.String)">
  2647. <summary>
  2648. <para>Creates an <see cref="T:System.Xml.XmlNode" /> with the specified node type, <see cref="P:System.Xml.XmlDocument.Name" />,
  2649. and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  2650. .</para>
  2651. </summary>
  2652. <param name="nodeTypeString">String version of the <see cref="T:System.Xml.XmlNodeType" /> of the new node. This parameter must be one of the values listed in the table below.</param>
  2653. <param name=" name">The qualified name of the new node. If the name contains a colon, it is parsed into <see cref="P:System.Xml.XmlNode.Prefix" /> and <see cref="P:System.Xml.XmlDocument.LocalName" /> components.</param>
  2654. <param name=" namespaceURI">The namespace URI of the new node.</param>
  2655. <returns>
  2656. <para>The new <see langword="XmlNode" /> .</para>
  2657. </returns>
  2658. </member>
  2659. <member name="M:System.Xml.XmlDocument.CreateNode(System.Xml.XmlNodeType,System.String,System.String)">
  2660. <summary>
  2661. <para>Creates an <see cref="T:System.Xml.XmlNode" /> with the specified <see cref="T:System.Xml.XmlNodeType" />,
  2662. <see cref="P:System.Xml.XmlDocument.Name" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" />
  2663. .</para>
  2664. </summary>
  2665. <param name="type">The <see langword="XmlNodeType" /> of the new node.</param>
  2666. <param name=" name">The qualified name of the new node. If the name contains a colon then it is parsed into <see cref="P:System.Xml.XmlNode.Prefix" /> and <see cref="P:System.Xml.XmlDocument.LocalName" /> components.</param>
  2667. <param name=" namespaceURI">The namespace URI of the new node.</param>
  2668. <returns>
  2669. <para>The new <see langword="XmlNode" /> .</para>
  2670. </returns>
  2671. </member>
  2672. <member name="M:System.Xml.XmlDocument.ReadNode(System.Xml.XmlReader)">
  2673. <summary>
  2674. <para>Creates an <see cref="T:System.Xml.XmlNode" /> object based on the information in
  2675. the <see cref="T:System.Xml.XmlReader" /> .
  2676. The reader must be positioned on a node or attribute.</para>
  2677. </summary>
  2678. <param name="reader">The Xml source</param>
  2679. <returns>
  2680. <para>The new <see langword="XmlNode" /> or <see langword="null" /> if no more nodes exist.</para>
  2681. </returns>
  2682. </member>
  2683. <member name="M:System.Xml.XmlDocument.Load(System.String)">
  2684. <summary>
  2685. <para>Loads the XML document from the specified URL.</para>
  2686. </summary>
  2687. <param name="filename">URL for the file containing the XML document to load.</param>
  2688. </member>
  2689. <member name="M:System.Xml.XmlDocument.Load(System.IO.Stream)">
  2690. <summary>
  2691. <para>Loads the XML document from the specified stream.</para>
  2692. </summary>
  2693. <param name="inStream">The stream containing the XML document to load.</param>
  2694. </member>
  2695. <member name="M:System.Xml.XmlDocument.Load(System.IO.TextReader)">
  2696. <summary>
  2697. <para>Loads the XML document from the specified <see cref="T:System.IO.TextReader" /> .</para>
  2698. </summary>
  2699. <param name="txtReader">The <see langword="TextReader" /> used to feed the XML data into the document.</param>
  2700. </member>
  2701. <member name="M:System.Xml.XmlDocument.Load(System.Xml.XmlReader)">
  2702. <summary>
  2703. <para>Loads the XML document from the specified <see cref="T:System.Xml.XmlReader" /> .</para>
  2704. </summary>
  2705. <param name="reader">The <see langword="XmlReader" /> used to feed the XML data into the document.</param>
  2706. </member>
  2707. <member name="M:System.Xml.XmlDocument.LoadXml(System.String)">
  2708. <summary>
  2709. <para>Loads the XML document from the specified string.</para>
  2710. </summary>
  2711. <param name="xml">String containing the XML document to load.</param>
  2712. </member>
  2713. <member name="M:System.Xml.XmlDocument.Save(System.String)">
  2714. <summary>
  2715. <para>Saves the XML document to the specified file.</para>
  2716. </summary>
  2717. <param name="filename">The location of the file where you want to save the document.</param>
  2718. </member>
  2719. <member name="M:System.Xml.XmlDocument.Save(System.IO.Stream)">
  2720. <summary>
  2721. <para>Saves the XML document to the specified stream.</para>
  2722. </summary>
  2723. <param name="outStream">The stream to which you want to save.</param>
  2724. </member>
  2725. <member name="M:System.Xml.XmlDocument.Save(System.IO.TextWriter)">
  2726. <summary>
  2727. <para>Saves the XML document to the specified <see cref="T:System.IO.TextWriter" /> .</para>
  2728. </summary>
  2729. <param name="writer">The <see langword="TextWriter" /> to which you want to save.</param>
  2730. </member>
  2731. <member name="M:System.Xml.XmlDocument.Save(System.Xml.XmlWriter)">
  2732. <summary>
  2733. <para>Saves the XML document to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  2734. </summary>
  2735. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  2736. </member>
  2737. <member name="M:System.Xml.XmlDocument.WriteTo(System.Xml.XmlWriter)">
  2738. <summary>
  2739. <para>Saves the <see langword="XmlDocument" /> node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  2740. </summary>
  2741. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  2742. </member>
  2743. <member name="M:System.Xml.XmlDocument.WriteContentTo(System.Xml.XmlWriter)">
  2744. <summary>
  2745. <para>Saves all the children of the
  2746. <see langword="XmlDocument" /> node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  2747. </summary>
  2748. <param name="xw">The <see langword="XmlWriter" /> to which you want to save.</param>
  2749. </member>
  2750. <member name="P:System.Xml.XmlDocument.NodeType">
  2751. <summary>
  2752. <para> Gets the type of the current node.
  2753. </para>
  2754. </summary>
  2755. </member>
  2756. <member name="P:System.Xml.XmlDocument.DocumentType">
  2757. <summary>
  2758. <para>Gets the node containing the DOCTYPE declaration.</para>
  2759. </summary>
  2760. </member>
  2761. <member name="P:System.Xml.XmlDocument.Implementation">
  2762. <summary>
  2763. <para> Gets the <see cref="T:System.Xml.XmlImplementation" /> object for the current document.
  2764. </para>
  2765. </summary>
  2766. </member>
  2767. <member name="P:System.Xml.XmlDocument.Name">
  2768. <summary>
  2769. <para> Gets the qualified name of the node.
  2770. </para>
  2771. </summary>
  2772. </member>
  2773. <member name="P:System.Xml.XmlDocument.LocalName">
  2774. <summary>
  2775. <para> Gets the local name of the node.
  2776. </para>
  2777. </summary>
  2778. </member>
  2779. <member name="P:System.Xml.XmlDocument.DocumentElement">
  2780. <summary>
  2781. <para>Gets the root <see cref="T:System.Xml.XmlElement" /> for the document.</para>
  2782. </summary>
  2783. </member>
  2784. <member name="P:System.Xml.XmlDocument.OwnerDocument">
  2785. <summary>
  2786. <para>Gets the <see cref="T:System.Xml.XmlDocument" /> to which the current node belongs.</para>
  2787. </summary>
  2788. </member>
  2789. <member name="P:System.Xml.XmlDocument.XmlResolver">
  2790. <summary>
  2791. <para>Sets the <see cref="T:System.Xml.XmlResolver" /> to use for resolving external
  2792. resources.</para>
  2793. </summary>
  2794. </member>
  2795. <member name="P:System.Xml.XmlDocument.NameTable">
  2796. <summary>
  2797. <para>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this
  2798. implementation.</para>
  2799. </summary>
  2800. </member>
  2801. <member name="P:System.Xml.XmlDocument.PreserveWhitespace">
  2802. <summary>
  2803. <para>Gets or sets a value indicating whether to preserve white space.</para>
  2804. </summary>
  2805. </member>
  2806. <member name="P:System.Xml.XmlDocument.IsReadOnly">
  2807. <summary>
  2808. <para> Gets a value indicating whether the current node is read-only.
  2809. </para>
  2810. </summary>
  2811. </member>
  2812. <member name="P:System.Xml.XmlDocument.InnerXml">
  2813. <summary>
  2814. <para>Gets or sets the markup representing the children
  2815. of the current node.</para>
  2816. </summary>
  2817. </member>
  2818. <member name="E:System.Xml.XmlDocument.NodeInserting">
  2819. <summary>
  2820. <para>Occurs when a node belonging to this document is
  2821. about to be inserted into another node.</para>
  2822. </summary>
  2823. </member>
  2824. <member name="E:System.Xml.XmlDocument.NodeInserted">
  2825. <summary>
  2826. <para>Occurs when a node belonging to this
  2827. document has been inserted into another node.</para>
  2828. </summary>
  2829. </member>
  2830. <member name="E:System.Xml.XmlDocument.NodeRemoving">
  2831. <summary>
  2832. <para> Occurs when a node belonging to this document
  2833. is about to be removed from the document.</para>
  2834. </summary>
  2835. </member>
  2836. <member name="E:System.Xml.XmlDocument.NodeRemoved">
  2837. <summary>
  2838. <para>Occurs when a node belonging to this
  2839. document has been removed from its parent.</para>
  2840. </summary>
  2841. </member>
  2842. <member name="E:System.Xml.XmlDocument.NodeChanging">
  2843. <summary>
  2844. <para> Occurs when the <see cref="P:System.Xml.XmlNode.Value" /> of a node
  2845. belonging to this document is about to be changed.</para>
  2846. </summary>
  2847. </member>
  2848. <member name="E:System.Xml.XmlDocument.NodeChanged">
  2849. <summary>
  2850. <para>Occurs when the <see cref="P:System.Xml.XmlNode.Value" /> of a node
  2851. belonging to this document has been changed.</para>
  2852. </summary>
  2853. </member>
  2854. <member name="P:System.Xml.XmlDocument.BaseURI">
  2855. <summary>
  2856. <para>Gets the base URI of the current node.</para>
  2857. </summary>
  2858. </member>
  2859. <member name="T:System.Xml.XmlDocumentFragment">
  2860. <summary>
  2861. <para>
  2862. Represents a lightweight object that is useful for tree insert
  2863. operations.
  2864. </para>
  2865. </summary>
  2866. </member>
  2867. <member name="M:System.Xml.XmlDocumentFragment.CloneNode(System.Boolean)">
  2868. <summary>
  2869. <para>Creates a duplicate of this node.</para>
  2870. </summary>
  2871. <param name="deep">
  2872. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
  2873. <returns>
  2874. <para>The cloned node.</para>
  2875. </returns>
  2876. </member>
  2877. <member name="M:System.Xml.XmlDocumentFragment.WriteTo(System.Xml.XmlWriter)">
  2878. <summary>
  2879. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  2880. </summary>
  2881. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  2882. </member>
  2883. <member name="M:System.Xml.XmlDocumentFragment.WriteContentTo(System.Xml.XmlWriter)">
  2884. <summary>
  2885. <para>Saves all the children of the node to the specified
  2886. <see cref="T:System.Xml.XmlWriter" /> .</para>
  2887. </summary>
  2888. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  2889. </member>
  2890. <member name="P:System.Xml.XmlDocumentFragment.Name">
  2891. <summary>
  2892. <para>Gets the qualified name of the node.</para>
  2893. </summary>
  2894. </member>
  2895. <member name="P:System.Xml.XmlDocumentFragment.LocalName">
  2896. <summary>
  2897. <para> Gets the local name of the node.
  2898. </para>
  2899. </summary>
  2900. </member>
  2901. <member name="P:System.Xml.XmlDocumentFragment.NodeType">
  2902. <summary>
  2903. <para>Gets the type of the current node.</para>
  2904. </summary>
  2905. </member>
  2906. <member name="P:System.Xml.XmlDocumentFragment.ParentNode">
  2907. <summary>
  2908. <para>Gets the parent of this node (for nodes that can have
  2909. parents).</para>
  2910. </summary>
  2911. </member>
  2912. <member name="P:System.Xml.XmlDocumentFragment.OwnerDocument">
  2913. <summary>
  2914. <para>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</para>
  2915. </summary>
  2916. </member>
  2917. <member name="P:System.Xml.XmlDocumentFragment.InnerXml">
  2918. <summary>
  2919. <para> Gets or sets the markup representing
  2920. the children of this node.</para>
  2921. </summary>
  2922. </member>
  2923. <member name="T:System.Xml.XmlDocumentType">
  2924. <summary>
  2925. <para> Represents the document type declaration.
  2926. </para>
  2927. </summary>
  2928. </member>
  2929. <member name="M:System.Xml.XmlDocumentType.CloneNode(System.Boolean)">
  2930. <summary>
  2931. <para>Creates a duplicate of this node.</para>
  2932. </summary>
  2933. <param name="deep">
  2934. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself. For document type nodes, the cloned node always includes the subtree, regardless of the parameter setting.</param>
  2935. <returns>
  2936. <para>The cloned node.</para>
  2937. </returns>
  2938. </member>
  2939. <member name="M:System.Xml.XmlDocumentType.WriteTo(System.Xml.XmlWriter)">
  2940. <summary>
  2941. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  2942. </summary>
  2943. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  2944. </member>
  2945. <member name="M:System.Xml.XmlDocumentType.WriteContentTo(System.Xml.XmlWriter)">
  2946. <summary>
  2947. <para>Saves all the children of the node to the specified
  2948. <see cref="T:System.Xml.XmlWriter" />. For <see langword="XmlDocumentType" /> nodes, this method has no effect.</para>
  2949. </summary>
  2950. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  2951. </member>
  2952. <member name="P:System.Xml.XmlDocumentType.Name">
  2953. <summary>
  2954. <para>Gets the qualified name of the node.</para>
  2955. </summary>
  2956. </member>
  2957. <member name="P:System.Xml.XmlDocumentType.LocalName">
  2958. <summary>
  2959. <para> Gets the local name of the node.
  2960. </para>
  2961. </summary>
  2962. </member>
  2963. <member name="P:System.Xml.XmlDocumentType.NodeType">
  2964. <summary>
  2965. <para>Gets the type of the current node.</para>
  2966. </summary>
  2967. </member>
  2968. <member name="P:System.Xml.XmlDocumentType.IsReadOnly">
  2969. <summary>
  2970. <para>Gets a value indicating whether the node is read-only.</para>
  2971. </summary>
  2972. </member>
  2973. <member name="P:System.Xml.XmlDocumentType.Entities">
  2974. <summary>
  2975. <para>Gets the collection of <see cref="T:System.Xml.XmlEntity" /> nodes declared in the document type declaration.</para>
  2976. </summary>
  2977. </member>
  2978. <member name="P:System.Xml.XmlDocumentType.Notations">
  2979. <summary>
  2980. <para>Gets the collection of <see cref="T:System.Xml.XmlNotation" /> nodes present in the document type declaration.</para>
  2981. </summary>
  2982. </member>
  2983. <member name="P:System.Xml.XmlDocumentType.PublicId">
  2984. <summary>
  2985. <para>
  2986. Gets
  2987. the value of the public identifier on the DOCTYPE declaration.
  2988. </para>
  2989. </summary>
  2990. </member>
  2991. <member name="P:System.Xml.XmlDocumentType.SystemId">
  2992. <summary>
  2993. <para>
  2994. Gets the value of
  2995. the system identifier on the DOCTYPE declaration.
  2996. </para>
  2997. </summary>
  2998. </member>
  2999. <member name="P:System.Xml.XmlDocumentType.InternalSubset">
  3000. <summary>
  3001. <para> Gets the value of the DTD internal subset
  3002. on the DOCTYPE
  3003. declaration.</para>
  3004. </summary>
  3005. </member>
  3006. <member name="T:System.Xml.XmlTextWriter">
  3007. <summary>
  3008. <para> Represents a writer that provides a fast, non-cached, forward-only way
  3009. of generating streams or files containing XML data that conforms to the
  3010. W3C Extensible Markup Language (XML) 1.0 and the Namespaces in XML
  3011. recommendations.
  3012. </para>
  3013. </summary>
  3014. </member>
  3015. <member name="T:System.Xml.XmlWriter">
  3016. <summary>
  3017. <para> Represents a writer that provides a fast, non-cached, forward-only means of generating streams or files containing XML data that conforms to the W3C Extensible Markup Language (XML) 1.0 and the Namespaces in XML recommendations.</para>
  3018. </summary>
  3019. </member>
  3020. <member name="M:System.Xml.XmlWriter.WriteStartDocument">
  3021. <summary>
  3022. <para> When overridden in a derived class, writes the XML declaration with the version "1.0".</para>
  3023. </summary>
  3024. </member>
  3025. <member name="M:System.Xml.XmlWriter.WriteStartDocument(System.Boolean)">
  3026. <summary>
  3027. <para> When overridden in a derived class, writes the XML declaration with the version "1.0" and the
  3028. standalone attribute.</para>
  3029. </summary>
  3030. <param name="standalone">If <see langword="true" />, it writes "standalone=yes"; if <see langword="false" />, it writes "standalone=no"</param>
  3031. </member>
  3032. <member name="M:System.Xml.XmlWriter.WriteEndDocument">
  3033. <summary>
  3034. <para>When overridden in a derived class, closes any open elements or attributes and
  3035. puts the writer back in the Start state.</para>
  3036. </summary>
  3037. </member>
  3038. <member name="M:System.Xml.XmlWriter.WriteDocType(System.String,System.String,System.String,System.String)">
  3039. <summary>
  3040. <para> When overridden in a derived class, writes the DOCTYPE declaration with the specified name
  3041. and optional attributes.</para>
  3042. </summary>
  3043. <param name="name">The name of the DOCTYPE. This must be non-empty.</param>
  3044. <param name="pubid">If non-null it also writes PUBLIC "pubid" "sysid" where pubid and sysid are replaced with the value of the given arguments.</param>
  3045. <param name="sysid">If pubid is <see langword="null" /> and sysid is non-null it writes SYSTEM "sysid" where sysid is replaced with the value of this argument.</param>
  3046. <param name="subset">If non-null it writes [subset] where subset is replaced with the value of this argument.</param>
  3047. </member>
  3048. <member name="M:System.Xml.XmlWriter.WriteStartElement(System.String,System.String)">
  3049. <summary>
  3050. <para> When overridden in a derived class, writes the specified start tag and associates it with the
  3051. given namespace.</para>
  3052. </summary>
  3053. <param name="localName">
  3054. <para> The local name of the element.</para>
  3055. </param>
  3056. <param name="ns">
  3057. <para> The namespace URI to associate with the element. If this namespace is already in scope and has an associated prefix, the writer automatically writes that prefix also.</para>
  3058. </param>
  3059. </member>
  3060. <member name="M:System.Xml.XmlWriter.WriteStartElement(System.String,System.String,System.String)">
  3061. <summary>
  3062. <para> When overridden in a derived class, writes the specified start tag and
  3063. associates it with the given namespace and prefix.</para>
  3064. </summary>
  3065. <param name="prefix">The namespace prefix of the element.</param>
  3066. <param name="localName">The local name of the element.</param>
  3067. <param name="ns">The namespace URI to associate with the element.</param>
  3068. </member>
  3069. <member name="M:System.Xml.XmlWriter.WriteStartElement(System.String)">
  3070. <summary>
  3071. <para>When overridden in a derived class, writes out a start tag with the specified local name.</para>
  3072. </summary>
  3073. <param name="localName">The local name of the element.</param>
  3074. </member>
  3075. <member name="M:System.Xml.XmlWriter.WriteEndElement">
  3076. <summary>
  3077. <para>When overridden in a derived class, closes one element and pops the corresponding namespace scope.</para>
  3078. </summary>
  3079. </member>
  3080. <member name="M:System.Xml.XmlWriter.WriteFullEndElement">
  3081. <summary>
  3082. <para>When overridden in a derived class, closes one element and pops the
  3083. corresponding namespace scope.</para>
  3084. </summary>
  3085. </member>
  3086. <member name="M:System.Xml.XmlWriter.WriteAttributeString(System.String,System.String,System.String)">
  3087. <summary>
  3088. <para> When overridden in a derived class, writes an attribute with the specified
  3089. parameters.</para>
  3090. </summary>
  3091. <param name="localName">The local name of the attribute.</param>
  3092. <param name=" ns">The namespace URI to associate with the attribute.</param>
  3093. <param name=" value">The value of the attribute.</param>
  3094. </member>
  3095. <member name="M:System.Xml.XmlWriter.WriteAttributeString(System.String,System.String)">
  3096. <summary>
  3097. <para>When overridden in a derived class, writes out the attribute with the specified local name and value.</para>
  3098. </summary>
  3099. <param name="localName">The local name of the attribute.</param>
  3100. <param name=" value">The value of the attribute.</param>
  3101. </member>
  3102. <member name="M:System.Xml.XmlWriter.WriteAttributeString(System.String,System.String,System.String,System.String)">
  3103. <summary>
  3104. <para>When overridden in a derived class, writes out the attribute with the specified prefix, local
  3105. name, namespace URI and value.</para>
  3106. </summary>
  3107. <param name="prefix">The namespace prefix of the attribute.</param>
  3108. <param name=" localName">The local name of the attribute.</param>
  3109. <param name=" ns">The namespace URI of the attribute.</param>
  3110. <param name=" value">The value of the attribute.</param>
  3111. </member>
  3112. <member name="M:System.Xml.XmlWriter.WriteStartAttribute(System.String,System.String)">
  3113. <summary>
  3114. <para>When overridden in a derived class, writes the start of an attribute.</para>
  3115. </summary>
  3116. <param name="localName">The local name of the attribute.</param>
  3117. <param name=" ns">The namespace URI of the attribute</param>
  3118. </member>
  3119. <member name="M:System.Xml.XmlWriter.WriteStartAttribute(System.String,System.String,System.String)">
  3120. <summary>
  3121. <para>When overridden in a derived class, writes the start of an attribute.</para>
  3122. </summary>
  3123. <param name="prefix">The namespace prefix of the attribute.</param>
  3124. <param name=" localName">The local name of the attribute.</param>
  3125. <param name=" ns">The namespace URI for the attribute.</param>
  3126. </member>
  3127. <member name="M:System.Xml.XmlWriter.WriteEndAttribute">
  3128. <summary>
  3129. <para>When overridden in a derived class, closes the previous <see cref="M:System.Xml.XmlWriter.WriteStartAttribute(System.String,System.String)" />
  3130. call.</para>
  3131. </summary>
  3132. </member>
  3133. <member name="M:System.Xml.XmlWriter.WriteCData(System.String)">
  3134. <summary>
  3135. <para>When overridden in a derived class, writes out a &lt;![CDATA[...]]&gt; block containing
  3136. the specified text.</para>
  3137. </summary>
  3138. <param name="text">The text to place inside the CDATA block.</param>
  3139. </member>
  3140. <member name="M:System.Xml.XmlWriter.WriteComment(System.String)">
  3141. <summary>
  3142. <para>When overridden in a derived class, writes out a comment &lt;!--...--&gt; containing
  3143. the specified text.</para>
  3144. </summary>
  3145. <param name="text">Text to place inside the comment.</param>
  3146. </member>
  3147. <member name="M:System.Xml.XmlWriter.WriteProcessingInstruction(System.String,System.String)">
  3148. <summary>
  3149. <para>When overridden in a derived class, writes out a processing instruction with a space between
  3150. the name and text as follows: &lt;?name text?&gt;.</para>
  3151. </summary>
  3152. <param name="name">The name of the processing instruction.</param>
  3153. <param name=" text">The text to include in the processing instruction.</param>
  3154. </member>
  3155. <member name="M:System.Xml.XmlWriter.WriteEntityRef(System.String)">
  3156. <summary>
  3157. <para>When overridden in a derived class, writes out an entity reference as follows:
  3158. &amp;<paramref name="name" /> ;.</para>
  3159. </summary>
  3160. <param name="name">The name of the entity reference.</param>
  3161. </member>
  3162. <member name="M:System.Xml.XmlWriter.WriteCharEntity(System.Char)">
  3163. <summary>
  3164. <para>When overridden in a derived class, forces the
  3165. generation of a character entity for the specified Unicode character value.</para>
  3166. </summary>
  3167. <param name="ch">The Unicode character for which to generate a character entity.</param>
  3168. </member>
  3169. <member name="M:System.Xml.XmlWriter.WriteWhitespace(System.String)">
  3170. <summary>
  3171. <para>When overridden in a derived class, writes out the given white space.</para>
  3172. </summary>
  3173. <param name="ws">The string of white space characters.</param>
  3174. </member>
  3175. <member name="M:System.Xml.XmlWriter.WriteString(System.String)">
  3176. <summary>
  3177. <para> When overridden in a derived class, writes the given text content.</para>
  3178. </summary>
  3179. <param name="text">The text to write.</param>
  3180. </member>
  3181. <member name="M:System.Xml.XmlWriter.WriteSurrogateCharEntity(System.Char,System.Char)">
  3182. <summary>
  3183. <para>When overridden in a derived class, generates and writes the surrogate character entity
  3184. for the surrogate character pair.</para>
  3185. </summary>
  3186. <param name="lowChar">The low surrogate. This must be a value between 0xDC00 and 0xDFFF. </param>
  3187. <param name=" highChar">The high surrogate. This must be a value between 0xD800 and 0xDBFF.</param>
  3188. </member>
  3189. <member name="M:System.Xml.XmlWriter.WriteChars(System.Char[],System.Int32,System.Int32)">
  3190. <summary>
  3191. <para>When overridden in a derived class, writes text a buffer at a time.</para>
  3192. </summary>
  3193. <param name=" buffer">Character array containing the text to write.</param>
  3194. <param name="index">The position within the buffer indicating the start of the text to write.</param>
  3195. <param name="count">The number of characters to write.</param>
  3196. </member>
  3197. <member name="M:System.Xml.XmlWriter.WriteRaw(System.Char[],System.Int32,System.Int32)">
  3198. <summary>
  3199. <para> When overridden in a derived class, writes raw markup manually from a character buffer.
  3200. </para>
  3201. </summary>
  3202. <param name="buffer">Character array containing the text to write. </param>
  3203. <param name="index">The position within the buffer indicating the start of the text to write. </param>
  3204. <param name="count">The number of characters to write. </param>
  3205. </member>
  3206. <member name="M:System.Xml.XmlWriter.WriteRaw(System.String)">
  3207. <summary>
  3208. <para>When overridden in a derived class, writes raw markup manually from a string.</para>
  3209. </summary>
  3210. <param name="data">String containing the text to write.</param>
  3211. </member>
  3212. <member name="M:System.Xml.XmlWriter.WriteBase64(System.Byte[],System.Int32,System.Int32)">
  3213. <summary>
  3214. <para>When overridden in a derived class, encodes the specified binary bytes as base64 and writes out
  3215. the resulting text.</para>
  3216. </summary>
  3217. <param name="buffer">Byte array to encode.</param>
  3218. <param name="index">The position within the buffer indicating the start of the bytes to write.</param>
  3219. <param name="count">The number of bytes to write.</param>
  3220. </member>
  3221. <member name="M:System.Xml.XmlWriter.WriteBinHex(System.Byte[],System.Int32,System.Int32)">
  3222. <summary>
  3223. <para> When overridden in a derived class, encodes the specified binary bytes as binhex and writes out
  3224. the resulting text.
  3225. </para>
  3226. </summary>
  3227. <param name="buffer">Byte array to encode. </param>
  3228. <param name="index">The position within the buffer indicating the start of the bytes to write. </param>
  3229. <param name="count">The number of bytes to write. </param>
  3230. </member>
  3231. <member name="M:System.Xml.XmlWriter.Close">
  3232. <summary>
  3233. <para>When overridden in a derived class, closes this stream and the underlying stream.</para>
  3234. </summary>
  3235. </member>
  3236. <member name="M:System.Xml.XmlWriter.Flush">
  3237. <summary>
  3238. <para>When overridden in a derived class, flushes whatever is in the buffer to the underlying streams and also flushes the
  3239. underlying stream.</para>
  3240. </summary>
  3241. </member>
  3242. <member name="M:System.Xml.XmlWriter.LookupPrefix(System.String)">
  3243. <summary>
  3244. <para> When overridden in a derived class, returns the closest prefix defined in the
  3245. current namespace scope for the namespace URI.</para>
  3246. </summary>
  3247. <param name="ns">The namespace URI whose prefix you want to find.</param>
  3248. <returns>
  3249. <para>The matching prefix or <see langword="null" /> if no matching namespace URI is found in the current scope.</para>
  3250. </returns>
  3251. </member>
  3252. <member name="M:System.Xml.XmlWriter.WriteNmToken(System.String)">
  3253. <summary>
  3254. <para>When overridden in a derived class, writes out the specified name, ensuring it is a valid NmToken according to
  3255. the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).</para>
  3256. </summary>
  3257. <param name="name">The name to write.</param>
  3258. </member>
  3259. <member name="M:System.Xml.XmlWriter.WriteName(System.String)">
  3260. <summary>
  3261. <para>When overridden in a derived class, writes out the specified name, ensuring it is a valid name according to
  3262. the W3C XML 1.0 recommendation
  3263. (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).</para>
  3264. </summary>
  3265. <param name="name">The name to write.</param>
  3266. </member>
  3267. <member name="M:System.Xml.XmlWriter.WriteQualifiedName(System.String,System.String)">
  3268. <summary>
  3269. <para> When overridden in a derived class, writes out the namespace-qualified name. This method looks up the prefix
  3270. that is in scope for the given namespace.</para>
  3271. </summary>
  3272. <param name="localName">The local name to write.</param>
  3273. <param name=" ns">The namespace URI for the name.</param>
  3274. </member>
  3275. <member name="M:System.Xml.XmlWriter.WriteAttributes(System.Xml.XmlReader,System.Boolean)">
  3276. <summary>
  3277. <para> When overridden in a derived class, writes out all the attributes found at the
  3278. current position in the <see cref="T:System.Xml.XmlReader" />
  3279. .</para>
  3280. </summary>
  3281. <param name="reader">The <see langword="XmlReader" /> from which to copy the attributes.</param>
  3282. <param name="defattr">
  3283. <see langword="true" /> to copy the default attributes from the <see langword="XmlReader" /> ; otherwise, <see langword="false" />.</param>
  3284. </member>
  3285. <member name="M:System.Xml.XmlWriter.WriteNode(System.Xml.XmlReader,System.Boolean)">
  3286. <summary>
  3287. <para>When overridden in a derived class, copies everything from the reader to the writer and
  3288. moves the reader to the start of the next
  3289. sibling.</para>
  3290. </summary>
  3291. <param name="reader">The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
  3292. <param name="defattr">
  3293. <see langword="true" /> to copy the default attributes from the <see langword="XmlReader" /> ; otherwise, <see langword="false" />.</param>
  3294. </member>
  3295. <member name="M:System.Xml.XmlWriter.WriteElementString(System.String,System.String)">
  3296. <summary>
  3297. <para> When overridden in a derived class, writes an element with the specified local name and value.</para>
  3298. </summary>
  3299. <param name="localName">The local name of the element</param>
  3300. <param name=" value">The value of the element</param>
  3301. </member>
  3302. <member name="M:System.Xml.XmlWriter.WriteElementString(System.String,System.String,System.String)">
  3303. <summary>
  3304. <para> When overridden in a derived class, writes an element with the specified parameters.</para>
  3305. </summary>
  3306. <param name="localName">The local name of the element</param>
  3307. <param name="ns">The namespace URI to associate with the element</param>
  3308. <param name=" value">The value of the element</param>
  3309. </member>
  3310. <member name="P:System.Xml.XmlWriter.WriteState">
  3311. <summary>
  3312. <para>When overridden in a derived class, gets the state of the writer.</para>
  3313. </summary>
  3314. </member>
  3315. <member name="P:System.Xml.XmlWriter.XmlSpace">
  3316. <summary>
  3317. <para> When overridden in a derived class, gets an <see cref="T:System.Xml.XmlSpace" /> representing the current xml:space scope.
  3318. </para>
  3319. </summary>
  3320. </member>
  3321. <member name="P:System.Xml.XmlWriter.XmlLang">
  3322. <summary>
  3323. <para> When overridden in a derived class, gets the current xml:lang scope.
  3324. </para>
  3325. </summary>
  3326. </member>
  3327. <member name="M:System.Xml.XmlTextWriter.#ctor(System.IO.Stream,System.Text.Encoding)">
  3328. <summary>
  3329. <para>Creates an instance of the <see langword="XmlTextWriter" /> class using the specified
  3330. stream.</para>
  3331. </summary>
  3332. <param name="w">The stream to which you want to write.</param>
  3333. <param name=" encoding"> The encoding to generate. If encoding is <see langword="null" /> it writes out the stream as UTF-8 and omits the encoding attribute from the ProcessingInstruction.</param>
  3334. </member>
  3335. <member name="M:System.Xml.XmlTextWriter.#ctor(System.String,System.Text.Encoding)">
  3336. <summary>
  3337. <para>Creates an instance of the <see langword="XmlTextWriter" /> class using the specified file.</para>
  3338. </summary>
  3339. <param name="filename"> The filename to write to. If the file exists, it will truncate it and overwrite it with the new content.</param>
  3340. <param name=" encoding"> The encoding to generate. If encoding is <see langword="null" /> it writes the file out as UTF-8, and omits the encoding attribute from the ProcessingInstruction.</param>
  3341. </member>
  3342. <member name="M:System.Xml.XmlTextWriter.#ctor(System.IO.TextWriter)">
  3343. <summary>
  3344. <para> Creates an instance of the <see langword="XmlTextWriter" />
  3345. class using the specified <see cref="T:System.IO.TextWriter" />
  3346. .</para>
  3347. </summary>
  3348. <param name="w">The <see langword="TextWriter" /> to write to. It is assumed that the <see langword="TextWriter" /> is already set to the correct encoding. </param>
  3349. </member>
  3350. <member name="M:System.Xml.XmlTextWriter.WriteStartDocument">
  3351. <summary>
  3352. <para> Writes the XML declaration with the
  3353. version "1.0".</para>
  3354. </summary>
  3355. </member>
  3356. <member name="M:System.Xml.XmlTextWriter.WriteStartDocument(System.Boolean)">
  3357. <summary>
  3358. <para> Writes the XML declaration with the
  3359. version "1.0" and the standalone attribute.</para>
  3360. </summary>
  3361. <param name="standalone">If <see langword="true" />, it writes "standalone=yes"; if <see langword="false" />, it writes "standalone=no"</param>
  3362. </member>
  3363. <member name="M:System.Xml.XmlTextWriter.WriteEndDocument">
  3364. <summary>
  3365. <para>Closes any open elements or attributes and puts the
  3366. writer back in the Start state.</para>
  3367. </summary>
  3368. </member>
  3369. <member name="M:System.Xml.XmlTextWriter.WriteDocType(System.String,System.String,System.String,System.String)">
  3370. <summary>
  3371. <para> Writes the DOCTYPE declaration with the specified name
  3372. and optional attributes.</para>
  3373. </summary>
  3374. <param name="name">The name of the DOCTYPE. This must be non-empty.</param>
  3375. <param name="pubid">If non-null it also writes PUBLIC "pubid" "sysid" where pubid and sysid are replaced with the value of the given arguments.</param>
  3376. <param name="sysid">If pubid is null and sysid is non-null it writes SYSTEM "sysid" where sysid is replaced with the value of this argument.</param>
  3377. <param name="subset">If non-null it writes [subset] where subset is replaced with the value of this argument.</param>
  3378. </member>
  3379. <member name="M:System.Xml.XmlTextWriter.WriteStartElement(System.String,System.String,System.String)">
  3380. <summary>
  3381. <para> Writes the specified start tag and associates it with the given namespace
  3382. and prefix.</para>
  3383. </summary>
  3384. <param name=" prefix">The namespace prefix of the element.</param>
  3385. <param name="localName">
  3386. <para> The local name of the element.</para>
  3387. </param>
  3388. <param name="ns">
  3389. <para>The namespace URI to associate with the element. If this namespace is already in scope and has an associated prefix then the writer will automatically write that prefix also.</para>
  3390. </param>
  3391. </member>
  3392. <member name="M:System.Xml.XmlTextWriter.WriteEndElement">
  3393. <summary>
  3394. <para>Closes one element and pops the corresponding namespace scope.</para>
  3395. </summary>
  3396. </member>
  3397. <member name="M:System.Xml.XmlTextWriter.WriteFullEndElement">
  3398. <summary>
  3399. <para>Closes one element and pops the corresponding namespace scope.</para>
  3400. </summary>
  3401. </member>
  3402. <member name="M:System.Xml.XmlTextWriter.WriteStartAttribute(System.String,System.String,System.String)">
  3403. <summary>
  3404. <para>Writes the start of an attribute.</para>
  3405. </summary>
  3406. <param name=" prefix">Namespace prefix of the attribute.</param>
  3407. <param name="localName">LocalName of the attribute.</param>
  3408. <param name=" ns">NamespaceURI of the attribute</param>
  3409. </member>
  3410. <member name="M:System.Xml.XmlTextWriter.WriteEndAttribute">
  3411. <summary>
  3412. <para>Closes the previous <see cref="M:System.Xml.XmlTextWriter.WriteStartAttribute(System.String,System.String,System.String)" />
  3413. call.</para>
  3414. </summary>
  3415. </member>
  3416. <member name="M:System.Xml.XmlTextWriter.WriteCData(System.String)">
  3417. <summary>
  3418. <para>Writes out a &lt;![CDATA[...]]&gt; block containing
  3419. the specified text.</para>
  3420. </summary>
  3421. <param name="text">Text to place inside the CDATA block.</param>
  3422. </member>
  3423. <member name="M:System.Xml.XmlTextWriter.WriteComment(System.String)">
  3424. <summary>
  3425. <para>Writes out a comment &lt;!--...--&gt; containing
  3426. the specified text.</para>
  3427. </summary>
  3428. <param name="text">Text to place inside the comment.</param>
  3429. </member>
  3430. <member name="M:System.Xml.XmlTextWriter.WriteProcessingInstruction(System.String,System.String)">
  3431. <summary>
  3432. <para>Writes out a processing instruction with a space between
  3433. the name and text as follows: &lt;?name text?&gt;.</para>
  3434. </summary>
  3435. <param name="name">Name of the processing instruction.</param>
  3436. <param name=" text">Text to include in the processing instruction.</param>
  3437. </member>
  3438. <member name="M:System.Xml.XmlTextWriter.WriteEntityRef(System.String)">
  3439. <summary>
  3440. <para>Writes out an entity reference as follows:
  3441. &amp;<paramref name="name" /> ;.</para>
  3442. </summary>
  3443. <param name="name">Name of the entity reference.</param>
  3444. </member>
  3445. <member name="M:System.Xml.XmlTextWriter.WriteCharEntity(System.Char)">
  3446. <summary>
  3447. <para>Forces the
  3448. generation of a character entity for the specified Unicode character value.</para>
  3449. </summary>
  3450. <param name="ch">Unicode character for which to generate a character entity.</param>
  3451. </member>
  3452. <member name="M:System.Xml.XmlTextWriter.WriteWhitespace(System.String)">
  3453. <summary>
  3454. <para>Writes out the given white space.</para>
  3455. </summary>
  3456. <param name="ws">The string of white space characters.</param>
  3457. </member>
  3458. <member name="M:System.Xml.XmlTextWriter.WriteString(System.String)">
  3459. <summary>
  3460. <para> Writes the given text content.</para>
  3461. </summary>
  3462. <param name="text">Text to write.</param>
  3463. </member>
  3464. <member name="M:System.Xml.XmlTextWriter.WriteSurrogateCharEntity(System.Char,System.Char)">
  3465. <summary>
  3466. <para> Generates and writes the surrogate character entity
  3467. for the surrogate character pair.</para>
  3468. </summary>
  3469. <param name="lowChar">The low surrogate. This must be a value between 0xDC00 and 0xDFFF. </param>
  3470. <param name=" highChar">The high surrogate. This must be a value between 0xD800 and 0xDBFF.</param>
  3471. </member>
  3472. <member name="M:System.Xml.XmlTextWriter.WriteChars(System.Char[],System.Int32,System.Int32)">
  3473. <summary>
  3474. <para> Writes text a buffer at a time.
  3475. </para>
  3476. </summary>
  3477. <param name="buffer">Character array containing the text to write. </param>
  3478. <param name="index">The position within the buffer indicating the start of the text to write. </param>
  3479. <param name="count">The number of characters to write. </param>
  3480. </member>
  3481. <member name="M:System.Xml.XmlTextWriter.WriteRaw(System.Char[],System.Int32,System.Int32)">
  3482. <summary>
  3483. <para> Writes raw markup manually from a character buffer.
  3484. </para>
  3485. </summary>
  3486. <param name="buffer">Character array containing the text to write. </param>
  3487. <param name="index">The position within the buffer indicating the start of the text to write. </param>
  3488. <param name="count">The number of characters to write. </param>
  3489. </member>
  3490. <member name="M:System.Xml.XmlTextWriter.WriteRaw(System.String)">
  3491. <summary>
  3492. <para>Writes raw markup manually from a string.</para>
  3493. </summary>
  3494. <param name="data">String containing the text to write.</param>
  3495. </member>
  3496. <member name="M:System.Xml.XmlTextWriter.WriteBase64(System.Byte[],System.Int32,System.Int32)">
  3497. <summary>
  3498. <para>Encodes the specified binary bytes as base64 and writes out
  3499. the resulting text.</para>
  3500. </summary>
  3501. <param name="buffer">Byte array to encode.</param>
  3502. <param name="index">The position within the buffer indicating the start of the bytes to write.</param>
  3503. <param name="count">The number of bytes to write.</param>
  3504. </member>
  3505. <member name="M:System.Xml.XmlTextWriter.WriteBinHex(System.Byte[],System.Int32,System.Int32)">
  3506. <summary>
  3507. <para> Encodes the specified binary bytes as binhex and writes out
  3508. the resulting text.
  3509. </para>
  3510. </summary>
  3511. <param name="buffer">Byte array to encode. </param>
  3512. <param name="index">The position within the buffer indicating the start of the bytes to write. </param>
  3513. <param name="count">The number of bytes to write. </param>
  3514. </member>
  3515. <member name="M:System.Xml.XmlTextWriter.Close">
  3516. <summary>
  3517. <para>Closes this stream and the underlying stream.</para>
  3518. </summary>
  3519. </member>
  3520. <member name="M:System.Xml.XmlTextWriter.Flush">
  3521. <summary>
  3522. <para>Flushes whatever is in the buffer to the underlying streams and also flushes the
  3523. underlying stream.</para>
  3524. </summary>
  3525. </member>
  3526. <member name="M:System.Xml.XmlTextWriter.WriteName(System.String)">
  3527. <summary>
  3528. <para>Writes out the specified name, ensuring it is a valid
  3529. name according to the W3C XML 1.0 recommendation(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name
  3530. ).</para>
  3531. </summary>
  3532. <param name="name">Name to write.</param>
  3533. </member>
  3534. <member name="M:System.Xml.XmlTextWriter.WriteQualifiedName(System.String,System.String)">
  3535. <summary>
  3536. <para> Writes out the namespace-qualified name. This method looks up the prefix
  3537. that is in scope for the given namespace.</para>
  3538. </summary>
  3539. <param name="localName">The local name to write.</param>
  3540. <param name=" ns">The namespace URI to associate with the name.</param>
  3541. </member>
  3542. <member name="M:System.Xml.XmlTextWriter.LookupPrefix(System.String)">
  3543. <summary>
  3544. <para> Returns the closest prefix defined in the
  3545. current namespace scope for the namespace URI.</para>
  3546. </summary>
  3547. <param name="ns">Namespace URI whose prefix you want to find.</param>
  3548. <returns>
  3549. <para>The matching prefix. Or <see langword="null" /> if no matching namespace URI is found in the current scope.</para>
  3550. </returns>
  3551. </member>
  3552. <member name="M:System.Xml.XmlTextWriter.WriteNmToken(System.String)">
  3553. <summary>
  3554. <para>Writes out the specified name, ensuring it is a valid NmToken according
  3555. to the W3C XML 1.0 recommendation(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).</para>
  3556. </summary>
  3557. <param name="name">Name to write.</param>
  3558. </member>
  3559. <member name="P:System.Xml.XmlTextWriter.BaseStream">
  3560. <summary>
  3561. <para>Gets the underlying stream object.</para>
  3562. </summary>
  3563. </member>
  3564. <member name="P:System.Xml.XmlTextWriter.Namespaces">
  3565. <summary>
  3566. <para>Gets
  3567. or sets a value indicating whether to do namespace support.</para>
  3568. </summary>
  3569. </member>
  3570. <member name="P:System.Xml.XmlTextWriter.Formatting">
  3571. <summary>
  3572. <para> Indicates how the output
  3573. is formatted.</para>
  3574. </summary>
  3575. </member>
  3576. <member name="P:System.Xml.XmlTextWriter.Indentation">
  3577. <summary>
  3578. <para>Gets or sets how many IndentChars to write for each level
  3579. in the hierarchy when <see cref="P:System.Xml.XmlTextWriter.Formatting" /> is set to
  3580. <see langword="Formatting.Indented" />
  3581. .</para>
  3582. </summary>
  3583. </member>
  3584. <member name="P:System.Xml.XmlTextWriter.IndentChar">
  3585. <summary>
  3586. <para>Gets or sets which character to use for indenting
  3587. when <see cref="P:System.Xml.XmlTextWriter.Formatting" /> is set to Formatting.Indented.</para>
  3588. </summary>
  3589. </member>
  3590. <member name="P:System.Xml.XmlTextWriter.QuoteChar">
  3591. <summary>
  3592. <para>Gets or sets which character to use to quote attribute
  3593. values.</para>
  3594. </summary>
  3595. </member>
  3596. <member name="P:System.Xml.XmlTextWriter.WriteState">
  3597. <summary>
  3598. <para>Gets the state of the writer.</para>
  3599. </summary>
  3600. </member>
  3601. <member name="P:System.Xml.XmlTextWriter.XmlSpace">
  3602. <summary>
  3603. <para> Gets an <see cref="T:System.Xml.XmlSpace" /> representing the current xml:space scope.
  3604. </para>
  3605. </summary>
  3606. </member>
  3607. <member name="P:System.Xml.XmlTextWriter.XmlLang">
  3608. <summary>
  3609. <para> Gets the current xml:lang scope.
  3610. </para>
  3611. </summary>
  3612. </member>
  3613. <member name="M:System.Xml.XmlDOMTextWriter.WriteStartElement(System.String,System.String,System.String)">
  3614. </member>
  3615. <member name="M:System.Xml.XmlDOMTextWriter.WriteStartAttribute(System.String,System.String,System.String)">
  3616. </member>
  3617. <member name="T:System.Xml.XmlElement">
  3618. <summary>
  3619. <para>
  3620. Represents an element.
  3621. </para>
  3622. </summary>
  3623. </member>
  3624. <member name="M:System.Xml.XmlElement.CloneNode(System.Boolean)">
  3625. <summary>
  3626. <para>Creates a duplicate of this node.</para>
  3627. </summary>
  3628. <param name="deep">
  3629. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself (and its attributes if the node is an <see langword="XmlElement" /> ).</param>
  3630. <returns>
  3631. <para>The cloned node.</para>
  3632. </returns>
  3633. </member>
  3634. <member name="M:System.Xml.XmlElement.GetAttribute(System.String)">
  3635. <summary>
  3636. <para>Returns the value for the attribute with the specified name.</para>
  3637. </summary>
  3638. <param name="name">The name of the attribute to retrieve. This is a qualified name. It is matched against the <see langword="Name" /> property of the matching node. </param>
  3639. <returns>
  3640. <para>The value of the specified attribute. An empty string is
  3641. returned if a matching attribute is not found or if the attribute does not have a specified or default value.</para>
  3642. </returns>
  3643. </member>
  3644. <member name="M:System.Xml.XmlElement.SetAttribute(System.String,System.String)">
  3645. <summary>
  3646. <para>Sets the value of the attribute
  3647. with the specified name.</para>
  3648. </summary>
  3649. <param name="name">The name of the attribute to create or alter. This is a qualified name. If the name contains a colon it is parsed into prefix and local name components.</param>
  3650. <param name=" value">The value to set for the attribute.</param>
  3651. </member>
  3652. <member name="M:System.Xml.XmlElement.RemoveAttribute(System.String)">
  3653. <summary>
  3654. <para>Removes an attribute by name.</para>
  3655. </summary>
  3656. <param name="name">The name of the attribute to remove.This is a qualified name. It is matched against the <see langword="Name" /> property of the matching node.</param>
  3657. </member>
  3658. <member name="M:System.Xml.XmlElement.GetAttributeNode(System.String)">
  3659. <summary>
  3660. <para>Returns the <see langword="XmlAttribute" /> with the specified name.</para>
  3661. </summary>
  3662. <param name="name">The name of the attribute to retrieve. This is a qualified name. It is matched against the <see langword="Name" /> property of the matching node.</param>
  3663. <returns>
  3664. <para>The specified <see langword="XmlAttribute" /> or
  3665. <see langword="null" /> if a matching attribute was not found.</para>
  3666. </returns>
  3667. </member>
  3668. <member name="M:System.Xml.XmlElement.SetAttributeNode(System.Xml.XmlAttribute)">
  3669. <summary>
  3670. <para>Adds the specified <see cref="T:System.Xml.XmlAttribute" /> .</para>
  3671. </summary>
  3672. <param name="newAttr">The <see langword="XmlAttribute" /> node to add to the attribute collection for this element.</param>
  3673. <returns>
  3674. <para>If the attribute replaces an existing attribute with the
  3675. same name, the old <see langword="XmlAttribute" />
  3676. is returned; otherwise,
  3677. <see langword="null" />
  3678. is
  3679. returned.</para>
  3680. </returns>
  3681. </member>
  3682. <member name="M:System.Xml.XmlElement.RemoveAttributeNode(System.Xml.XmlAttribute)">
  3683. <summary>
  3684. <para>Removes the specified <see cref="T:System.Xml.XmlAttribute" /> .</para>
  3685. </summary>
  3686. <param name="oldAttr">The <see langword="XmlAttribute" /> node to remove. If the removed attribute has a default value, it is immediately replaced.</param>
  3687. <returns>
  3688. <para>The removed <see langword="XmlAttribute" /> or
  3689. <see langword="null" /> if <paramref name="oldAttr" /> is not an attribute node of the
  3690. <see langword="XmlElement" /> .</para>
  3691. </returns>
  3692. </member>
  3693. <member name="M:System.Xml.XmlElement.GetElementsByTagName(System.String)">
  3694. <summary>
  3695. <para>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant
  3696. elements that match the specified <see cref="P:System.Xml.XmlElement.Name" />
  3697. .</para>
  3698. </summary>
  3699. <param name="name">The name tag to match. This is a qualified name. It is matched against the <see langword="Name" /> property of the matching node. The asterik (*) is a special value that matches all tags.</param>
  3700. <returns>
  3701. <para>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes.</para>
  3702. </returns>
  3703. </member>
  3704. <member name="M:System.Xml.XmlElement.GetAttribute(System.String,System.String)">
  3705. <summary>
  3706. <para>Returns the value for the attribute with the
  3707. specified local name and namespace URI.</para>
  3708. </summary>
  3709. <param name="localName">The local name of the attribute to retrieve.</param>
  3710. <param name="namespaceURI">The namespace URI of the attribute to retrieve.</param>
  3711. <returns>
  3712. <para>The value of the specified attribute. An empty string is returned if a matching attribute is not found or if the attribute does not have a specified or default value.</para>
  3713. </returns>
  3714. </member>
  3715. <member name="M:System.Xml.XmlElement.SetAttribute(System.String,System.String,System.String)">
  3716. <summary>
  3717. <para>Sets the value of the attribute with the
  3718. specified local name and namespace URI.</para>
  3719. </summary>
  3720. <param name="localName">The local name of the attribute.</param>
  3721. <param name="namespaceURI">The namespace URI of the attribute.</param>
  3722. <param name="value">The value to set for the attribute.</param>
  3723. </member>
  3724. <member name="M:System.Xml.XmlElement.RemoveAttribute(System.String,System.String)">
  3725. <summary>
  3726. <para>Removes an attribute with the specified local name and namespace URI.</para>
  3727. <note type="note">
  3728. If the removed attribute has a
  3729. default value, it is immediately replaced.
  3730. </note>
  3731. </summary>
  3732. <param name="localName">The local name of the attribute to remove.</param>
  3733. <param name="namespaceURI">The namespace URI of the attribute to remove.</param>
  3734. </member>
  3735. <member name="M:System.Xml.XmlElement.GetAttributeNode(System.String,System.String)">
  3736. <summary>
  3737. <para>Returns the <see cref="T:System.Xml.XmlAttribute" /> with the specified local name and namespace URI.</para>
  3738. </summary>
  3739. <param name="localName">The local name of the attribute.</param>
  3740. <param name="namespaceURI">The namespace URI of the attribute.</param>
  3741. <returns>
  3742. <para>The specified <see langword="XmlAttribute" /> or
  3743. <see langword="null" /> if a matching attribute was not found.</para>
  3744. </returns>
  3745. </member>
  3746. <member name="M:System.Xml.XmlElement.SetAttributeNode(System.String,System.String)">
  3747. <summary>
  3748. <para>Adds the specified <see cref="T:System.Xml.XmlAttribute" /> .</para>
  3749. </summary>
  3750. <param name="localName">The local name of the attribute.</param>
  3751. <param name="namespaceURI">The namespace URI of the attribute.</param>
  3752. <returns>
  3753. <para>The <see langword="XmlAttribute" /> to add.</para>
  3754. </returns>
  3755. </member>
  3756. <member name="M:System.Xml.XmlElement.RemoveAttributeNode(System.String,System.String)">
  3757. <summary>
  3758. <para>Removes the <see cref="T:System.Xml.XmlAttribute" />specified by the local name and namespace URI.</para>
  3759. <note type="note">
  3760. If the removed attribute has a
  3761. default value, it is immediately replaced.
  3762. </note>
  3763. </summary>
  3764. <param name="localName">The local name of the attribute.</param>
  3765. <param name="namespaceURI">The namespace URI of the attribute.</param>
  3766. <returns>
  3767. <para>The removed <see langword="XmlAttribute" /> or
  3768. <see langword="null" /> if the <see langword="XmlElement" /> does not have a
  3769. matching attribute node.</para>
  3770. </returns>
  3771. </member>
  3772. <member name="M:System.Xml.XmlElement.GetElementsByTagName(System.String,System.String)">
  3773. <summary>
  3774. <para>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant
  3775. elements that match the specified <see cref="P:System.Xml.XmlElement.LocalName" /> and <see cref="P:System.Xml.XmlElement.NamespaceURI" />
  3776. .</para>
  3777. </summary>
  3778. <param name="localName">The local name to match. The asterik (*) is a special value that matches all tags.</param>
  3779. <param name="namespaceURI">The namespace URI to match.</param>
  3780. <returns>
  3781. <para>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes.</para>
  3782. </returns>
  3783. </member>
  3784. <member name="M:System.Xml.XmlElement.HasAttribute(System.String)">
  3785. <summary>
  3786. <para>Determines whether the current node has an attribute with the specified
  3787. name.</para>
  3788. </summary>
  3789. <param name="name">The name of the attribute to find. This is a qualified name. It is matched against the <see langword="Name" /> property of the matching node.</param>
  3790. <returns>
  3791. <para>
  3792. <see langword="true" /> if the current node has the specified attribute;
  3793. otherwise, <see langword="false" />.</para>
  3794. </returns>
  3795. </member>
  3796. <member name="M:System.Xml.XmlElement.HasAttribute(System.String,System.String)">
  3797. <summary>
  3798. <para>Determines whether the current node has an attribute
  3799. with the specified local name and namespace URI.</para>
  3800. </summary>
  3801. <param name="localName">The local name of the attribute to find.</param>
  3802. <param name="namespaceURI">The namespace URI of the attribute to find.</param>
  3803. <returns>
  3804. <para>
  3805. <see langword="true" /> if the current node has the specified attribute;
  3806. otherwise, <see langword="false" />.</para>
  3807. </returns>
  3808. </member>
  3809. <member name="M:System.Xml.XmlElement.WriteTo(System.Xml.XmlWriter)">
  3810. <summary>
  3811. <para>Saves the current node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  3812. </summary>
  3813. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  3814. </member>
  3815. <member name="M:System.Xml.XmlElement.WriteContentTo(System.Xml.XmlWriter)">
  3816. <summary>
  3817. <para>Saves all the children of the node to the specified
  3818. <see cref="T:System.Xml.XmlWriter" /> .</para>
  3819. </summary>
  3820. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  3821. </member>
  3822. <member name="M:System.Xml.XmlElement.RemoveAttributeAt(System.Int32)">
  3823. <summary>
  3824. <para> Removes the attribute node with the specified index from the element. </para>
  3825. <note type="note">
  3826. If the removed attribute has a
  3827. default value, it is immediately replaced.
  3828. </note>
  3829. </summary>
  3830. <param name="i">The index of the node to remove. The first node has index 0.</param>
  3831. <returns>
  3832. <para>The attribute node removed or
  3833. <see langword="null " />if there is no node at the given index.</para>
  3834. </returns>
  3835. </member>
  3836. <member name="M:System.Xml.XmlElement.RemoveAllAttributes">
  3837. <summary>
  3838. <para>Removes all specified attributes from the element. Default attributes are not removed.</para>
  3839. </summary>
  3840. </member>
  3841. <member name="M:System.Xml.XmlElement.RemoveAll">
  3842. <summary>
  3843. <para>Removes all specified attributes and children of the current node. Default
  3844. attributes are not removed.</para>
  3845. </summary>
  3846. </member>
  3847. <member name="P:System.Xml.XmlElement.Name">
  3848. <summary>
  3849. <para>Gets the qualified name of the node.</para>
  3850. </summary>
  3851. </member>
  3852. <member name="P:System.Xml.XmlElement.LocalName">
  3853. <summary>
  3854. <para> Gets the local name of the current node.</para>
  3855. </summary>
  3856. </member>
  3857. <member name="P:System.Xml.XmlElement.NamespaceURI">
  3858. <summary>
  3859. <para>Gets the namespace URI of this node.</para>
  3860. </summary>
  3861. </member>
  3862. <member name="P:System.Xml.XmlElement.Prefix">
  3863. <summary>
  3864. <para>Gets or sets the namespace prefix of this node.</para>
  3865. </summary>
  3866. </member>
  3867. <member name="P:System.Xml.XmlElement.NodeType">
  3868. <summary>
  3869. <para>Gets the type of the current node.</para>
  3870. </summary>
  3871. </member>
  3872. <member name="P:System.Xml.XmlElement.OwnerDocument">
  3873. <summary>
  3874. <para>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</para>
  3875. </summary>
  3876. </member>
  3877. <member name="P:System.Xml.XmlElement.IsEmpty">
  3878. <summary>
  3879. <para> Gets or sets the tag format of the element.</para>
  3880. </summary>
  3881. </member>
  3882. <member name="P:System.Xml.XmlElement.Attributes">
  3883. <summary>
  3884. <para>Gets an <see cref="T:System.Xml.XmlAttributeCollection" /> containing the list of attributes for this node.</para>
  3885. </summary>
  3886. </member>
  3887. <member name="P:System.Xml.XmlElement.HasAttributes">
  3888. <summary>
  3889. <para>Gets a <see langword="boolean" /> value indicating whether the current node
  3890. has any attributes.</para>
  3891. </summary>
  3892. </member>
  3893. <member name="P:System.Xml.XmlElement.InnerXml">
  3894. <summary>
  3895. <para>Gets or sets the markup representing just
  3896. the children of this node.</para>
  3897. </summary>
  3898. </member>
  3899. <member name="P:System.Xml.XmlElement.InnerText">
  3900. <summary>
  3901. <para>Gets or sets the concatenated values of the
  3902. node and all its children.</para>
  3903. </summary>
  3904. </member>
  3905. <member name="P:System.Xml.XmlElement.NextSibling">
  3906. <summary>
  3907. Gets the <see cref="T:System.Xml.XmlNode" /> immediately following this element.
  3908. </summary>
  3909. </member>
  3910. <member name="T:System.Xml.XmlEntity">
  3911. <summary>
  3912. <para> Represents an entity declaration: &lt;!ENTITY ... &gt;.
  3913. </para>
  3914. </summary>
  3915. </member>
  3916. <member name="M:System.Xml.XmlEntity.CloneNode(System.Boolean)">
  3917. <summary>
  3918. <para>Creates a duplicate of this node. Entity nodes
  3919. cannot be cloned. Calling this method on an <see langword="XmlEntity" /> object throws an exception.</para>
  3920. </summary>
  3921. <param name="deep">
  3922. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
  3923. </member>
  3924. <member name="M:System.Xml.XmlEntity.WriteTo(System.Xml.XmlWriter)">
  3925. <summary>
  3926. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  3927. For <see langword="XmlEntity" /> nodes, this
  3928. method has no effect.
  3929. </summary>
  3930. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  3931. </member>
  3932. <member name="M:System.Xml.XmlEntity.WriteContentTo(System.Xml.XmlWriter)">
  3933. <summary>
  3934. <para>Saves all the children of the node to the specified
  3935. <see cref="T:System.Xml.XmlWriter" /> .</para>
  3936. <para>For <see langword="XmlEntity" /> nodes, this method has no effect.</para>
  3937. </summary>
  3938. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  3939. </member>
  3940. <member name="P:System.Xml.XmlEntity.IsReadOnly">
  3941. <summary>
  3942. <para>Gets a value indicating whether the node is read-only.</para>
  3943. </summary>
  3944. </member>
  3945. <member name="P:System.Xml.XmlEntity.Name">
  3946. <summary>
  3947. <para>Gets the name of the node.</para>
  3948. </summary>
  3949. </member>
  3950. <member name="P:System.Xml.XmlEntity.LocalName">
  3951. <summary>
  3952. <para> Gets the name of the node without the namespace prefix.
  3953. </para>
  3954. </summary>
  3955. </member>
  3956. <member name="P:System.Xml.XmlEntity.InnerText">
  3957. <summary>
  3958. <para>Gets the concatenated values of the entity node and all
  3959. its children.</para>
  3960. </summary>
  3961. </member>
  3962. <member name="P:System.Xml.XmlEntity.NodeType">
  3963. <summary>
  3964. <para>Gets the type of the node.</para>
  3965. </summary>
  3966. </member>
  3967. <member name="P:System.Xml.XmlEntity.PublicId">
  3968. <summary>
  3969. <para>Gets
  3970. the value of the public identifier on the entity declaration.</para>
  3971. </summary>
  3972. </member>
  3973. <member name="P:System.Xml.XmlEntity.SystemId">
  3974. <summary>
  3975. <para>Gets the value of
  3976. the system identifier on the entity declaration.</para>
  3977. </summary>
  3978. </member>
  3979. <member name="P:System.Xml.XmlEntity.NotationName">
  3980. <summary>
  3981. <para>Gets
  3982. the name of the optional NDATA attribute on the
  3983. entity declaration.</para>
  3984. </summary>
  3985. </member>
  3986. <member name="P:System.Xml.XmlEntity.OuterXml">
  3987. <summary>
  3988. <para>Gets the markup representing this node and all its
  3989. children.</para>
  3990. </summary>
  3991. </member>
  3992. <member name="P:System.Xml.XmlEntity.InnerXml">
  3993. <summary>
  3994. <para> Gets the markup representing the children of
  3995. this node.</para>
  3996. </summary>
  3997. </member>
  3998. <member name="P:System.Xml.XmlEntity.BaseURI">
  3999. <summary>
  4000. <para>Gets the base URI of the current node.</para>
  4001. </summary>
  4002. </member>
  4003. <member name="T:System.Xml.XmlTextReader">
  4004. <summary>
  4005. <para> Represents a reader that provides
  4006. fast, non-cached, forward-only
  4007. access to XML data.</para>
  4008. </summary>
  4009. </member>
  4010. <member name="T:System.Xml.XmlReader">
  4011. <summary>
  4012. <para> Represents a reader that provides fast, non-cached, forward-only access
  4013. to XML data.</para>
  4014. </summary>
  4015. </member>
  4016. <member name="M:System.Xml.XmlReader.GetAttribute(System.String)">
  4017. <summary>
  4018. <para>When overridden in a derived class, gets the value of the attribute with the specified
  4019. <see cref="P:System.Xml.XmlReader.Name" /> .</para>
  4020. </summary>
  4021. <param name="name">The qualified name of the attribute.</param>
  4022. <returns>
  4023. <para>The value of the specified attribute. If the attribute
  4024. is not found, String.Empty is returned.</para>
  4025. </returns>
  4026. </member>
  4027. <member name="M:System.Xml.XmlReader.GetAttribute(System.String,System.String)">
  4028. <summary>
  4029. <para>When overridden in a derived class, gets the value of the attribute with the
  4030. specified <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> .</para>
  4031. </summary>
  4032. <param name="name">The local name of the attribute.</param>
  4033. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  4034. <returns>
  4035. <para>The value of the specified attribute. If the attribute
  4036. is not found, String.Empty is returned. This method does not move the reader.</para>
  4037. </returns>
  4038. </member>
  4039. <member name="M:System.Xml.XmlReader.GetAttribute(System.Int32)">
  4040. <summary>
  4041. <para>When overridden in a derived class, gets the value of the attribute with the specified index.</para>
  4042. </summary>
  4043. <param name="i">The index of the attribute. The index is zero-based. (The first attribute has index 0.)</param>
  4044. <returns>
  4045. <para>The value of the specified attribute. This method does not move the reader.</para>
  4046. </returns>
  4047. </member>
  4048. <member name="M:System.Xml.XmlReader.MoveToAttribute(System.String)">
  4049. <summary>
  4050. <para>When overridden in a derived class, moves to the attribute with the specified <see cref="P:System.Xml.XmlReader.Name" /> .</para>
  4051. </summary>
  4052. <param name="name">The qualified name of the attribute.</param>
  4053. <returns>
  4054. <para>
  4055. <see langword="true" /> if the attribute is found;
  4056. otherwise, <see langword="false" />. If <see langword="false" />,
  4057. the reader's position does not change.</para>
  4058. </returns>
  4059. </member>
  4060. <member name="M:System.Xml.XmlReader.MoveToAttribute(System.String,System.String)">
  4061. <summary>
  4062. <para>When overridden in a derived class, moves to the attribute with the specified <see cref="P:System.Xml.XmlReader.LocalName" />
  4063. and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> .</para>
  4064. </summary>
  4065. <param name="name">The local name of the attribute.</param>
  4066. <param name=" ns">The namespace URI of the attribute.</param>
  4067. <returns>
  4068. <para>
  4069. <see langword="true" /> if the attribute is found; otherwise,
  4070. <see langword="false" />. If <see langword="false" />, the reader's position does
  4071. not change.</para>
  4072. </returns>
  4073. </member>
  4074. <member name="M:System.Xml.XmlReader.MoveToAttribute(System.Int32)">
  4075. <summary>
  4076. <para>When overridden in a derived class, moves to the attribute with the specified index.</para>
  4077. </summary>
  4078. <param name="i">The index of the attribute.</param>
  4079. </member>
  4080. <member name="M:System.Xml.XmlReader.MoveToFirstAttribute">
  4081. <summary>
  4082. <para>When overridden in a derived class, moves to the first attribute.</para>
  4083. </summary>
  4084. <returns>
  4085. <para>
  4086. <see langword="true" /> if an
  4087. attribute exists (the reader moves to the first attribute); otherwise,
  4088. <see langword="false " />(the position of the reader does not change).</para>
  4089. </returns>
  4090. </member>
  4091. <member name="M:System.Xml.XmlReader.MoveToNextAttribute">
  4092. <summary>
  4093. <para>When overridden in a derived class, moves to the next attribute.</para>
  4094. </summary>
  4095. <returns>
  4096. <para>
  4097. <see langword="true" /> if there is a next attribute;
  4098. <see langword="false" /> if there are no more attributes.</para>
  4099. </returns>
  4100. </member>
  4101. <member name="M:System.Xml.XmlReader.MoveToElement">
  4102. <summary>
  4103. <para>When overridden in a derived class, moves to the element that contains the current attribute node.</para>
  4104. </summary>
  4105. <returns>
  4106. <para>
  4107. <see langword="true" /> if the reader
  4108. is positioned on an attribute (the reader moves to the element that owns
  4109. the attribute); <see langword="false" /> if the reader is not
  4110. positioned on an attribute
  4111. (the position of the reader does not change).</para>
  4112. </returns>
  4113. </member>
  4114. <member name="M:System.Xml.XmlReader.Read">
  4115. <summary>
  4116. <para>When overridden in a derived class, reads the next
  4117. node from the stream.</para>
  4118. </summary>
  4119. <returns>
  4120. <para>
  4121. <see langword="true" /> if the next node was read successfully;
  4122. <see langword="false" /> if there are no more nodes to read. </para>
  4123. </returns>
  4124. </member>
  4125. <member name="M:System.Xml.XmlReader.Close">
  4126. <summary>
  4127. <para> When overridden in a derived class, changes the <see cref="P:System.Xml.XmlReader.ReadState" /> to
  4128. <see langword="Closed" />
  4129. .</para>
  4130. </summary>
  4131. </member>
  4132. <member name="M:System.Xml.XmlReader.Skip">
  4133. <summary>
  4134. <para> Skips the children of the current node.</para>
  4135. </summary>
  4136. </member>
  4137. <member name="M:System.Xml.XmlReader.ReadString">
  4138. <summary>
  4139. <para>When overridden in a derived class, reads the contents of an element or text node as a string.</para>
  4140. </summary>
  4141. <returns>
  4142. <para>The contents of the element or text node. This can be an empty string if
  4143. the reader is positioned on something other than an element or text node, or
  4144. if there is no more text content to return in the current context.</para>
  4145. <para>
  4146. <see langword="Note:" /> The text node can be either an element or
  4147. an attribute text node.</para>
  4148. </returns>
  4149. </member>
  4150. <member name="M:System.Xml.XmlReader.MoveToContent">
  4151. <summary>
  4152. <para> Checks whether the current node is a content (non-white
  4153. space text, <see langword="CDATA" />, <see langword="Element" />,
  4154. <see langword="EndElement" />, <see langword="EntityReference" />, or
  4155. <see langword="EndEntity" /> )
  4156. node. If the node is not a content node, the reader skips ahead to the
  4157. next content node or end of file. It skips over nodes of the following type:
  4158. <see langword="ProcessingInstruction" />, <see langword="DocumentType" />,
  4159. <see langword="Comment" />, <see langword="Whitespace" />, or
  4160. <see langword="SignificantWhitespace" />.</para>
  4161. </summary>
  4162. <returns>
  4163. <para> The <see cref="P:System.Xml.XmlReader.NodeType" /><see langword=" " />of the current
  4164. node found by the method or <see langword="XmlNodeType.None" />
  4165. if the reader has reached the end of the input stream.</para>
  4166. </returns>
  4167. </member>
  4168. <member name="M:System.Xml.XmlReader.ReadStartElement">
  4169. <summary>
  4170. <para>Checks that the current node is an element and advances the reader to the next
  4171. node.</para>
  4172. </summary>
  4173. </member>
  4174. <member name="M:System.Xml.XmlReader.ReadStartElement(System.String)">
  4175. <summary>
  4176. <para>Checks that the current content node is an element with
  4177. the given <see cref="P:System.Xml.XmlReader.Name" /> and
  4178. advances the reader to the next node.</para>
  4179. </summary>
  4180. <param name="name">The qualified name of the element.</param>
  4181. </member>
  4182. <member name="M:System.Xml.XmlReader.ReadStartElement(System.String,System.String)">
  4183. <summary>
  4184. <para>Checks that the current content node is an element with
  4185. the given <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" />
  4186. and advances the reader to the next node.</para>
  4187. </summary>
  4188. <param name="localname">The local name of the element.</param>
  4189. <param name="ns"> The namespace URI of the element.</param>
  4190. </member>
  4191. <member name="M:System.Xml.XmlReader.ReadElementString">
  4192. <summary>
  4193. <para>Reads a text-only element.</para>
  4194. </summary>
  4195. <returns>
  4196. <para> The text contained in the element that was read.
  4197. An empty string if the element is empty
  4198. (<c>&lt;item&gt;&lt;/item&gt;</c> or <c>&lt;item/&gt;</c>).</para>
  4199. </returns>
  4200. </member>
  4201. <member name="M:System.Xml.XmlReader.ReadElementString(System.String)">
  4202. <summary>
  4203. <para>Checks that the <see cref="P:System.Xml.XmlReader.Name" />
  4204. property of the element found
  4205. matches the given string before reading a text-only element.</para>
  4206. </summary>
  4207. <param name="name">The name to check.</param>
  4208. <returns>
  4209. <para>The text contained in the element that was read.
  4210. An empty string if the element is empty
  4211. (<c>&lt;item&gt;&lt;/item&gt;</c> or <c>&lt;item/&gt;</c>).</para>
  4212. </returns>
  4213. </member>
  4214. <member name="M:System.Xml.XmlReader.ReadElementString(System.String,System.String)">
  4215. <summary>
  4216. <para>Checks that the <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties of the element found
  4217. matches the given strings before reading a text-only element.</para>
  4218. </summary>
  4219. <param name="localname">The local name to check.</param>
  4220. <param name=" ns">The namespace URI to check.</param>
  4221. <returns>
  4222. <para>The text contained in the element that was read.
  4223. An empty string if the element is empty
  4224. (<c>&lt;item&gt;&lt;/item&gt;</c> or <c>&lt;item/&gt;</c>).</para>
  4225. </returns>
  4226. </member>
  4227. <member name="M:System.Xml.XmlReader.ReadEndElement">
  4228. <summary>
  4229. <para>Checks that the current content node is an end tag and advances the reader to
  4230. the next node.</para>
  4231. </summary>
  4232. </member>
  4233. <member name="M:System.Xml.XmlReader.IsStartElement">
  4234. <summary>
  4235. <para>Calls <see cref="M:System.Xml.XmlReader.MoveToContent" /> and tests if the current
  4236. content node is a start tag or empty element tag.</para>
  4237. </summary>
  4238. <returns>
  4239. <para>
  4240. <see langword="true" /> if
  4241. <see langword="MoveToContent" /> finds a start tag or empty element
  4242. tag; <see langword="false" /> if a node type other than
  4243. <see langword="XmlNodeType.Element" />
  4244. was found.</para>
  4245. </returns>
  4246. </member>
  4247. <member name="M:System.Xml.XmlReader.IsStartElement(System.String)">
  4248. <summary>
  4249. <para>Calls <see cref="M:System.Xml.XmlReader.MoveToContent" /> and tests if the current content node is
  4250. a start tag or empty element tag and if the
  4251. <see cref="P:System.Xml.XmlReader.Name" />
  4252. property of the element found matches the given argument.</para>
  4253. </summary>
  4254. <param name="name">The string matched against the <see langword="Name" /> property of the element found.</param>
  4255. <returns>
  4256. <para>
  4257. <see langword="true" /> if the
  4258. resulting node is an element and the <see langword="Name " />
  4259. property matches the specified
  4260. string. <see langword="false" /> if a node type other than
  4261. <see langword="XmlNodeType.Element" />
  4262. was found or if the element <see langword="Name" /> property does not match the specified string.</para>
  4263. </returns>
  4264. </member>
  4265. <member name="M:System.Xml.XmlReader.IsStartElement(System.String,System.String)">
  4266. <summary>
  4267. <para>Calls <see cref="M:System.Xml.XmlReader.MoveToContent" /> and tests if the
  4268. current content node is a start tag or empty element tag and if
  4269. the <see cref="P:System.Xml.XmlReader.LocalName" /> and
  4270. <see cref="P:System.Xml.XmlReader.NamespaceURI" />
  4271. properties of the element found match the given strings.</para>
  4272. </summary>
  4273. <param name="localname">The string to match against the <see langword="LocalName" /> property of the element found.</param>
  4274. <param name="ns">The string to match against the <see langword="NamespaceURI" /> property of the element found. </param>
  4275. <returns>
  4276. <para>
  4277. <see langword="true" /> if the
  4278. resulting node is an element. <see langword="false" /> if a
  4279. node type other than <see langword="XmlNodeType.Element" /> was found or if the
  4280. <see langword="LocalName" /> and <see langword="NamespaceURI " />properties of
  4281. the element do not match the specified strings.</para>
  4282. </returns>
  4283. </member>
  4284. <member name="M:System.Xml.XmlReader.IsName(System.String)">
  4285. <summary>
  4286. <para>Gets a value indicating whether
  4287. the string argument is a valid XML name.</para>
  4288. </summary>
  4289. <param name="str">The name to validate.</param>
  4290. <returns>
  4291. <para>
  4292. <see langword="true" /> if the name
  4293. is valid; otherwise, <see langword="false" />.</para>
  4294. </returns>
  4295. </member>
  4296. <member name="M:System.Xml.XmlReader.IsNameToken(System.String)">
  4297. <summary>
  4298. <para>Gets a value indicating whether or not the
  4299. string argument is a valid XML name token.</para>
  4300. </summary>
  4301. <param name="str">The name token to validate.</param>
  4302. <returns>
  4303. <para>
  4304. <see langword="true" /> if it is a
  4305. valid name token; otherwise <see langword="false" />.</para>
  4306. </returns>
  4307. </member>
  4308. <member name="M:System.Xml.XmlReader.ReadInnerXml">
  4309. <summary>
  4310. <para>When overridden in a derived class, reads all the content, including markup, as a string.</para>
  4311. </summary>
  4312. <returns>
  4313. <para> All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.</para>
  4314. <para>If the current node is neither an element nor attribute, an empty
  4315. string is returned.</para>
  4316. </returns>
  4317. </member>
  4318. <member name="M:System.Xml.XmlReader.ReadOuterXml">
  4319. <summary>
  4320. <para>When overridden in a derived class, reads the content, including markup, representing this node and all its children.</para>
  4321. </summary>
  4322. <returns>
  4323. <para>If the reader is positioned on an element or an attribute node, this method
  4324. returns all the XML content, including markup, of the current node and all its
  4325. children; otherwise, it returns an empty string.</para>
  4326. </returns>
  4327. </member>
  4328. <member name="M:System.Xml.XmlReader.LookupNamespace(System.String)">
  4329. <summary>
  4330. <para> When overridden in a derived class, resolves a namespace prefix in the current element's scope.
  4331. </para>
  4332. </summary>
  4333. <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. This string does not have to be atomized. </param>
  4334. <returns>
  4335. <para> The namespace URI to which the prefix maps or <see langword="null" /> if no
  4336. matching prefix is found.
  4337. </para>
  4338. </returns>
  4339. </member>
  4340. <member name="M:System.Xml.XmlReader.ResolveEntity">
  4341. <summary>
  4342. <para> When overridden in a derived class, resolves the entity
  4343. reference for <see langword="EntityReference" /> nodes.</para>
  4344. </summary>
  4345. </member>
  4346. <member name="M:System.Xml.XmlReader.ReadAttributeValue">
  4347. <summary>
  4348. <para>When overridden in a derived class, parses the attribute
  4349. value into one or more <see langword="Text" />, <see langword="EntityReference" />,
  4350. or <see langword="EndEntity" /> nodes.</para>
  4351. </summary>
  4352. <returns>
  4353. <para>
  4354. <see langword="true" /> if there are nodes to return.</para>
  4355. <para>
  4356. <see langword="false" /> if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.</para>
  4357. <para>An empty attribute, such as, <c>misc=""</c>, returns <see langword="true" /> with a single node with a value of String.Empty.</para>
  4358. </returns>
  4359. </member>
  4360. <member name="P:System.Xml.XmlReader.NodeType">
  4361. <summary>
  4362. <para>When overridden in a derived class, gets the type of the current node.</para>
  4363. </summary>
  4364. </member>
  4365. <member name="P:System.Xml.XmlReader.Name">
  4366. <summary>
  4367. <para> When overridden in a derived class, gets
  4368. the qualified name of the current node.</para>
  4369. </summary>
  4370. </member>
  4371. <member name="P:System.Xml.XmlReader.LocalName">
  4372. <summary>
  4373. <para> When overridden in a derived class, gets the local name of the current node.
  4374. </para>
  4375. </summary>
  4376. </member>
  4377. <member name="P:System.Xml.XmlReader.NamespaceURI">
  4378. <summary>
  4379. <para>When overridden in a derived class, gets the namespace URI (as defined in the W3C Namespace
  4380. specification) of the node on which the reader is positioned. </para>
  4381. </summary>
  4382. </member>
  4383. <member name="P:System.Xml.XmlReader.Prefix">
  4384. <summary>
  4385. <para> When overridden in a derived class, gets the namespace prefix associated with the current node.
  4386. </para>
  4387. </summary>
  4388. </member>
  4389. <member name="P:System.Xml.XmlReader.HasValue">
  4390. <summary>
  4391. <para>When overridden in a derived class, gets a value indicating whether the current node can have a
  4392. <see cref="P:System.Xml.XmlReader.Value" /> .</para>
  4393. </summary>
  4394. </member>
  4395. <member name="P:System.Xml.XmlReader.Value">
  4396. <summary>
  4397. <para>When overridden in a derived class, gets the text value of the current node.</para>
  4398. </summary>
  4399. </member>
  4400. <member name="P:System.Xml.XmlReader.Depth">
  4401. <summary>
  4402. <para> When overridden in a derived class, gets the depth of
  4403. the current node in the XML document.
  4404. </para>
  4405. </summary>
  4406. </member>
  4407. <member name="P:System.Xml.XmlReader.BaseURI">
  4408. <summary>
  4409. <para> When overridden in a derived class, gets the base URI of the current node.
  4410. </para>
  4411. </summary>
  4412. </member>
  4413. <member name="P:System.Xml.XmlReader.IsEmptyElement">
  4414. <summary>
  4415. <para>When overridden in a derived class, gets a value indicating whether the current node is an
  4416. empty element (for example, <c>&lt;MyElement/&gt;</c>
  4417. ).</para>
  4418. </summary>
  4419. </member>
  4420. <member name="P:System.Xml.XmlReader.IsDefault">
  4421. <summary>
  4422. <para> When overridden in a derived class, gets a value indicating whether the current node is an
  4423. attribute that was generated from the default value defined
  4424. in the DTD or schema.
  4425. </para>
  4426. </summary>
  4427. </member>
  4428. <member name="P:System.Xml.XmlReader.QuoteChar">
  4429. <summary>
  4430. <para> When overridden in a derived class, gets the quotation mark character used to enclose the value of an attribute
  4431. node.
  4432. </para>
  4433. </summary>
  4434. </member>
  4435. <member name="P:System.Xml.XmlReader.XmlSpace">
  4436. <summary>
  4437. <para>When overridden in a derived class, gets the current <see langword="xml:space" /> scope.</para>
  4438. </summary>
  4439. </member>
  4440. <member name="P:System.Xml.XmlReader.XmlLang">
  4441. <summary>
  4442. <para>When overridden in a derived class, gets the current <see langword="xml:lang" /> scope.</para>
  4443. </summary>
  4444. </member>
  4445. <member name="P:System.Xml.XmlReader.AttributeCount">
  4446. <summary>
  4447. <para> When overridden in a derived class, gets the number of attributes on the current node.</para>
  4448. </summary>
  4449. </member>
  4450. <member name="P:System.Xml.XmlReader.Item(System.Int32)">
  4451. <summary>
  4452. <para>When overridden in a derived class, gets the value of the attribute with the specified index.</para>
  4453. </summary>
  4454. <param name="i">The index of the attribute.</param>
  4455. </member>
  4456. <member name="P:System.Xml.XmlReader.Item(System.String)">
  4457. <summary>
  4458. <para>When overridden in a derived class, gets the value of the attribute with the specified
  4459. <see cref="P:System.Xml.XmlReader.Name" /> .</para>
  4460. </summary>
  4461. <param name="name">The qualified name of the attribute.</param>
  4462. </member>
  4463. <member name="P:System.Xml.XmlReader.Item(System.String,System.String)">
  4464. <summary>
  4465. <para>When overridden in a derived class, gets the value of the attribute with the
  4466. specified <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> .</para>
  4467. </summary>
  4468. <param name="name">The local name of the attribute.</param>
  4469. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  4470. </member>
  4471. <member name="P:System.Xml.XmlReader.CanResolveEntity">
  4472. <summary>
  4473. <para>Gets a value indicating whether this reader can parse
  4474. and resolve entities.</para>
  4475. </summary>
  4476. </member>
  4477. <member name="P:System.Xml.XmlReader.EOF">
  4478. <summary>
  4479. <para> When overridden in a derived class, gets a
  4480. value indicating whether the reader is positioned at the end of the
  4481. stream.
  4482. </para>
  4483. </summary>
  4484. </member>
  4485. <member name="P:System.Xml.XmlReader.ReadState">
  4486. <summary>
  4487. <para> When overridden in a derived class, gets the state of the reader.
  4488. </para>
  4489. </summary>
  4490. </member>
  4491. <member name="P:System.Xml.XmlReader.HasAttributes">
  4492. <summary>
  4493. <para>Gets a value indicating whether the current node
  4494. has any attributes.</para>
  4495. </summary>
  4496. </member>
  4497. <member name="P:System.Xml.XmlReader.NameTable">
  4498. <summary>
  4499. <para>When overridden in a derived class, gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this
  4500. implementation.</para>
  4501. </summary>
  4502. </member>
  4503. <member name="M:System.Xml.XmlTextReader.#ctor">
  4504. <summary>
  4505. <para>Initializes a new instance of the
  4506. <see langword="XmlTextReader" /> .</para>
  4507. </summary>
  4508. </member>
  4509. <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.Stream)">
  4510. <summary>
  4511. <para>Initializes a new instance of the
  4512. <see langword="XmlTextReader" /> class with the specified stream.</para>
  4513. </summary>
  4514. <param name="input">The stream containing the XML data to read.</param>
  4515. </member>
  4516. <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.IO.Stream)">
  4517. <summary>
  4518. <para>Initializes a new instance of the
  4519. <see langword="XmlTextReader" />
  4520. class with the specified URL and stream.</para>
  4521. </summary>
  4522. <param name="url">The URL to use for resolving external resources. The <see cref="P:System.Xml.XmlTextReader.BaseURI" /> is set to this value.</param>
  4523. <param name=" input">The stream containing the XML data to read.</param>
  4524. </member>
  4525. <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.Stream,System.Xml.XmlNameTable)">
  4526. <summary>
  4527. <para>Initializes a new instance of the
  4528. <see langword="XmlTextReader" /> class with the specified stream and <see cref="T:System.Xml.XmlNameTable" /> .</para>
  4529. </summary>
  4530. <param name="input">The stream containing the XML data to read.</param>
  4531. <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
  4532. </member>
  4533. <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.IO.Stream,System.Xml.XmlNameTable)">
  4534. <summary>
  4535. <para>Initializes a new instance of the
  4536. <see langword="XmlTextReader" /> class with the specified URL, stream and <see cref="T:System.Xml.XmlNameTable" />
  4537. .</para>
  4538. </summary>
  4539. <param name=" url">The URL to use for resolving external resources. The <see cref="P:System.Xml.XmlTextReader.BaseURI" /> is set to this value.</param>
  4540. <param name="input">The stream containing the XML data to read.</param>
  4541. <param name=" nt">The <see langword="XmlNameTable" /> to use.</param>
  4542. </member>
  4543. <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.TextReader)">
  4544. <summary>
  4545. <para> Initializes a new instance of the
  4546. <see langword="XmlTextReader" /> class with the specified <see cref="T:System.IO.TextReader" /> .
  4547. </para>
  4548. </summary>
  4549. <param name="input">The <see langword="TextReader" /> containing the XML data to read. </param>
  4550. </member>
  4551. <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.IO.TextReader)">
  4552. <summary>
  4553. <para>Initializes a new instance of the
  4554. <see langword="XmlTextReader" /> class with the specified URL and <see cref="T:System.IO.TextReader" />
  4555. .</para>
  4556. </summary>
  4557. <param name="url">The URL to use for resolving external resources. The <see cref="P:System.Xml.XmlTextReader.BaseURI" /> is set to this value.</param>
  4558. <param name=" input">The <see langword="TextReader" /> containing the XML data to read.</param>
  4559. </member>
  4560. <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.TextReader,System.Xml.XmlNameTable)">
  4561. <summary>
  4562. <para> Initializes a new instance of the
  4563. <see langword="XmlTextReader" /> class with the specified <see cref="T:System.IO.TextReader" /> and
  4564. <see cref="T:System.Xml.XmlNameTable" />
  4565. .
  4566. </para>
  4567. </summary>
  4568. <param name="input">The <see langword="TextReader" /> containing the XML data to read. </param>
  4569. <param name="nt">The <see langword="XmlNameTable" /> to use. </param>
  4570. </member>
  4571. <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.IO.TextReader,System.Xml.XmlNameTable)">
  4572. <summary>
  4573. <para>Initializes a new instance of the
  4574. <see langword="XmlTextReader" /> class with the specified URL, <see cref="T:System.IO.TextReader" /> and
  4575. <see cref="T:System.Xml.XmlNameTable" />
  4576. .</para>
  4577. </summary>
  4578. <param name="url">The URL to use for resolving external resources. The <see cref="P:System.Xml.XmlTextReader.BaseURI" /> is set to this value.</param>
  4579. <param name=" input">The <see langword="TextReader" /> containing the XML data to read.</param>
  4580. <param name=" nt">The <see langword="XmlNameTable" /> to use.</param>
  4581. </member>
  4582. <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.Stream,System.Xml.XmlNodeType,System.Xml.XmlParserContext)">
  4583. <summary>
  4584. <para>Initializes a new instance of the
  4585. <see langword="XmlTextReader" />
  4586. class with the specified values.</para>
  4587. </summary>
  4588. <param name="xmlFragment">The stream containing the XML fragment to parse.</param>
  4589. <param name=" fragType">The <see cref="T:System.Xml.XmlNodeType" /> of the XML fragment. This also determines what the fragment can contain. (See table below.)</param>
  4590. <param name=" context">
  4591. <para>The <see cref="T:System.Xml.XmlParserContext" /> in which the <paramref name="xmlFragment" /> is to be parsed. This includes the <see cref="T:System.Xml.XmlNameTable" /> to use, encoding, namespace scope, the current <c>xml:lang</c>, and the <c>xml:space</c> scope.</para>
  4592. </param>
  4593. </member>
  4594. <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext)">
  4595. <summary>
  4596. <para>Initializes a new instance of the
  4597. <see langword="XmlTextReader" />
  4598. class with the specified values.</para>
  4599. </summary>
  4600. <param name="xmlFragment">The string containing the XML fragment to parse.</param>
  4601. <param name=" fragType">The <see cref="T:System.Xml.XmlNodeType" /> of the XML fragment. This also determines what the fragment string can contain. (See table below.)</param>
  4602. <param name=" context">
  4603. <para>The <see cref="T:System.Xml.XmlParserContext" /> in which the <paramref name="xmlFragment" /> is to be parsed. This includes the <see cref="T:System.Xml.XmlNameTable" /> to use, encoding, namespace scope, the current <c>xml:lang</c>, and the <c>xml:space</c> scope.</para>
  4604. </param>
  4605. </member>
  4606. <member name="M:System.Xml.XmlTextReader.#ctor(System.String)">
  4607. <summary>
  4608. <para> Initializes a new instance of the
  4609. <see langword="XmlTextReader" /> class with the specified file.
  4610. </para>
  4611. </summary>
  4612. <param name="url"> The URL for the file containing the XML data. </param>
  4613. </member>
  4614. <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.Xml.XmlNameTable)">
  4615. <summary>
  4616. <para> Initializes a new instance of the
  4617. <see langword="XmlTextReader" /> class with the specified file and <see cref="T:System.Xml.XmlNameTable" /> .
  4618. </para>
  4619. </summary>
  4620. <param name="url">The URL for the file containing the XML data to read. </param>
  4621. <param name="nt">The <see langword="XmlNameTable" /> to use. </param>
  4622. </member>
  4623. <member name="M:System.Xml.XmlTextReader.GetAttribute(System.Int32)">
  4624. <summary>
  4625. <para>Gets the value of the attribute with the specified index.</para>
  4626. </summary>
  4627. <param name="i">The index of the attribute. The index is zero-based. (The first attribute has index 0.)</param>
  4628. <returns>
  4629. <para>The value of the specified attribute.</para>
  4630. </returns>
  4631. </member>
  4632. <member name="M:System.Xml.XmlTextReader.GetAttribute(System.String)">
  4633. <summary>
  4634. <para>Gets the value of the attribute with the specified name.</para>
  4635. </summary>
  4636. <param name="name">The qualified name of the attribute.</param>
  4637. <returns>
  4638. <para>The value of the specified attribute. If the attribute
  4639. is not found, String.Empty is returned.</para>
  4640. </returns>
  4641. </member>
  4642. <member name="M:System.Xml.XmlTextReader.GetAttribute(System.String,System.String)">
  4643. <summary>
  4644. <para>Gets the value of the attribute with the specified local name and namespace URI.</para>
  4645. </summary>
  4646. <param name="localName">The local name of the attribute.</param>
  4647. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  4648. <returns>
  4649. <para>The value of the specified attribute. If the attribute
  4650. is not found, String.Empty is returned. This method does not move the reader.</para>
  4651. </returns>
  4652. </member>
  4653. <member name="M:System.Xml.XmlTextReader.MoveToAttribute(System.String)">
  4654. <summary>
  4655. <para>Moves to the attribute with the specified name.</para>
  4656. </summary>
  4657. <param name="name">The qualified name of the attribute.</param>
  4658. <returns>
  4659. <para>
  4660. <see langword="true" /> if the attribute is found;
  4661. otherwise, <see langword="false" />. If <see langword="false" />,
  4662. the reader's position does not change.</para>
  4663. </returns>
  4664. </member>
  4665. <member name="M:System.Xml.XmlTextReader.MoveToAttribute(System.String,System.String)">
  4666. <summary>
  4667. <para>Moves to the attribute with the specified local name and namespace URI.</para>
  4668. </summary>
  4669. <param name="localName">The local name of the attribute.</param>
  4670. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  4671. <returns>
  4672. <para>
  4673. <see langword="true" /> if the attribute is found; otherwise,
  4674. <see langword="false" />. If <see langword="false" />, the reader's position does
  4675. not change.</para>
  4676. </returns>
  4677. </member>
  4678. <member name="M:System.Xml.XmlTextReader.MoveToAttribute(System.Int32)">
  4679. <summary>
  4680. <para>Moves to the attribute with the specified index.</para>
  4681. </summary>
  4682. <param name="i">The index of the attribute.</param>
  4683. </member>
  4684. <member name="M:System.Xml.XmlTextReader.MoveToFirstAttribute">
  4685. <summary>
  4686. <para>Moves to the first attribute.</para>
  4687. </summary>
  4688. <returns>
  4689. <para>
  4690. <see langword="true" /> if an attribute exists (the reader moves to the first attribute); otherwise, <see langword="false " />(the position of the reader does not change).</para>
  4691. </returns>
  4692. </member>
  4693. <member name="M:System.Xml.XmlTextReader.MoveToNextAttribute">
  4694. <summary>
  4695. <para>Moves to the next attribute.</para>
  4696. </summary>
  4697. <returns>
  4698. <para>
  4699. <see langword="true" /> if there is a next attribute;
  4700. <see langword="false" /> if there are no more attributes.</para>
  4701. </returns>
  4702. </member>
  4703. <member name="M:System.Xml.XmlTextReader.MoveToElement">
  4704. <summary>
  4705. <para>Moves to the element that contains the current attribute node.</para>
  4706. </summary>
  4707. <returns>
  4708. <para>
  4709. <see langword="true" /> if the reader is positioned on an attribute (the reader moves to the element that owns
  4710. the attribute); <see langword="false" /> if the reader is not positioned on an attribute
  4711. (the position of the reader does not change).</para>
  4712. </returns>
  4713. </member>
  4714. <member name="M:System.Xml.XmlTextReader.ResetState">
  4715. <summary>
  4716. <para>Resets the state of the reader to ReadState.Initial.</para>
  4717. </summary>
  4718. </member>
  4719. <member name="M:System.Xml.XmlTextReader.Read">
  4720. <summary>
  4721. <para>Reads the next
  4722. node from the stream.</para>
  4723. </summary>
  4724. <returns>
  4725. <para>
  4726. <see langword="true" /> if the next node was read successfully;
  4727. <see langword="false" /> if there are no more nodes to read.</para>
  4728. </returns>
  4729. </member>
  4730. <member name="M:System.Xml.XmlTextReader.Close">
  4731. <summary>
  4732. <para> Changes the <see cref="P:System.Xml.XmlReader.ReadState" />
  4733. to Closed.</para>
  4734. </summary>
  4735. </member>
  4736. <member name="M:System.Xml.XmlTextReader.ReadInnerXml">
  4737. <summary>
  4738. <para>Reads all the content, including markup, as a string.</para>
  4739. </summary>
  4740. <returns>
  4741. <para> All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.</para>
  4742. <para>If the current node is neither an element nor attribute, an empty
  4743. string is returned.</para>
  4744. </returns>
  4745. </member>
  4746. <member name="M:System.Xml.XmlTextReader.ReadOuterXml">
  4747. <summary>
  4748. <para>Reads the content, including markup, representing this node and all its children.</para>
  4749. </summary>
  4750. <returns>
  4751. <para>If the reader is positioned on an element or an attribute node, this method
  4752. returns all the XML content, including markup, of the current node and all its
  4753. children; otherwise, it returns an empty string.</para>
  4754. </returns>
  4755. </member>
  4756. <member name="M:System.Xml.XmlTextReader.GetRemainder">
  4757. <summary>
  4758. <para> Gets the remainder of the buffered XML.</para>
  4759. </summary>
  4760. <returns>
  4761. A <see cref="T:System.IO.TextReader" /> containing
  4762. the remainder of the buffered XML.
  4763. </returns>
  4764. </member>
  4765. <member name="M:System.Xml.XmlTextReader.ReadChars(System.Char[],System.Int32,System.Int32)">
  4766. <summary>
  4767. <para>Reads the text contents of an element into a character
  4768. buffer. This method is designed to read large streams of embedded text by
  4769. calling it successively.</para>
  4770. </summary>
  4771. <param name="buffer">The array of characters that serves as the buffer to which the text contents are written.</param>
  4772. <param name=" index">The position within <paramref name="buffer" /> where the method can begin writing text contents.</param>
  4773. <param name=" count">The number of characters to write into <paramref name="buffer" />.</param>
  4774. <returns>
  4775. <para>The number of characters read. This can be 0 if the reader is not positioned on an element or if there
  4776. is no more text content to return in the current context.</para>
  4777. </returns>
  4778. </member>
  4779. <member name="M:System.Xml.XmlTextReader.ReadString">
  4780. <summary>
  4781. <para>Reads the contents of an element or a text node as a string.</para>
  4782. </summary>
  4783. <returns>
  4784. <para>The contents of the element or text node. This can be an empty string if
  4785. the reader is positioned on something other than an element or text node, or
  4786. if there is no more text content to return in the current context.</para>
  4787. <para>
  4788. <see langword="Note:" /> The text node can be either an element or
  4789. an attribute text node.</para>
  4790. </returns>
  4791. </member>
  4792. <member name="M:System.Xml.XmlTextReader.ReadBase64(System.Byte[],System.Int32,System.Int32)">
  4793. <summary>
  4794. <para>Decodes Base64 and returns the decoded binary bytes.</para>
  4795. </summary>
  4796. <param name="array">The array of characters that serves as the buffer to which the text contents are written.</param>
  4797. <param name="offset">
  4798. <para>The zero-based index into the array specifying where the method can begin to write to the buffer.</para>
  4799. </param>
  4800. <param name="len">The number of bytes to write into the buffer.</param>
  4801. <returns>
  4802. <para>The number of bytes written to the buffer.</para>
  4803. </returns>
  4804. </member>
  4805. <member name="M:System.Xml.XmlTextReader.ReadBinHex(System.Byte[],System.Int32,System.Int32)">
  4806. <summary>
  4807. <para>Decodes BinHex and returns the decoded binary
  4808. bytes.</para>
  4809. </summary>
  4810. <param name="array">The byte array that serves as the buffer to which the decoded binary bytes are written.</param>
  4811. <param name=" offset">The zero-based index into the array specifying where the method can begin to write to the buffer.</param>
  4812. <param name=" len">The number of bytes to write into the buffer.</param>
  4813. <returns>
  4814. <para>The number of bytes written to your buffer.</para>
  4815. </returns>
  4816. </member>
  4817. <member name="M:System.Xml.XmlTextReader.LookupNamespace(System.String)">
  4818. <summary>
  4819. <para> Resolves a namespace prefix in the current element's scope.
  4820. </para>
  4821. </summary>
  4822. <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. This string does not have to be atomized. </param>
  4823. <returns>
  4824. <para> The namespace URI to which the prefix maps or <see langword="null" /> if no
  4825. matching prefix is found.
  4826. </para>
  4827. </returns>
  4828. </member>
  4829. <member name="M:System.Xml.XmlTextReader.ResolveEntity">
  4830. <summary>
  4831. <para> Resolves the entity reference for EntityReference nodes.</para>
  4832. </summary>
  4833. </member>
  4834. <member name="M:System.Xml.XmlTextReader.ReadAttributeValue">
  4835. <summary>
  4836. <para>Parses the attribute value into one or more
  4837. <see langword="Text" />, <see langword="EntityReference" />, or
  4838. <see langword="EndEntity" /> nodes.</para>
  4839. </summary>
  4840. <returns>
  4841. <para>
  4842. <see langword="true" /> if there are nodes to return.</para>
  4843. <para>
  4844. <see langword="false" /> if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.</para>
  4845. <para>An empty attribute, such as, <c>misc=""</c>, returns <see langword="true" /> with a single node with a value of String.Empty.</para>
  4846. </returns>
  4847. </member>
  4848. <member name="P:System.Xml.XmlTextReader.NodeType">
  4849. <summary>
  4850. <para>Gets the type of the current node.</para>
  4851. </summary>
  4852. </member>
  4853. <member name="P:System.Xml.XmlTextReader.Name">
  4854. <summary>
  4855. <para> Gets
  4856. the qualified name of the current node.</para>
  4857. </summary>
  4858. </member>
  4859. <member name="P:System.Xml.XmlTextReader.LocalName">
  4860. <summary>
  4861. <para> Gets the local name of the current node.
  4862. </para>
  4863. </summary>
  4864. </member>
  4865. <member name="P:System.Xml.XmlTextReader.NamespaceURI">
  4866. <summary>
  4867. <para> Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.
  4868. </para>
  4869. </summary>
  4870. </member>
  4871. <member name="P:System.Xml.XmlTextReader.Prefix">
  4872. <summary>
  4873. <para> Gets the namespace prefix associated with the current node.
  4874. </para>
  4875. </summary>
  4876. </member>
  4877. <member name="P:System.Xml.XmlTextReader.HasValue">
  4878. <summary>
  4879. <para>Gets a value indicating whether the current node can have a <see cref="P:System.Xml.XmlTextReader.Value" /> .</para>
  4880. </summary>
  4881. </member>
  4882. <member name="P:System.Xml.XmlTextReader.Value">
  4883. <summary>
  4884. <para>Gets the text value of the current node.</para>
  4885. </summary>
  4886. </member>
  4887. <member name="P:System.Xml.XmlTextReader.Depth">
  4888. <summary>
  4889. <para> Gets the depth of
  4890. the current node in the XML document.
  4891. </para>
  4892. </summary>
  4893. </member>
  4894. <member name="P:System.Xml.XmlTextReader.BaseURI">
  4895. <summary>
  4896. <para> Gets the base URI of the current node.
  4897. </para>
  4898. </summary>
  4899. </member>
  4900. <member name="P:System.Xml.XmlTextReader.IsEmptyElement">
  4901. <summary>
  4902. <para>Gets a value indicating whether the current node is an
  4903. empty element (for example, <c>&lt;MyElement/&gt;</c>
  4904. ).</para>
  4905. </summary>
  4906. </member>
  4907. <member name="P:System.Xml.XmlTextReader.IsDefault">
  4908. <summary>
  4909. <para> Gets a value indicating whether the current node is an
  4910. attribute that was generated from the default value defined
  4911. in the DTD or schema.
  4912. </para>
  4913. </summary>
  4914. </member>
  4915. <member name="P:System.Xml.XmlTextReader.QuoteChar">
  4916. <summary>
  4917. <para>
  4918. Gets the quotation mark character used to enclose the value of an attribute
  4919. node.
  4920. </para>
  4921. </summary>
  4922. </member>
  4923. <member name="P:System.Xml.XmlTextReader.XmlSpace">
  4924. <summary>
  4925. <para>Gets the current <see langword="xml:space" /> scope.</para>
  4926. </summary>
  4927. </member>
  4928. <member name="P:System.Xml.XmlTextReader.XmlLang">
  4929. <summary>
  4930. <para>Gets the current <see langword="xml:lang" /> scope.</para>
  4931. </summary>
  4932. </member>
  4933. <member name="P:System.Xml.XmlTextReader.AttributeCount">
  4934. <summary>
  4935. <para>Gets the number of attributes on the current node.</para>
  4936. </summary>
  4937. </member>
  4938. <member name="P:System.Xml.XmlTextReader.Item(System.Int32)">
  4939. <summary>
  4940. <para>Gets the value of the attribute with the specified index.</para>
  4941. </summary>
  4942. <param name="i">The index of the attribute.</param>
  4943. </member>
  4944. <member name="P:System.Xml.XmlTextReader.Item(System.String)">
  4945. <summary>
  4946. <para>Gets the value of the attribute with the specified name.</para>
  4947. </summary>
  4948. <param name="name">The qualified name of the attribute.</param>
  4949. </member>
  4950. <member name="P:System.Xml.XmlTextReader.Item(System.String,System.String)">
  4951. <summary>
  4952. <para>Gets the value of the attribute with the specified local name and namespace URI.</para>
  4953. </summary>
  4954. <param name="name">The local name of the attribute.</param>
  4955. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  4956. </member>
  4957. <member name="P:System.Xml.XmlTextReader.EOF">
  4958. <summary>
  4959. <para> Gets a
  4960. value indicating whether the reader is positioned at the end of the
  4961. stream.
  4962. </para>
  4963. </summary>
  4964. </member>
  4965. <member name="P:System.Xml.XmlTextReader.ReadState">
  4966. <summary>
  4967. <para>
  4968. Gets the state of the reader.
  4969. </para>
  4970. </summary>
  4971. </member>
  4972. <member name="P:System.Xml.XmlTextReader.NameTable">
  4973. <summary>
  4974. <para>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this
  4975. implementation.</para>
  4976. </summary>
  4977. </member>
  4978. <member name="P:System.Xml.XmlTextReader.Namespaces">
  4979. <summary>
  4980. <para> Gets or sets a value indicating whether to do namespace support.
  4981. </para>
  4982. </summary>
  4983. </member>
  4984. <member name="P:System.Xml.XmlTextReader.Normalization">
  4985. <summary>
  4986. <para>Gets or sets a value indicating whether to normalize white
  4987. space and attribute values.</para>
  4988. </summary>
  4989. </member>
  4990. <member name="P:System.Xml.XmlTextReader.Encoding">
  4991. <summary>
  4992. <para> Gets the encoding of the
  4993. document.</para>
  4994. </summary>
  4995. </member>
  4996. <member name="P:System.Xml.XmlTextReader.WhitespaceHandling">
  4997. <summary>
  4998. <para>Gets or sets a value that specifies how white
  4999. space is handled.</para>
  5000. </summary>
  5001. </member>
  5002. <member name="P:System.Xml.XmlTextReader.XmlResolver">
  5003. <summary>
  5004. <para> Sets the <see cref="T:System.Xml.XmlResolver" /> used for resolving DTD
  5005. references.</para>
  5006. </summary>
  5007. </member>
  5008. <member name="P:System.Xml.XmlTextReader.LineNumber">
  5009. <summary>
  5010. <para>Gets the current line number.</para>
  5011. </summary>
  5012. </member>
  5013. <member name="P:System.Xml.XmlTextReader.LinePosition">
  5014. <summary>
  5015. <para>Gets the current line position.</para>
  5016. </summary>
  5017. </member>
  5018. <member name="T:System.Xml.XmlEntityReference">
  5019. <summary>
  5020. <para>
  5021. Represents an entity reference node.
  5022. </para>
  5023. </summary>
  5024. </member>
  5025. <member name="M:System.Xml.XmlEntityReference.CloneNode(System.Boolean)">
  5026. <summary>
  5027. <para>Creates a duplicate of this node.</para>
  5028. </summary>
  5029. <param name="deep">
  5030. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself. For <see langword="XmlEntityReference" /> nodes, this method always returns an entity reference node with no children. The replacement text is set when the node is inserted into a parent.</param>
  5031. <returns>
  5032. <para>The cloned node.</para>
  5033. </returns>
  5034. </member>
  5035. <member name="M:System.Xml.XmlEntityReference.WriteTo(System.Xml.XmlWriter)">
  5036. <summary>
  5037. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  5038. </summary>
  5039. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  5040. </member>
  5041. <member name="M:System.Xml.XmlEntityReference.WriteContentTo(System.Xml.XmlWriter)">
  5042. <summary>
  5043. <para>Saves all the children of the node to the specified
  5044. <see cref="T:System.Xml.XmlWriter" /> .</para>
  5045. </summary>
  5046. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  5047. </member>
  5048. <member name="P:System.Xml.XmlEntityReference.Name">
  5049. <summary>
  5050. <para>Gets the name of the node.</para>
  5051. </summary>
  5052. </member>
  5053. <member name="P:System.Xml.XmlEntityReference.LocalName">
  5054. <summary>
  5055. <para> Gets the local name of the node.</para>
  5056. </summary>
  5057. </member>
  5058. <member name="P:System.Xml.XmlEntityReference.Value">
  5059. <summary>
  5060. <para>Gets or sets the value of the node.</para>
  5061. </summary>
  5062. </member>
  5063. <member name="P:System.Xml.XmlEntityReference.NodeType">
  5064. <summary>
  5065. <para>Gets the type of the node.</para>
  5066. </summary>
  5067. </member>
  5068. <member name="P:System.Xml.XmlEntityReference.IsReadOnly">
  5069. <summary>
  5070. <para>Gets a value indicating whether the node is read-only.</para>
  5071. </summary>
  5072. </member>
  5073. <member name="P:System.Xml.XmlEntityReference.BaseURI">
  5074. <summary>
  5075. <para>Gets the base URI of the current node.</para>
  5076. </summary>
  5077. </member>
  5078. <member name="T:System.Xml.XmlNodeChangedAction">
  5079. <summary>
  5080. <para> Specifies the type of node change. </para>
  5081. </summary>
  5082. </member>
  5083. <member name="F:System.Xml.XmlNodeChangedAction.Insert">
  5084. <summary>
  5085. <para> A node is being inserted in the tree.</para>
  5086. </summary>
  5087. </member>
  5088. <member name="F:System.Xml.XmlNodeChangedAction.Remove">
  5089. <summary>
  5090. <para> A node is being removed from the tree.</para>
  5091. </summary>
  5092. </member>
  5093. <member name="F:System.Xml.XmlNodeChangedAction.Change">
  5094. <summary>
  5095. <para> A node value is being changed.</para>
  5096. </summary>
  5097. </member>
  5098. <member name="T:System.Xml.XmlException">
  5099. <summary>
  5100. Returns detailed information about the last exception.
  5101. </summary>
  5102. </member>
  5103. <member name="M:System.Xml.XmlException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  5104. <summary>
  5105. <para>Initializes a new instance of the
  5106. <see langword="XmlException" /> class using the information in the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects.</para>
  5107. </summary>
  5108. <param name="info">The <see langword="SerializationInfo" /> object containing all the properties of an <see langword="XmlException" />. </param>
  5109. <param name=" context">The <see langword="StreamingContext" /> object containing the context information.</param>
  5110. </member>
  5111. <member name="M:System.Xml.XmlException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  5112. <summary>
  5113. Streams all the <see langword="XmlException" /> properties
  5114. into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class for the given <see cref="T:System.Runtime.Serialization.StreamingContext" />.
  5115. </summary>
  5116. <param name="info">The <see langword="SerializationInfo" /> object.</param>
  5117. <param name=" context">The <see langword="StreamingContext" /> object.</param>
  5118. </member>
  5119. <member name="M:System.Xml.XmlException.#ctor(System.String,System.Exception)">
  5120. <summary>
  5121. <para>Initializes a new instance of the <see langword="XmlException" /> class.</para>
  5122. </summary>
  5123. <param name="message">The description of the error condition.</param>
  5124. <param name=" innerException">The <see cref="T:System.Exception" /> that threw the <see langword="XmlException" />, if any. This value can be <see langword="null" />.</param>
  5125. </member>
  5126. <member name="P:System.Xml.XmlException.LineNumber">
  5127. <summary>
  5128. Gets the line number indicating where the
  5129. error occurred.
  5130. </summary>
  5131. </member>
  5132. <member name="P:System.Xml.XmlException.LinePosition">
  5133. <summary>
  5134. Gets the line position indicating where the
  5135. error occurred.
  5136. </summary>
  5137. </member>
  5138. <member name="T:System.Xml.XmlImplementation">
  5139. <summary>
  5140. <para>Defines the context for a set of <see cref="T:System.Xml.XmlDocument" />
  5141. objects.</para>
  5142. </summary>
  5143. </member>
  5144. <member name="M:System.Xml.XmlImplementation.#ctor">
  5145. <summary>
  5146. <para>
  5147. Initializes a new instance of the XmlImplementation class.
  5148. </para>
  5149. </summary>
  5150. </member>
  5151. <member name="M:System.Xml.XmlImplementation.HasFeature(System.String,System.String)">
  5152. <summary>
  5153. <para> Tests if the DOM implementation implements a specific feature.
  5154. </para>
  5155. </summary>
  5156. <param name="strFeature">The package name of the feature to test. This name is not case-sensitive. </param>
  5157. <param name=" strVersion">This is the version number of the package name to test. If the version is not specified (<see langword="null" />), supporting any version of the feature causes the method to return <see langword="true" /> . </param>
  5158. <returns>
  5159. <para>
  5160. <see langword="true" /> if the feature is implemented in the specified version;
  5161. otherwise, <see langword="false" />.
  5162. </para>
  5163. <para> The following table shows the combinations that cause
  5164. <see langword="HasFeature" /> to return <see langword="true" /> .
  5165. </para>
  5166. <list type="table">
  5167. <listheader>
  5168. <term> strFeature</term>
  5169. <description> strVersion</description>
  5170. </listheader>
  5171. <item>
  5172. <term> XML</term>
  5173. <description> 1.0</description>
  5174. </item>
  5175. <item>
  5176. <term> XML</term>
  5177. <description> 2.0</description>
  5178. </item>
  5179. </list>
  5180. </returns>
  5181. </member>
  5182. <member name="M:System.Xml.XmlImplementation.CreateDocument">
  5183. <summary>
  5184. <para>Creates a new <see cref="T:System.Xml.XmlDocument" /> .</para>
  5185. </summary>
  5186. <returns>
  5187. <para>The new <see langword="XmlDocument" /> object.</para>
  5188. </returns>
  5189. </member>
  5190. <member name="M:System.Xml.XmlNodeEnumerator.MoveNext">
  5191. <summary>
  5192. <para>Advances the enumerator to the next item in
  5193. the collection.</para>
  5194. </summary>
  5195. <returns>
  5196. <para>
  5197. <see langword="true" /> if the move
  5198. was successfull; <see langword="false" /> if the enumerator has passed the end of
  5199. the collection.</para>
  5200. </returns>
  5201. </member>
  5202. <member name="T:System.Xml.XmlNamespaceManager">
  5203. <summary>
  5204. <para>Resolves, adds and removes namespaces to a collection and
  5205. provide scope management for these namespaces. This class is used by
  5206. the <see cref="T:System.Xml.Xsl.XsltContext" />
  5207. and <see cref="T:System.Xml.XmlReader" /> classes.</para>
  5208. </summary>
  5209. </member>
  5210. <member name="M:System.Xml.XmlNamespaceManager.#ctor(System.Xml.XmlNameTable)">
  5211. <summary>
  5212. <para>Initializes a new instance of the
  5213. <see langword="XmlNamespaceManager" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />
  5214. .</para>
  5215. </summary>
  5216. <param name="nameTable">The <see langword="XmlNameTable" /> to use.</param>
  5217. </member>
  5218. <member name="M:System.Xml.XmlNamespaceManager.PushScope">
  5219. <summary>
  5220. <para>Pushes a namespace scope onto the stack.</para>
  5221. </summary>
  5222. </member>
  5223. <member name="M:System.Xml.XmlNamespaceManager.PopScope">
  5224. <summary>
  5225. <para>Pops a namespace scope off the stack.</para>
  5226. </summary>
  5227. <returns>
  5228. <para>
  5229. <see langword="true" /> if there are
  5230. namespace scopes left on the stack; <see langword="false" /> if there are no more
  5231. namespaces to pop.</para>
  5232. </returns>
  5233. </member>
  5234. <member name="M:System.Xml.XmlNamespaceManager.AddNamespace(System.String,System.String)">
  5235. <summary>
  5236. <para>Adds the given namespace to the collection.</para>
  5237. </summary>
  5238. <param name="prefix">The prefix to associate with the namespace being added. Use String.Empty to add a default namespace.</param>
  5239. <param name=" uri">The namespace to add.</param>
  5240. </member>
  5241. <member name="M:System.Xml.XmlNamespaceManager.RemoveNamespace(System.String,System.String)">
  5242. <summary>
  5243. <para>Removes the given namespace for the given
  5244. prefix.</para>
  5245. </summary>
  5246. <param name="prefix">The prefix for the namespace</param>
  5247. <param name=" uri">The namespace to remove for the given prefix. The namespace removed is from the current namespace scope. Namespaces outside the current scope are ignored. Exceptions are never thrown.</param>
  5248. </member>
  5249. <member name="M:System.Xml.XmlNamespaceManager.GetEnumerator">
  5250. <summary>
  5251. <para>Provides support for the "foreach" style iteration over
  5252. the collection of namespaces in the <see langword="XmlNamespaceManager" />
  5253. .</para>
  5254. </summary>
  5255. <returns>
  5256. <para>An <see cref="T:System.Collections.IEnumerator" /> .</para>
  5257. </returns>
  5258. </member>
  5259. <member name="M:System.Xml.XmlNamespaceManager.LookupNamespace(System.String)">
  5260. <summary>
  5261. <para>Gets the namespace URI for the specified
  5262. prefix.</para>
  5263. </summary>
  5264. <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass String.Empty.</param>
  5265. <returns>
  5266. <para>Returns the namespace URI for <paramref name="prefix" /> or <see langword="null" /> if there is no mapped namespace. The returned
  5267. string is atomized. </para>
  5268. <para>For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" />.</para>
  5269. </returns>
  5270. </member>
  5271. <member name="M:System.Xml.XmlNamespaceManager.LookupPrefix(System.String)">
  5272. <summary>
  5273. <para>Finds the prefix declared for the given
  5274. namespace URI.</para>
  5275. </summary>
  5276. <param name="uri">The namespace to resolve for the prefix.</param>
  5277. <returns>
  5278. <para>The matching prefix. If there is no mapped prefix,
  5279. the method returns String.Empty. If a null value is supplied then
  5280. <see langword="null" /> is returned.</para>
  5281. </returns>
  5282. </member>
  5283. <member name="M:System.Xml.XmlNamespaceManager.HasNamespace(System.String)">
  5284. <summary>
  5285. <para>Gets a value indicating whether the supplied prefix has
  5286. a namespace defined for the current pushed scope.</para>
  5287. </summary>
  5288. <param name="prefix">The prefix of the namespace you want to find.</param>
  5289. <returns>
  5290. <para>
  5291. <see langword="true" /> if there is a
  5292. namespace defined; otherwise, <see langword="false" />.</para>
  5293. </returns>
  5294. </member>
  5295. <member name="P:System.Xml.XmlNamespaceManager.NameTable">
  5296. <summary>
  5297. <para> Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this object.</para>
  5298. </summary>
  5299. </member>
  5300. <member name="P:System.Xml.XmlNamespaceManager.DefaultNamespace">
  5301. <summary>
  5302. <para>Gets the namespace URI for the default
  5303. namespace.</para>
  5304. </summary>
  5305. </member>
  5306. <member name="T:System.Xml.XmlNodeChangedEventArgs">
  5307. <summary>
  5308. <para>Provides data for the <see cref="E:System.Xml.XmlDocument.NodeChanged" />, <see cref="E:System.Xml.XmlDocument.NodeChanging" />, <see cref="E:System.Xml.XmlDocument.NodeInserted" />, <see cref="E:System.Xml.XmlDocument.NodeInserting" />, <see cref="E:System.Xml.XmlDocument.NodeRemoved" /> and <see cref="E:System.Xml.XmlDocument.NodeRemoving" /> events.</para>
  5309. </summary>
  5310. </member>
  5311. <member name="P:System.Xml.XmlNodeChangedEventArgs.Action">
  5312. <summary>
  5313. <para>Gets a value indicating what type of node
  5314. change event is occurring.</para>
  5315. </summary>
  5316. </member>
  5317. <member name="P:System.Xml.XmlNodeChangedEventArgs.Node">
  5318. <summary>
  5319. Gets the <see cref="T:System.Xml.XmlNode" /> that is
  5320. being added, removed or changed.
  5321. </summary>
  5322. </member>
  5323. <member name="P:System.Xml.XmlNodeChangedEventArgs.OldParent">
  5324. <summary>
  5325. Gets the value of the <see cref="P:System.Xml.XmlNode.ParentNode" />
  5326. before the operation began.
  5327. </summary>
  5328. </member>
  5329. <member name="P:System.Xml.XmlNodeChangedEventArgs.NewParent">
  5330. <summary>
  5331. <para>Gets the value of the <see cref="P:System.Xml.XmlNode.ParentNode" /> after the operation completes.</para>
  5332. </summary>
  5333. </member>
  5334. <member name="T:System.Xml.XmlNodeChangedEventHandler">
  5335. <summary>
  5336. <para>Represents the method that handles
  5337. <see cref="E:System.Xml.XmlDocument.NodeChanged" />, <see cref="E:System.Xml.XmlDocument.NodeChanging" />, <see cref="E:System.Xml.XmlDocument.NodeInserted" />, <see cref="E:System.Xml.XmlDocument.NodeInserting" />, <see cref="E:System.Xml.XmlDocument.NodeRemoved" /> and <see cref="E:System.Xml.XmlDocument.NodeRemoving" /> events.</para>
  5338. </summary>
  5339. <param name="sender">The source of the event.</param>
  5340. <param name=" e">An <see cref="T:System.Xml.XmlNodeChangedEventArgs" /> containing the event data.</param>
  5341. </member>
  5342. <member name="T:System.Xml.XmlNodeOrder">
  5343. <summary>
  5344. <para>Describes the document order of a node compared to a
  5345. second node.</para>
  5346. </summary>
  5347. </member>
  5348. <member name="F:System.Xml.XmlNodeOrder.Before">
  5349. <summary>
  5350. <para> The current node of this navigator is before the
  5351. current node of the supplied navigator.</para>
  5352. </summary>
  5353. </member>
  5354. <member name="F:System.Xml.XmlNodeOrder.After">
  5355. <summary>
  5356. <para> The current node of this navigator is after the
  5357. current node of the supplied navigator.</para>
  5358. </summary>
  5359. </member>
  5360. <member name="F:System.Xml.XmlNodeOrder.Same">
  5361. <summary>
  5362. <para> The two
  5363. navigators are positioned on the same node.</para>
  5364. </summary>
  5365. </member>
  5366. <member name="F:System.Xml.XmlNodeOrder.Unknown">
  5367. <summary>
  5368. <para> The node positions
  5369. cannot be determined in document order, relative to each other. This could occur if the
  5370. two nodes reside in different trees.</para>
  5371. </summary>
  5372. </member>
  5373. <member name="T:System.Xml.XmlNodeReader">
  5374. <summary>
  5375. <para>Represents a reader that provides fast, non-cached
  5376. forward only access to XML data in an <see cref="T:System.Xml.XmlNode" /><see langword="." /></para>
  5377. </summary>
  5378. </member>
  5379. <member name="M:System.Xml.XmlNodeReader.#ctor(System.Xml.XmlNode)">
  5380. <summary>
  5381. <para>Creates an instance of the <see langword="XmlNodeReader" /> class using the
  5382. specified <see cref="T:System.Xml.XmlNode" />
  5383. .</para>
  5384. </summary>
  5385. <param name="node">The <see langword="XmlNode" /> you want to read.</param>
  5386. </member>
  5387. <member name="M:System.Xml.XmlNodeReader.GetAttribute(System.String)">
  5388. <summary>
  5389. <para>Gets the value of the attribute with the specified name.</para>
  5390. </summary>
  5391. <param name="name">The qualified name of the attribute.</param>
  5392. <returns>
  5393. <para>The value of the specified attribute. If the attribute
  5394. is not found, String.Empty is returned.</para>
  5395. </returns>
  5396. </member>
  5397. <member name="M:System.Xml.XmlNodeReader.GetAttribute(System.String,System.String)">
  5398. <summary>
  5399. <para>Gets the value of the attribute with the specified local name and namespace URI.</para>
  5400. </summary>
  5401. <param name="name">The local name of the attribute.</param>
  5402. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  5403. <returns>
  5404. <para>The value of the specified attribute. If the attribute
  5405. is not found, String.Empty is returned.</para>
  5406. </returns>
  5407. </member>
  5408. <member name="M:System.Xml.XmlNodeReader.GetAttribute(System.Int32)">
  5409. <summary>
  5410. <para>Gets the value of the attribute with the specified index.</para>
  5411. </summary>
  5412. <param name="attributeIndex">The index of the attribute. The index is zero-based. (The first attribute has index 0.)</param>
  5413. <returns>
  5414. <para>The value of the specified attribute.</para>
  5415. </returns>
  5416. </member>
  5417. <member name="M:System.Xml.XmlNodeReader.MoveToAttribute(System.String)">
  5418. <summary>
  5419. <para>Moves to the attribute with the specified name.</para>
  5420. </summary>
  5421. <param name="name">The qualified name of the attribute.</param>
  5422. <returns>
  5423. <para>
  5424. <see langword="true" /> if the attribute is found;
  5425. otherwise, <see langword="false" />. If <see langword="false" />,
  5426. the reader's position does not change.</para>
  5427. </returns>
  5428. </member>
  5429. <member name="M:System.Xml.XmlNodeReader.MoveToAttribute(System.String,System.String)">
  5430. <summary>
  5431. <para>Moves to the attribute with the specified local name and namespace URI.</para>
  5432. </summary>
  5433. <param name="name">The local name of the attribute.</param>
  5434. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  5435. <returns>
  5436. <para>
  5437. <see langword="true" /> if the attribute is found; otherwise,
  5438. <see langword="false" />. If <see langword="false" />, the reader's position does
  5439. not change.</para>
  5440. </returns>
  5441. </member>
  5442. <member name="M:System.Xml.XmlNodeReader.MoveToAttribute(System.Int32)">
  5443. <summary>
  5444. <para>Moves to the attribute with the specified index.</para>
  5445. </summary>
  5446. <param name="attributeIndex">The index of the attribute.</param>
  5447. </member>
  5448. <member name="M:System.Xml.XmlNodeReader.MoveToFirstAttribute">
  5449. <summary>
  5450. <para>Moves to the first attribute.</para>
  5451. </summary>
  5452. <returns>
  5453. <para>
  5454. <see langword="true" /> if an attribute exists (the reader moves to the first attribute); otherwise, <see langword="false " />(the position of the reader does not change).</para>
  5455. </returns>
  5456. </member>
  5457. <member name="M:System.Xml.XmlNodeReader.MoveToNextAttribute">
  5458. <summary>
  5459. <para>Moves to the next attribute.</para>
  5460. </summary>
  5461. <returns>
  5462. <para>
  5463. <see langword="true" /> if there is a next attribute;
  5464. <see langword="false" /> if there are no more attributes.</para>
  5465. </returns>
  5466. </member>
  5467. <member name="M:System.Xml.XmlNodeReader.MoveToElement">
  5468. <summary>
  5469. <para>Moves to the element that contains the current attribute node.</para>
  5470. </summary>
  5471. <returns>
  5472. <para>
  5473. <see langword="true" /> if the reader is positioned on an attribute (the reader moves to the element that owns
  5474. the attribute); <see langword="false" /> if the reader is not positioned on an attribute
  5475. (the position of the reader does not change).</para>
  5476. </returns>
  5477. </member>
  5478. <member name="M:System.Xml.XmlNodeReader.Read">
  5479. <summary>
  5480. <para>Reads the next
  5481. node from the stream.</para>
  5482. </summary>
  5483. <returns>
  5484. <para>
  5485. <see langword="true" /> if the next node was read successfully;
  5486. <see langword="false" /> if there are no more nodes to read. </para>
  5487. </returns>
  5488. </member>
  5489. <member name="M:System.Xml.XmlNodeReader.Close">
  5490. <summary>
  5491. <para> Changes the <see cref="P:System.Xml.XmlNodeReader.ReadState" /> to <see langword="Closed" />
  5492. .</para>
  5493. </summary>
  5494. </member>
  5495. <member name="M:System.Xml.XmlNodeReader.Skip">
  5496. <summary>
  5497. <para>Skips the children of the current node. </para>
  5498. </summary>
  5499. </member>
  5500. <member name="M:System.Xml.XmlNodeReader.ReadString">
  5501. <summary>
  5502. <para>Reads the contents of an element or text node as a string.</para>
  5503. </summary>
  5504. <returns>
  5505. <para>The contents of the element or text-like node (This can include CDATA, Text nodes, and so on). This can be an empty string if
  5506. the reader is positioned on something other than an element or text node, or
  5507. if there is no more text content to return in the current context.</para>
  5508. <para>
  5509. <see langword="Note:" /> The text node can be either an element or
  5510. an attribute text node.</para>
  5511. </returns>
  5512. </member>
  5513. <member name="M:System.Xml.XmlNodeReader.ReadInnerXml">
  5514. <summary>
  5515. <para>Reads all the content, including markup, as a string.</para>
  5516. </summary>
  5517. <returns>
  5518. <para> All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.</para>
  5519. <para>If the current node is neither an element nor attribute, an empty
  5520. string is returned.</para>
  5521. </returns>
  5522. </member>
  5523. <member name="M:System.Xml.XmlNodeReader.ReadOuterXml">
  5524. <summary>
  5525. <para>Reads the content, including markup, representing this node and all its children.</para>
  5526. </summary>
  5527. <returns>
  5528. <para>If the reader is positioned on an element or an attribute node, this method
  5529. returns all the XML content, including markup, of the current node and all its
  5530. children; otherwise, it returns an empty string.</para>
  5531. </returns>
  5532. </member>
  5533. <member name="M:System.Xml.XmlNodeReader.LookupNamespace(System.String)">
  5534. <summary>
  5535. <para> Resolves a namespace prefix in the current element's scope.
  5536. </para>
  5537. </summary>
  5538. <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. This string does not have to be atomized. </param>
  5539. <returns>
  5540. <para> The namespace URI to which the prefix maps or <see langword="null" /> if no
  5541. matching prefix is found.
  5542. </para>
  5543. </returns>
  5544. </member>
  5545. <member name="M:System.Xml.XmlNodeReader.ResolveEntity">
  5546. <summary>
  5547. <para> Resolves the entity reference for
  5548. <see langword="EntityReference" /> nodes.</para>
  5549. </summary>
  5550. </member>
  5551. <member name="M:System.Xml.XmlNodeReader.ReadAttributeValue">
  5552. <summary>
  5553. <para>Parses the attribute value into one or more
  5554. <see langword="Text" />, <see langword="EntityReference" />, or
  5555. <see langword="EndEntity" /> nodes.</para>
  5556. </summary>
  5557. <returns>
  5558. <para>
  5559. <see langword="true" /> if there are nodes to return.</para>
  5560. <para>
  5561. <see langword="false" /> if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.</para>
  5562. <para>An empty attribute, such as, <c>misc=""</c>, returns <see langword="true" /> with a single node with a value of String.Empty.</para>
  5563. </returns>
  5564. </member>
  5565. <member name="P:System.Xml.XmlNodeReader.NodeType">
  5566. <summary>
  5567. <para>Gets the type of the current node.</para>
  5568. </summary>
  5569. </member>
  5570. <member name="P:System.Xml.XmlNodeReader.Name">
  5571. <summary>
  5572. <para> Gets
  5573. the qualified name of the current node.</para>
  5574. </summary>
  5575. </member>
  5576. <member name="P:System.Xml.XmlNodeReader.LocalName">
  5577. <summary>
  5578. <para> Gets the local name of the current node.
  5579. </para>
  5580. </summary>
  5581. </member>
  5582. <member name="P:System.Xml.XmlNodeReader.NamespaceURI">
  5583. <summary>
  5584. <para>Gets the namespace URI (as defined in the W3C Namespace
  5585. specification) of the node on which the reader is positioned. </para>
  5586. </summary>
  5587. </member>
  5588. <member name="P:System.Xml.XmlNodeReader.Prefix">
  5589. <summary>
  5590. <para> Gets the namespace prefix associated with the current node.
  5591. </para>
  5592. </summary>
  5593. </member>
  5594. <member name="P:System.Xml.XmlNodeReader.HasValue">
  5595. <summary>
  5596. <para>Gets a value indicating whether the current node can have a <see cref="P:System.Xml.XmlNodeReader.Value" /> .</para>
  5597. </summary>
  5598. </member>
  5599. <member name="P:System.Xml.XmlNodeReader.Value">
  5600. <summary>
  5601. <para>Gets the text value of the current node.</para>
  5602. </summary>
  5603. </member>
  5604. <member name="P:System.Xml.XmlNodeReader.Depth">
  5605. <summary>
  5606. <para> Gets the depth of
  5607. the current node in the XML document.
  5608. </para>
  5609. </summary>
  5610. </member>
  5611. <member name="P:System.Xml.XmlNodeReader.BaseURI">
  5612. <summary>
  5613. <para> Gets the base URI of the current node.
  5614. </para>
  5615. </summary>
  5616. </member>
  5617. <member name="P:System.Xml.XmlNodeReader.CanResolveEntity">
  5618. <summary>
  5619. <para>Gets a value indicating whether this reader can parse
  5620. and resolve entities.</para>
  5621. </summary>
  5622. </member>
  5623. <member name="P:System.Xml.XmlNodeReader.IsEmptyElement">
  5624. <summary>
  5625. <para>Gets a value indicating whether the current node is an
  5626. empty element (for example, <c>&lt;MyElement/&gt;</c>
  5627. ).</para>
  5628. </summary>
  5629. </member>
  5630. <member name="P:System.Xml.XmlNodeReader.IsDefault">
  5631. <summary>
  5632. <para> Gets a value indicating whether the current node is an
  5633. attribute that was generated from the default value defined
  5634. in the DTD or schema.
  5635. </para>
  5636. </summary>
  5637. </member>
  5638. <member name="P:System.Xml.XmlNodeReader.QuoteChar">
  5639. <summary>
  5640. <para> Gets the quotation mark character used to enclose the value of an attribute
  5641. node.
  5642. </para>
  5643. </summary>
  5644. </member>
  5645. <member name="P:System.Xml.XmlNodeReader.XmlSpace">
  5646. <summary>
  5647. <para>Gets the current <see langword="xml:space" /> scope.</para>
  5648. </summary>
  5649. </member>
  5650. <member name="P:System.Xml.XmlNodeReader.XmlLang">
  5651. <summary>
  5652. <para>Gets the current <see langword="xml:lang" /> scope.</para>
  5653. </summary>
  5654. </member>
  5655. <member name="P:System.Xml.XmlNodeReader.AttributeCount">
  5656. <summary>
  5657. <para>Gets the number of attributes on the current node.</para>
  5658. </summary>
  5659. </member>
  5660. <member name="P:System.Xml.XmlNodeReader.EOF">
  5661. <summary>
  5662. <para>Gets a
  5663. value indicating whether the reader is positioned at the end of the
  5664. stream.</para>
  5665. </summary>
  5666. </member>
  5667. <member name="P:System.Xml.XmlNodeReader.ReadState">
  5668. <summary>
  5669. <para>
  5670. Gets the state of the reader.
  5671. </para>
  5672. </summary>
  5673. </member>
  5674. <member name="P:System.Xml.XmlNodeReader.HasAttributes">
  5675. <summary>
  5676. <para>Gets a value indicating whether the current node
  5677. has any attributes.</para>
  5678. </summary>
  5679. </member>
  5680. <member name="P:System.Xml.XmlNodeReader.NameTable">
  5681. <summary>
  5682. <para>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this
  5683. implementation.</para>
  5684. </summary>
  5685. </member>
  5686. <member name="P:System.Xml.XmlNodeReader.Item(System.Int32)">
  5687. <summary>
  5688. <para>Gets the value of the attribute with the specified index.</para>
  5689. </summary>
  5690. <param name="i">The index of the attribute.</param>
  5691. </member>
  5692. <member name="P:System.Xml.XmlNodeReader.Item(System.String)">
  5693. <summary>
  5694. <para>Gets the value of the attribute with the specified name.</para>
  5695. </summary>
  5696. <param name="name">The qualified name of the attribute.</param>
  5697. </member>
  5698. <member name="P:System.Xml.XmlNodeReader.Item(System.String,System.String)">
  5699. <summary>
  5700. <para>Gets the value of the attribute with the specified local name and namespace URI.</para>
  5701. </summary>
  5702. <param name="name">The local name of the attribute.</param>
  5703. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  5704. </member>
  5705. <member name="T:System.Xml.XmlNodeType">
  5706. <summary>
  5707. Specifies the type of node.
  5708. </summary>
  5709. </member>
  5710. <member name="F:System.Xml.XmlNodeType.None">
  5711. <summary>
  5712. <para>This is returned by the <see cref="T:System.Xml.XmlReader" /> if a <see langword="Read" />
  5713. method has not been called.</para>
  5714. </summary>
  5715. </member>
  5716. <member name="F:System.Xml.XmlNodeType.Element">
  5717. <summary>
  5718. <para> An element.
  5719. </para>
  5720. <para> Example XML: <c>&lt;item&gt;</c></para>
  5721. An <see langword="Element" /> node can have the
  5722. following child node types: <see langword="Element" />, <see langword="Text" />,
  5723. <see langword="Comment" />, <see langword="ProcessingInstruction" />,
  5724. <see langword="CDATA" />, and <see langword="EntityReference" />. It can be the
  5725. child of the <see langword="Document" />, <see langword="DocumentFragment" />,
  5726. <see langword="EntityReference" />, and <see langword="Element" />
  5727. nodes.
  5728. </summary>
  5729. </member>
  5730. <member name="F:System.Xml.XmlNodeType.Attribute">
  5731. <summary>
  5732. <para> An
  5733. attribute.
  5734. </para>
  5735. <para> Example XML: <c>id='123'</c></para>
  5736. <para> An <see langword="Attribute" /> node can have the
  5737. following child node types: <see langword="Text" /> and
  5738. <see langword="EntityReference" />. The <see langword="Attribute" /> node does not
  5739. appear as the child node of any other node type. It is not considered a
  5740. child node of an <see langword="Element" />
  5741. .</para>
  5742. </summary>
  5743. </member>
  5744. <member name="F:System.Xml.XmlNodeType.Text">
  5745. <summary>
  5746. <para> The
  5747. text content of a node.
  5748. </para>
  5749. <para> A <see langword="Text" /> node cannot have any child nodes.
  5750. It can appear as the child node of the <see langword="Attribute" />,
  5751. <see langword="DocumentFragment" />, <see langword="Element" />, and
  5752. <see langword="EntityReference" />
  5753. nodes.
  5754. </para>
  5755. </summary>
  5756. </member>
  5757. <member name="F:System.Xml.XmlNodeType.CDATA">
  5758. <summary>
  5759. <para>A CDATA
  5760. section.</para>
  5761. <para>Example XML: <c>&lt;![CDATA[my
  5762. escaped text]]&gt;</c></para>
  5763. <para>
  5764. CDATA sections are used to escape blocks of text that would otherwise
  5765. be recognized as markup. A <see langword="CDATA" /> node cannot have any child
  5766. nodes. It can appear as the child of the <see langword="DocumentFragment" />,
  5767. <see langword="EntityReference" />, and <see langword="Element" /> nodes.</para>
  5768. </summary>
  5769. </member>
  5770. <member name="F:System.Xml.XmlNodeType.EntityReference">
  5771. <summary>
  5772. <para>A reference to an entity.</para>
  5773. <para>Example XML: <c>&amp;num;</c></para>
  5774. <para> An <see langword="EntityReference" /> node can have the
  5775. following child node types: <see langword="Element" />,
  5776. <see langword="ProcessingInstruction" />, <see langword="Comment" />,
  5777. <see langword="Text" />, <see langword="CDATA" />, and
  5778. <see langword="EntityReference" />. It can appear as the child of the
  5779. <see langword="Attribute" />, <see langword="DocumentFragment" />,
  5780. <see langword="Element" />, and <see langword="EntityReference" />
  5781. nodes.</para>
  5782. </summary>
  5783. </member>
  5784. <member name="F:System.Xml.XmlNodeType.Entity">
  5785. <summary>
  5786. <para>An entity declaration.</para>
  5787. <para>Example XML: <c>&lt;!ENTITY ...&gt;</c></para>
  5788. <para>An <see langword="Entity" /> node can have child nodes
  5789. that represent the expanded entity (for example, <see langword="Text" /> and
  5790. <see langword="EntityReference" /> nodes). It can appear as the child of the
  5791. <see langword="DocumentType" />
  5792. node.</para>
  5793. </summary>
  5794. </member>
  5795. <member name="F:System.Xml.XmlNodeType.ProcessingInstruction">
  5796. <summary>
  5797. <para> A processing instruction.
  5798. </para>
  5799. <para> Example XML: <c>&lt;?pi test?&gt;</c></para>
  5800. <para> A <see langword="ProcessingInstruction" /> node cannot have
  5801. any child nodes. It can appear as the child of the <see langword="Document" />,
  5802. <see langword="DocumentFragment" />, <see langword="Element" />, and
  5803. <see langword="EntityReference" />
  5804. nodes.
  5805. </para>
  5806. </summary>
  5807. </member>
  5808. <member name="F:System.Xml.XmlNodeType.Comment">
  5809. <summary>
  5810. <para> A comment.
  5811. </para>
  5812. <para> Example XML: <c>&lt;!-- my comment --&gt;</c></para>
  5813. <para> A <see langword="Comment" /> node cannot have any child
  5814. nodes. It can appear as the child of the <see langword="Document" />,
  5815. <see langword="DocumentFragment" />, <see langword="Element" />, and
  5816. <see langword="EntityReference" />
  5817. nodes.
  5818. </para>
  5819. </summary>
  5820. </member>
  5821. <member name="F:System.Xml.XmlNodeType.Document">
  5822. <summary>
  5823. <para> A document object that, as the root of the document tree, provides access
  5824. to the entire XML document.
  5825. </para>
  5826. <para> A <see langword="Document" /> node
  5827. can have the following child node types:
  5828. <see langword="XmlDeclaration" />
  5829. , <see langword="Element" /> (maximum of one),
  5830. <see langword="ProcessingInstruction" />, <see langword="Comment" />, and
  5831. <see langword="DocumentType" />
  5832. . It cannot
  5833. appear as the child of any node types.</para>
  5834. </summary>
  5835. </member>
  5836. <member name="F:System.Xml.XmlNodeType.DocumentType">
  5837. <summary>
  5838. <para> The document type declaration, indicated by the following tag.
  5839. </para>
  5840. <para> Example XML: <c>&lt;!DOCTYPE ...&gt;</c></para>
  5841. <para> A <see langword="DocumentType" /> node can have the
  5842. following child node types: <see langword="Notation" /> and
  5843. <see langword="Entity" />. It can appear as the child of the
  5844. <see langword="Document" />
  5845. node.
  5846. </para>
  5847. </summary>
  5848. </member>
  5849. <member name="F:System.Xml.XmlNodeType.DocumentFragment">
  5850. <summary>
  5851. <para> A document fragment.
  5852. </para>
  5853. <para> The <see langword="DocumentFragment" /> node associates a
  5854. node or subtree with a document without actually being contained within the
  5855. document. A <see langword="DocumentFragment" /> node can have the following child
  5856. node types: <see langword="Element" />, <see langword="ProcessingInstruction" />,
  5857. <see langword="Comment" />, <see langword="Text" />, <see langword="CDATA" />, and
  5858. <see langword="EntityReference" />
  5859. . It
  5860. cannot appear as the child of any node types.
  5861. </para>
  5862. </summary>
  5863. </member>
  5864. <member name="F:System.Xml.XmlNodeType.Notation">
  5865. <summary>
  5866. <para> A notation in the document type declaration.
  5867. </para>
  5868. <para> Example XML: <c>&lt;!NOTATION ...&gt;</c></para>
  5869. <para> A <see langword="Notation" /> node cannot have any child
  5870. nodes. It can appear as the child of the <see langword="DocumentType" />
  5871. node.
  5872. </para>
  5873. </summary>
  5874. </member>
  5875. <member name="F:System.Xml.XmlNodeType.Whitespace">
  5876. <summary>
  5877. <para> White space between markup.
  5878. </para>
  5879. </summary>
  5880. </member>
  5881. <member name="F:System.Xml.XmlNodeType.SignificantWhitespace">
  5882. <summary>
  5883. <para> White space between markup in a mixed content model or white
  5884. space within the <c>xml:space="preserve"</c> scope.
  5885. </para>
  5886. </summary>
  5887. </member>
  5888. <member name="F:System.Xml.XmlNodeType.EndElement">
  5889. <summary>
  5890. <para> An end element tag.</para>
  5891. <para>Example XML: <c>&lt;/item&gt;</c></para>
  5892. <para>Returned when <see cref="T:System.Xml.XmlReader" /> gets to the end of an element.</para>
  5893. </summary>
  5894. </member>
  5895. <member name="F:System.Xml.XmlNodeType.EndEntity">
  5896. <summary>
  5897. <para>Returned when <see langword="XmlReader" /> gets to the end of the entity
  5898. replacement as a result of a call to <see cref="M:System.Xml.XmlReader.ResolveEntity" />
  5899. .</para>
  5900. </summary>
  5901. </member>
  5902. <member name="F:System.Xml.XmlNodeType.XmlDeclaration">
  5903. <summary>
  5904. <para> The XML declaration.
  5905. </para>
  5906. <para> Example XML: <c>&lt;?xml version='1.0'?&gt;</c></para>
  5907. <para> The <see langword="XmlDeclaration" />
  5908. node must be the first node in the document. It cannot have children. It is a
  5909. child of the <see langword="Document" />
  5910. node. It can have attributes that provide version
  5911. and encoding information.</para>
  5912. </summary>
  5913. </member>
  5914. <member name="T:System.Xml.XmlNotation">
  5915. <summary>
  5916. <para> Represents a notation declaration: &lt;!NOTATION ... &gt;.
  5917. </para>
  5918. </summary>
  5919. </member>
  5920. <member name="M:System.Xml.XmlNotation.CloneNode(System.Boolean)">
  5921. <summary>
  5922. <para>Creates a duplicate of this node. Notation
  5923. nodes cannot be cloned. Calling this method on an
  5924. <see langword="XmlNotation" /> object throws an exception.</para>
  5925. </summary>
  5926. <param name="deep">
  5927. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
  5928. </member>
  5929. <member name="M:System.Xml.XmlNotation.WriteTo(System.Xml.XmlWriter)">
  5930. <summary>
  5931. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  5932. <para>For <see langword="XmlNotation" />
  5933. nodes, this method has no
  5934. effect.</para>
  5935. </summary>
  5936. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  5937. </member>
  5938. <member name="M:System.Xml.XmlNotation.WriteContentTo(System.Xml.XmlWriter)">
  5939. <summary>
  5940. <para>Saves the children of the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  5941. <para>For <see langword="XmlNotation " />nodes, this method has no effect.</para>
  5942. </summary>
  5943. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  5944. </member>
  5945. <member name="P:System.Xml.XmlNotation.Name">
  5946. <summary>
  5947. <para> Gets the name of the current node.</para>
  5948. </summary>
  5949. </member>
  5950. <member name="P:System.Xml.XmlNotation.LocalName">
  5951. <summary>
  5952. <para> Gets the name of the current node without the namespace prefix.
  5953. </para>
  5954. </summary>
  5955. </member>
  5956. <member name="P:System.Xml.XmlNotation.NodeType">
  5957. <summary>
  5958. <para>Gets the type of the current node.</para>
  5959. </summary>
  5960. </member>
  5961. <member name="P:System.Xml.XmlNotation.IsReadOnly">
  5962. <summary>
  5963. <para>Gets a value indicating whether the node is read-only.</para>
  5964. </summary>
  5965. </member>
  5966. <member name="P:System.Xml.XmlNotation.PublicId">
  5967. <summary>
  5968. <para>Gets
  5969. the value of the public identifier on the notation declaration.</para>
  5970. </summary>
  5971. </member>
  5972. <member name="P:System.Xml.XmlNotation.SystemId">
  5973. <summary>
  5974. <para>Gets the value of
  5975. the system identifier on the notation declaration.</para>
  5976. </summary>
  5977. </member>
  5978. <member name="P:System.Xml.XmlNotation.OuterXml">
  5979. <summary>
  5980. <para>Gets the markup representing this node and all its
  5981. children.</para>
  5982. </summary>
  5983. </member>
  5984. <member name="P:System.Xml.XmlNotation.InnerXml">
  5985. <summary>
  5986. <para> Gets the markup representing the children of
  5987. this node.</para>
  5988. </summary>
  5989. </member>
  5990. <member name="T:System.Xml.XmlParserContext">
  5991. <summary>
  5992. <para> Provides all the context information required
  5993. by <see cref="T:System.Xml.XmlTextReader" /> or <see cref="T:System.Xml.XmlValidatingReader" />
  5994. to parse an XML fragment.</para>
  5995. </summary>
  5996. </member>
  5997. <member name="M:System.Xml.XmlParserContext.#ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.Xml.XmlSpace)">
  5998. <summary>
  5999. <para>Initializes a new instance of the
  6000. <see langword="XmlParserContext" /> class with the specified
  6001. values.</para>
  6002. </summary>
  6003. <param name="nt">The <see cref="T:System.Xml.XmlNameTable" /> to use to atomize strings. If this is <see langword="null" />, the name table used to construct the <paramref name="nsMgr" /> is used instead. For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" /> .</param>
  6004. <param name="nsMgr">The <see cref="T:System.Xml.XmlNamespaceManager" /> to use for looking up namespace information. </param>
  6005. <param name="xmlLang">The <see langword="xml:lang" /> scope.</param>
  6006. <param name=" xmlSpace">An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope. </param>
  6007. </member>
  6008. <member name="M:System.Xml.XmlParserContext.#ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.Xml.XmlSpace,System.Text.Encoding)">
  6009. <summary>
  6010. <para>Initializes a new instance of the
  6011. <see langword="XmlParserContext" /> class with the specified values.</para>
  6012. </summary>
  6013. <param name="nt">The <see cref="T:System.Xml.XmlNameTable" /> to use to atomize strings. If this is <see langword="null" />, the name table used to construct the <paramref name="nsMgr" /> is used instead. For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" /> .</param>
  6014. <param name=" nsMgr">The <see cref="T:System.Xml.XmlNamespaceManager" /> to use for looking up namespace information.</param>
  6015. <param name="xmlLang">The <see langword="xml:lang" /> scope.</param>
  6016. <param name=" xmlSpace">An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope. </param>
  6017. <param name=" enc">An <see cref="T:System.Text.Encoding" /> object indicating the encoding setting.</param>
  6018. </member>
  6019. <member name="M:System.Xml.XmlParserContext.#ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace)">
  6020. <summary>
  6021. <para>Initializes a new instance of the
  6022. <see langword="XmlParserContext" />
  6023. class with the specified values.</para>
  6024. </summary>
  6025. <param name="nt">The <see cref="T:System.Xml.XmlNameTable" /> to use to atomize strings. If this is <see langword="null" />, the name table used to construct the <paramref name="nsMgr" /> is used instead. For more information on atomized strings, see<see cref="T:System.Xml.XmlNameTable" /> .</param>
  6026. <param name="nsMgr">The <see cref="T:System.Xml.XmlNamespaceManager" /> to use for looking up namespace information. </param>
  6027. <param name="docTypeName">The name of the document type declaration.</param>
  6028. <param name="pubId">The public identifier.</param>
  6029. <param name="sysId">The system identifier.</param>
  6030. <param name="internalSubset">The internal DTD subset.</param>
  6031. <param name="baseURI">The base URI for the XML fragment (the location from which the fragment was loaded).</param>
  6032. <param name="xmlLang">The <see langword="xml:lang" /> scope.</param>
  6033. <param name=" xmlSpace">An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope. </param>
  6034. </member>
  6035. <member name="M:System.Xml.XmlParserContext.#ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.String,System.String,System.String,System.String,System.String,System.Xml.XmlSpace,System.Text.Encoding)">
  6036. <summary>
  6037. <para>Initializes a new instance of the
  6038. <see langword="XmlParserContext" /> class with the specified values.</para>
  6039. </summary>
  6040. <param name="nt">The <see cref="T:System.Xml.XmlNameTable" /> to use to atomize strings. If this is <see langword="null" />, the name table used to construct the <paramref name="nsMgr" /> is used instead. For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" /> .</param>
  6041. <param name=" nsMgr">The <see cref="T:System.Xml.XmlNamespaceManager" /> to use for looking up namespace information.</param>
  6042. <param name=" docTypeName">The name of the document type declaration.</param>
  6043. <param name=" pubId">The public identifier.</param>
  6044. <param name="sysId">The system identifier.</param>
  6045. <param name="internalSubset">The internal DTD subset.</param>
  6046. <param name="baseURI">The base URI for the XML fragment (the location from which the fragment was loaded).</param>
  6047. <param name="xmlLang">The <see langword="xml:lang" /> scope.</param>
  6048. <param name=" xmlSpace">An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope. </param>
  6049. <param name=" enc">An <see cref="T:System.Text.Encoding" /> object indicating the encoding setting.</param>
  6050. </member>
  6051. <member name="P:System.Xml.XmlParserContext.NameTable">
  6052. <summary>
  6053. <para>Gets the <see cref="T:System.Xml.XmlNameTable" /> used to atomize strings. For more information
  6054. on atomized strings, see <see cref="T:System.Xml.XmlNameTable" />
  6055. .</para>
  6056. </summary>
  6057. </member>
  6058. <member name="P:System.Xml.XmlParserContext.NamespaceManager">
  6059. <summary>
  6060. <para>Gets or sets the <see cref="T:System.Xml.XmlNamespaceManager" />.</para>
  6061. </summary>
  6062. </member>
  6063. <member name="P:System.Xml.XmlParserContext.DocTypeName">
  6064. <summary>
  6065. <para>Gets or sets the name of the document type declaration.</para>
  6066. </summary>
  6067. </member>
  6068. <member name="P:System.Xml.XmlParserContext.PublicId">
  6069. <summary>
  6070. <para>Gets or sets the public identifier.</para>
  6071. </summary>
  6072. </member>
  6073. <member name="P:System.Xml.XmlParserContext.SystemId">
  6074. <summary>
  6075. <para>Gets or sets the system identifier.</para>
  6076. </summary>
  6077. </member>
  6078. <member name="P:System.Xml.XmlParserContext.BaseURI">
  6079. <summary>
  6080. <para>Gets or sets the base URI.</para>
  6081. </summary>
  6082. </member>
  6083. <member name="P:System.Xml.XmlParserContext.InternalSubset">
  6084. <summary>
  6085. <para>Gets or sets the internal DTD subset.</para>
  6086. </summary>
  6087. </member>
  6088. <member name="P:System.Xml.XmlParserContext.XmlLang">
  6089. <summary>
  6090. <para>Gets or sets the current <see langword="xml:lang" /> scope.</para>
  6091. </summary>
  6092. </member>
  6093. <member name="P:System.Xml.XmlParserContext.XmlSpace">
  6094. <summary>
  6095. <para>Gets or sets the current <see langword="xml:space" /> scope.</para>
  6096. </summary>
  6097. </member>
  6098. <member name="P:System.Xml.XmlParserContext.Encoding">
  6099. <summary>
  6100. Gets or sets the encoding type.
  6101. </summary>
  6102. </member>
  6103. <member name="T:System.Xml.XmlProcessingInstruction">
  6104. <summary>
  6105. <para> Represents a processing instruction, which XML defines to keep
  6106. processor-specific information in the text of the document.
  6107. </para>
  6108. </summary>
  6109. </member>
  6110. <member name="M:System.Xml.XmlProcessingInstruction.CloneNode(System.Boolean)">
  6111. <summary>
  6112. <para>Creates a duplicate of this node.</para>
  6113. </summary>
  6114. <param name="deep">
  6115. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
  6116. <returns>
  6117. <para>The duplicate node.</para>
  6118. </returns>
  6119. </member>
  6120. <member name="M:System.Xml.XmlProcessingInstruction.WriteTo(System.Xml.XmlWriter)">
  6121. <summary>
  6122. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  6123. </summary>
  6124. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  6125. </member>
  6126. <member name="M:System.Xml.XmlProcessingInstruction.WriteContentTo(System.Xml.XmlWriter)">
  6127. <summary>
  6128. <para>Saves all the children of the node to the specified
  6129. <see cref="T:System.Xml.XmlWriter" /> . Because
  6130. ProcessingInstruction nodes do not have children, this method has no effect.</para>
  6131. </summary>
  6132. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  6133. </member>
  6134. <member name="P:System.Xml.XmlProcessingInstruction.Name">
  6135. <summary>
  6136. <para>Gets the qualified name of the node.</para>
  6137. </summary>
  6138. </member>
  6139. <member name="P:System.Xml.XmlProcessingInstruction.LocalName">
  6140. <summary>
  6141. <para> Gets the local name of the node.</para>
  6142. </summary>
  6143. </member>
  6144. <member name="P:System.Xml.XmlProcessingInstruction.Value">
  6145. <summary>
  6146. <para>Gets or sets the value of the node.</para>
  6147. </summary>
  6148. </member>
  6149. <member name="P:System.Xml.XmlProcessingInstruction.Target">
  6150. <summary>
  6151. <para> Gets the target of the processing instruction.
  6152. </para>
  6153. </summary>
  6154. </member>
  6155. <member name="P:System.Xml.XmlProcessingInstruction.Data">
  6156. <summary>
  6157. <para> Gets or sets the content of the processing instruction,
  6158. excluding the target.
  6159. </para>
  6160. </summary>
  6161. </member>
  6162. <member name="P:System.Xml.XmlProcessingInstruction.InnerText">
  6163. <summary>
  6164. <para> Gets or sets the concatenated values of the node and
  6165. all its children.
  6166. </para>
  6167. </summary>
  6168. </member>
  6169. <member name="P:System.Xml.XmlProcessingInstruction.NodeType">
  6170. <summary>
  6171. <para>Gets the type of the current node.</para>
  6172. </summary>
  6173. </member>
  6174. <member name="T:System.Xml.XmlQualifiedName">
  6175. <summary>
  6176. <para>Represents an XML qualified name.</para>
  6177. </summary>
  6178. </member>
  6179. <member name="F:System.Xml.XmlQualifiedName.Empty">
  6180. <summary>
  6181. <para>Provides an empty <see langword="XmlQualifiedName" />.</para>
  6182. </summary>
  6183. </member>
  6184. <member name="M:System.Xml.XmlQualifiedName.#ctor">
  6185. <summary>
  6186. <para>Initializes a new instance of the
  6187. <see langword="XmlQualifedName" /> class.</para>
  6188. </summary>
  6189. </member>
  6190. <member name="M:System.Xml.XmlQualifiedName.#ctor(System.String)">
  6191. <summary>
  6192. <para>Initializes a new instance of the <see langword="XmlQualifedName" /> class with the specified name.</para>
  6193. </summary>
  6194. <param name="name">The local name to use as the name of the <see langword="XmlQualifiedName" /> object.</param>
  6195. </member>
  6196. <member name="M:System.Xml.XmlQualifiedName.#ctor(System.String,System.String)">
  6197. <summary>
  6198. <para>Initializes a new instance of the
  6199. <see langword="XmlQualifedName" /> class with the specified name and namespace.</para>
  6200. </summary>
  6201. <param name="name">The local name to use as the name of the <see langword="XmlQualifiedName" /> object. </param>
  6202. <param name=" ns">The namespace for the <see langword="XmlQualifiedName" /> object.</param>
  6203. </member>
  6204. <member name="M:System.Xml.XmlQualifiedName.GetHashCode">
  6205. <summary>
  6206. <para>Returns the hash code for the
  6207. <see langword="XmlQualifiedName" /> .</para>
  6208. </summary>
  6209. <returns>
  6210. <para>A hash code for this object.</para>
  6211. </returns>
  6212. </member>
  6213. <member name="M:System.Xml.XmlQualifiedName.ToString">
  6214. <summary>
  6215. <para>Returns the string value of the
  6216. <see langword="XmlQualifiedName" />.</para>
  6217. </summary>
  6218. <returns>
  6219. <para>The string value of the
  6220. <see langword="XmlQualifiedName" /> in the format of
  6221. <see langword="namespace:localname" /> . If the
  6222. object does not have a namespace defined, this method returns just the local
  6223. name.</para>
  6224. </returns>
  6225. </member>
  6226. <member name="M:System.Xml.XmlQualifiedName.Equals(System.Object)">
  6227. <summary>
  6228. <para>Checks if the specified
  6229. <see langword="XmlQualifiedName" /> is the same instance object as this object.</para>
  6230. </summary>
  6231. <param name="other">The <see langword="XmlQualifiedName" /> to compare.</param>
  6232. <returns>
  6233. <para>
  6234. <see langword="true" /> if the two are
  6235. the same instance object; otherwise <see langword="false" />.</para>
  6236. </returns>
  6237. </member>
  6238. <member name="M:System.Xml.XmlQualifiedName.op_Equality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)">
  6239. <summary>
  6240. <para>Compares two <see langword="XmlQualifiedName" /> objects.</para>
  6241. </summary>
  6242. <param name="a">An <see langword="XmlQualifiedName" /> to compare.</param>
  6243. <param name=" b">An <see langword="XmlQualifiedName" /> to compare.</param>
  6244. <returns>
  6245. <para>
  6246. <see langword="true" /> if the two
  6247. objects have the same name and namespace values; otherwise
  6248. <see langword="false" />.</para>
  6249. </returns>
  6250. </member>
  6251. <member name="M:System.Xml.XmlQualifiedName.op_Inequality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)">
  6252. <summary>
  6253. <para>Compares two <see langword="XmlQualifiedName" /> objects.</para>
  6254. </summary>
  6255. <param name="a">An <see langword="XmlQualifiedName" /> to compare.</param>
  6256. <param name=" b">An <see langword="XmlQualifiedName" /> to compare.</param>
  6257. <returns>
  6258. <para>
  6259. <see langword="true" /> if the name
  6260. and namespace values for the two objects differ; otherwise
  6261. <see langword="false" />.</para>
  6262. </returns>
  6263. </member>
  6264. <member name="M:System.Xml.XmlQualifiedName.ToString(System.String,System.String)">
  6265. <summary>
  6266. <para>Returns the string value of the
  6267. <see langword="XmlQualifiedName" />.</para>
  6268. </summary>
  6269. <param name="name">The name of the object.</param>
  6270. <param name=" ns">The namespace of the object.</param>
  6271. <returns>
  6272. <para>The string value of the
  6273. <see langword="XmlQualifiedName" /> in the format of
  6274. <see langword="namespace:localname" /> . If the
  6275. object does not have a namespace defined, this method returns just the local
  6276. name.</para>
  6277. </returns>
  6278. </member>
  6279. <member name="P:System.Xml.XmlQualifiedName.Namespace">
  6280. <summary>
  6281. <para> Gets a string representation of the namespace
  6282. of the <see langword="XmlQualifiedName" />.</para>
  6283. </summary>
  6284. </member>
  6285. <member name="P:System.Xml.XmlQualifiedName.Name">
  6286. <summary>
  6287. <para> Gets a string representation of the qualified name
  6288. of the <see langword="XmlQualifiedName" />.</para>
  6289. </summary>
  6290. </member>
  6291. <member name="P:System.Xml.XmlQualifiedName.IsEmpty">
  6292. <summary>
  6293. Gets a value indicating whether the
  6294. <see langword="XmlQualifedName" /> is empty.
  6295. </summary>
  6296. </member>
  6297. <member name="T:System.Xml.XmlResolver">
  6298. <summary>
  6299. <para>Resolves external XML resources named by a URI.</para>
  6300. </summary>
  6301. </member>
  6302. <member name="M:System.Xml.XmlResolver.GetEntity(System.Uri,System.String,System.Type)">
  6303. <summary>
  6304. <para>When overridden in a derived class, maps a
  6305. URI to an object containing the actual resource.</para>
  6306. </summary>
  6307. <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)" /></param>
  6308. <param name="role">The current version does not use this parameter when resolving URIs. This is provided for future extensibility purposes. For example, this can be mapped to the xlink:role and used as an implementation specific argument in other scenarios.</param>
  6309. <param name="ofObjectToReturn">The type of object to return. The current version only returns System.IO.Stream objects.</param>
  6310. <returns>
  6311. <para>A <see langword="System.IO.Stream" /> object or <see langword="null" /> if a type other than stream is specified.</para>
  6312. </returns>
  6313. </member>
  6314. <member name="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)">
  6315. <summary>
  6316. <para>When overridden in a derived class, resolves the absolute URI from the base and
  6317. relative URIs.</para>
  6318. </summary>
  6319. <param name="baseUri">The base URI used to resolve the relative URI</param>
  6320. <param name=" relativeUri">
  6321. <para> The URI to resolve. The URI can be absolute or relative. If absolute, this value effectively replaces the <paramref name="baseUri" /> value. If relative, it combines with the <paramref name="baseUri" /> to make an absolute URI.</para>
  6322. </param>
  6323. <returns>
  6324. <para>The absolute URI or
  6325. <see langword="null" /> if the relative URI can not be resolved.</para>
  6326. </returns>
  6327. </member>
  6328. <member name="P:System.Xml.XmlResolver.Credentials">
  6329. <summary>
  6330. <para> When overridden in a derived class, sets the credentials used to authenticate Web
  6331. requests.</para>
  6332. </summary>
  6333. </member>
  6334. <member name="T:System.Xml.XmlSignificantWhitespace">
  6335. <summary>
  6336. <para>Represents white space between markup in a mixed content
  6337. mode or white space within an xml:space= 'preserve' scope. This is also referred
  6338. to as significant white space.</para>
  6339. </summary>
  6340. </member>
  6341. <member name="M:System.Xml.XmlSignificantWhitespace.CloneNode(System.Boolean)">
  6342. <summary>
  6343. <para>Creates a duplicate of this node.</para>
  6344. </summary>
  6345. <param name="deep">
  6346. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself. For significant white space nodes, the cloned node always includes the data value, regardless of the parameter setting.</param>
  6347. <returns>
  6348. <para>The cloned node.</para>
  6349. </returns>
  6350. </member>
  6351. <member name="M:System.Xml.XmlSignificantWhitespace.WriteTo(System.Xml.XmlWriter)">
  6352. <summary>
  6353. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  6354. </summary>
  6355. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  6356. </member>
  6357. <member name="M:System.Xml.XmlSignificantWhitespace.WriteContentTo(System.Xml.XmlWriter)">
  6358. <summary>
  6359. <para>Saves all the children of the node to the specified
  6360. <see cref="T:System.Xml.XmlWriter" /> .</para>
  6361. </summary>
  6362. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  6363. </member>
  6364. <member name="P:System.Xml.XmlSignificantWhitespace.Name">
  6365. <summary>
  6366. <para>Gets the qualified name of the node.</para>
  6367. </summary>
  6368. </member>
  6369. <member name="P:System.Xml.XmlSignificantWhitespace.LocalName">
  6370. <summary>
  6371. <para> Gets the local name of the node.</para>
  6372. </summary>
  6373. </member>
  6374. <member name="P:System.Xml.XmlSignificantWhitespace.NodeType">
  6375. <summary>
  6376. <para>Gets the type of the current node.</para>
  6377. </summary>
  6378. </member>
  6379. <member name="P:System.Xml.XmlSignificantWhitespace.Value">
  6380. <summary>
  6381. <para>Gets or sets the value of the node.</para>
  6382. </summary>
  6383. </member>
  6384. <member name="T:System.Xml.XmlSpace">
  6385. <summary>
  6386. <para>Specifies the current <see langword="xml:space" /> scope.</para>
  6387. </summary>
  6388. </member>
  6389. <member name="F:System.Xml.XmlSpace.None">
  6390. <summary>
  6391. <para>No <see langword="xml:space" /> scope.</para>
  6392. </summary>
  6393. </member>
  6394. <member name="F:System.Xml.XmlSpace.Default">
  6395. <summary>
  6396. <para>The <see langword="xml:space" /> scope equals
  6397. <see langword="default" /> .</para>
  6398. </summary>
  6399. </member>
  6400. <member name="F:System.Xml.XmlSpace.Preserve">
  6401. <summary>
  6402. <para>The <see langword="xml:space" /> scope equals
  6403. <see langword="preserve" /> .</para>
  6404. </summary>
  6405. </member>
  6406. <member name="T:System.Xml.XmlText">
  6407. <summary>
  6408. <para> Represents the text content of an element or attribute.
  6409. </para>
  6410. </summary>
  6411. </member>
  6412. <member name="M:System.Xml.XmlText.CloneNode(System.Boolean)">
  6413. <summary>
  6414. <para>Creates a duplicate of this node.</para>
  6415. </summary>
  6416. <param name="deep">
  6417. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
  6418. <returns>
  6419. <para>The cloned node.</para>
  6420. </returns>
  6421. </member>
  6422. <member name="M:System.Xml.XmlText.SplitText(System.Int32)">
  6423. <summary>
  6424. <para> Splits the node into two nodes at the specified offset, keeping
  6425. both in the tree as siblings.
  6426. </para>
  6427. </summary>
  6428. <param name="offset">The offset at which to split the node. </param>
  6429. <returns>
  6430. The new node.
  6431. </returns>
  6432. </member>
  6433. <member name="M:System.Xml.XmlText.WriteTo(System.Xml.XmlWriter)">
  6434. <summary>
  6435. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  6436. </summary>
  6437. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  6438. </member>
  6439. <member name="M:System.Xml.XmlText.WriteContentTo(System.Xml.XmlWriter)">
  6440. <summary>
  6441. <para>Saves all the children of the node to the specified
  6442. <see cref="T:System.Xml.XmlWriter" /> .
  6443. <see langword="XmlText" /> nodes do not have children, so this method has no
  6444. effect.</para>
  6445. </summary>
  6446. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  6447. </member>
  6448. <member name="P:System.Xml.XmlText.Name">
  6449. <summary>
  6450. <para>Gets the qualified name of the node.</para>
  6451. </summary>
  6452. </member>
  6453. <member name="P:System.Xml.XmlText.LocalName">
  6454. <summary>
  6455. <para> Gets the local name of the node.</para>
  6456. </summary>
  6457. </member>
  6458. <member name="P:System.Xml.XmlText.NodeType">
  6459. <summary>
  6460. <para>Gets the type of the current node.</para>
  6461. </summary>
  6462. </member>
  6463. <member name="P:System.Xml.XmlText.Value">
  6464. <summary>
  6465. <para>Gets or sets the value of the node.</para>
  6466. </summary>
  6467. </member>
  6468. <member name="T:System.Xml.XmlTokenizedType">
  6469. <summary>
  6470. Represents the XML type for the string. This allows the
  6471. string to be read as a particular XML type, for example a CDATA section type.
  6472. </summary>
  6473. </member>
  6474. <member name="F:System.Xml.XmlTokenizedType.CDATA">
  6475. <summary>
  6476. CDATA type.
  6477. </summary>
  6478. </member>
  6479. <member name="F:System.Xml.XmlTokenizedType.ID">
  6480. <summary>
  6481. <para> ID type.</para>
  6482. </summary>
  6483. </member>
  6484. <member name="F:System.Xml.XmlTokenizedType.IDREF">
  6485. <summary>
  6486. <para> IDREF type.</para>
  6487. </summary>
  6488. </member>
  6489. <member name="F:System.Xml.XmlTokenizedType.IDREFS">
  6490. <summary>
  6491. IDREFS type.
  6492. </summary>
  6493. </member>
  6494. <member name="F:System.Xml.XmlTokenizedType.ENTITY">
  6495. <summary>
  6496. <para> ENTITY type.</para>
  6497. </summary>
  6498. </member>
  6499. <member name="F:System.Xml.XmlTokenizedType.ENTITIES">
  6500. <summary>
  6501. <para> ENTITIES type.</para>
  6502. </summary>
  6503. </member>
  6504. <member name="F:System.Xml.XmlTokenizedType.NMTOKEN">
  6505. <summary>
  6506. <para> NMTOKEN type.</para>
  6507. </summary>
  6508. </member>
  6509. <member name="F:System.Xml.XmlTokenizedType.NMTOKENS">
  6510. <summary>
  6511. NMTOKENS type.
  6512. </summary>
  6513. </member>
  6514. <member name="F:System.Xml.XmlTokenizedType.NOTATION">
  6515. <summary>
  6516. <para> NOTATION type.</para>
  6517. </summary>
  6518. </member>
  6519. <member name="F:System.Xml.XmlTokenizedType.ENUMERATION">
  6520. <summary>
  6521. ENUMERATION type.
  6522. </summary>
  6523. </member>
  6524. <member name="F:System.Xml.XmlTokenizedType.QName">
  6525. <summary>
  6526. QName type.
  6527. </summary>
  6528. </member>
  6529. <member name="F:System.Xml.XmlTokenizedType.NCName">
  6530. <summary>
  6531. NCName type.
  6532. </summary>
  6533. </member>
  6534. <member name="F:System.Xml.XmlTokenizedType.None">
  6535. <summary>
  6536. No type.
  6537. </summary>
  6538. </member>
  6539. <member name="T:System.Xml.XmlUrlResolver">
  6540. <summary>
  6541. <para> Resolves external XML resources
  6542. named by a URI.</para>
  6543. </summary>
  6544. </member>
  6545. <member name="M:System.Xml.XmlUrlResolver.#ctor">
  6546. <summary>
  6547. <para> Creates a new instance of the
  6548. <see langword="XmlUrlResolver" /> class.
  6549. </para>
  6550. </summary>
  6551. </member>
  6552. <member name="M:System.Xml.XmlUrlResolver.GetEntity(System.Uri,System.String,System.Type)">
  6553. <summary>
  6554. <para>Maps a
  6555. URI to an object containing the actual resource.</para>
  6556. </summary>
  6557. <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlUrlResolver.ResolveUri(System.Uri,System.String)" /></param>
  6558. <param name="role">The current implementation does not use this parameter when resolving URIs. This is provided for future extensibility purposes. For example, this can be mapped to the xlink:role and used as an implementation specific argument in other scenarios.</param>
  6559. <param name="ofObjectToReturn">The type of object to return. The current implementation only returns <see langword="System.IO.Stream" /> objects.</param>
  6560. <returns>
  6561. <para>A <see langword="System.IO.Stream" /> object or <see langword="null" /> if a
  6562. type other than stream is specified.</para>
  6563. </returns>
  6564. </member>
  6565. <member name="M:System.Xml.XmlUrlResolver.ResolveUri(System.Uri,System.String)">
  6566. <summary>
  6567. <para>Resolves the absolute URI from the base and relative URIs.</para>
  6568. </summary>
  6569. <param name="baseUri">The base URI used to resolve the relative URI</param>
  6570. <param name="relativeUri">
  6571. <para> The URI to resolve. The URI can be absolute or relative. If absolute, this value effectively replaces the <paramref name="baseUri" /> value. If relative, it combines with the <paramref name="baseUri" /> to make an absolute URI.</para>
  6572. </param>
  6573. <returns>
  6574. <para>The absolute URI or <see langword="null" /> if the relative URI can not be resolved.</para>
  6575. </returns>
  6576. </member>
  6577. <member name="P:System.Xml.XmlUrlResolver.Credentials">
  6578. <summary>
  6579. <para> Sets credentials used to authenticate Web
  6580. requests.</para>
  6581. </summary>
  6582. </member>
  6583. <member name="T:System.Xml.XmlValidatingReader">
  6584. <summary>
  6585. <para> Represents a reader that provides DTD, XML-Data Reduced (XDR) schema, and
  6586. XML Schema definition
  6587. language (XSD) schema validation.</para>
  6588. </summary>
  6589. </member>
  6590. <member name="M:System.Xml.XmlValidatingReader.#ctor(System.Xml.XmlReader)">
  6591. <summary>
  6592. <para>Initializes a new instance of the
  6593. <see langword="XmlValidatingReader" />
  6594. class that validates the content returned from the given <see cref="T:System.Xml.XmlReader" />
  6595. .</para>
  6596. </summary>
  6597. <param name="reader">The <see langword="XmlReader" /> to read from while validating. The current implementation only supports <see cref="T:System.Xml.XmlTextReader" /> .</param>
  6598. </member>
  6599. <member name="M:System.Xml.XmlValidatingReader.#ctor(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext)">
  6600. <summary>
  6601. <para>Initializes a new instance of the
  6602. <see langword="XmlValidatingReader" /> class with the specified
  6603. values.</para>
  6604. </summary>
  6605. <param name="xmlFragment">The string containing the XML fragment to parse.</param>
  6606. <param name=" fragType">The <see cref="T:System.Xml.XmlNodeType" />of the XML fragment. This also determines what the fragment string can contain (see table below).</param>
  6607. <param name=" context">
  6608. <para>The <see cref="T:System.Xml.XmlParserContext" /> in which the XML fragment is to be parsed. This includes the <see cref="T:System.Xml.NameTable" /> to use, encoding, namespace scope, the current xml:lang and the xml:space scope.</para>
  6609. </param>
  6610. </member>
  6611. <member name="M:System.Xml.XmlValidatingReader.#ctor(System.IO.Stream,System.Xml.XmlNodeType,System.Xml.XmlParserContext)">
  6612. <summary>
  6613. <para>Initializes a new instance of the
  6614. <see langword="XmlValidatingReader" />
  6615. class with the specified values.</para>
  6616. </summary>
  6617. <param name="xmlFragment">The stream containing the XML fragment to parse.</param>
  6618. <param name="fragType">The <see cref="T:System.Xml.XmlNodeType" />of the XML fragment. This determines what the fragment can contain (see table below).</param>
  6619. <param name="context">
  6620. <para>The <see cref="T:System.Xml.XmlParserContext" /> in which the XML fragment is to be parsed. This includes the <see cref="T:System.Xml.XmlNameTable" /> to use, encoding, namespace scope, the current <see langword="xml:lang" /> and the <see langword="xml:space" /> scope.</para>
  6621. </param>
  6622. </member>
  6623. <member name="M:System.Xml.XmlValidatingReader.ReadTypedValue">
  6624. <summary>
  6625. <para>Gets the common language runtime type for the specified XML Schema definition language (XSD) type.</para>
  6626. </summary>
  6627. <returns>
  6628. <para>The common language runtime type for the specified
  6629. XML Schema (XSD) type.</para>
  6630. </returns>
  6631. </member>
  6632. <member name="M:System.Xml.XmlValidatingReader.GetAttribute(System.Int32)">
  6633. <summary>
  6634. <para>Gets the value of the attribute with the specified index.</para>
  6635. </summary>
  6636. <param name="i">The index of the attribute. The index is zero-based. (The first attribute has index 0.)</param>
  6637. <returns>
  6638. <para>The value of the specified attribute.</para>
  6639. </returns>
  6640. </member>
  6641. <member name="M:System.Xml.XmlValidatingReader.GetAttribute(System.String)">
  6642. <summary>
  6643. <para>Gets the value of the attribute with the specified name.</para>
  6644. </summary>
  6645. <param name="name">The qualified name of the attribute.</param>
  6646. <returns>
  6647. <para>The value of the specified attribute. If the attribute
  6648. is not found, String.Empty is returned.</para>
  6649. </returns>
  6650. </member>
  6651. <member name="M:System.Xml.XmlValidatingReader.GetAttribute(System.String,System.String)">
  6652. <summary>
  6653. <para>Gets the value of the attribute with the specified local name and namespace URI.</para>
  6654. </summary>
  6655. <param name="localName">The local name of the attribute.</param>
  6656. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  6657. <returns>
  6658. <para>The value of the specified attribute. If the attribute
  6659. is not found, String.Empty is returned. This
  6660. method does not move the reader.</para>
  6661. </returns>
  6662. </member>
  6663. <member name="M:System.Xml.XmlValidatingReader.MoveToAttribute(System.String)">
  6664. <summary>
  6665. <para>Moves to the attribute with the specified name.</para>
  6666. </summary>
  6667. <param name="name">The qualified name of the attribute.</param>
  6668. <returns>
  6669. <para>
  6670. <see langword="true" /> if the attribute is found;
  6671. otherwise, <see langword="false" />. If <see langword="false" />, the position
  6672. of the reader does not change.</para>
  6673. </returns>
  6674. </member>
  6675. <member name="M:System.Xml.XmlValidatingReader.MoveToAttribute(System.String,System.String)">
  6676. <summary>
  6677. <para>Moves to the attribute with the specified local name and namespace URI.</para>
  6678. </summary>
  6679. <param name="localName">The local name of the attribute.</param>
  6680. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  6681. <returns>
  6682. <para>
  6683. <see langword="true" /> if the attribute is found; otherwise,
  6684. <see langword="false" />. If <see langword="false" />, the position of the reader does
  6685. not change.</para>
  6686. </returns>
  6687. </member>
  6688. <member name="M:System.Xml.XmlValidatingReader.MoveToAttribute(System.Int32)">
  6689. <summary>
  6690. <para>Moves to the attribute with the specified index.</para>
  6691. </summary>
  6692. <param name="i">The index of the attribute.</param>
  6693. </member>
  6694. <member name="M:System.Xml.XmlValidatingReader.MoveToFirstAttribute">
  6695. <summary>
  6696. <para> Moves to the first attribute.
  6697. </para>
  6698. </summary>
  6699. <returns>
  6700. <para>
  6701. <see langword="true" /> if an attribute exists (the reader moves to the first attribute); otherwise, <see langword="false " />(the position of the reader does not change).</para>
  6702. </returns>
  6703. </member>
  6704. <member name="M:System.Xml.XmlValidatingReader.MoveToNextAttribute">
  6705. <summary>
  6706. <para> Moves to the next attribute.
  6707. </para>
  6708. </summary>
  6709. <returns>
  6710. <para>
  6711. <see langword="true" /> if there is a next attribute;
  6712. <see langword="false" /> if there are no more attributes.
  6713. </para>
  6714. </returns>
  6715. </member>
  6716. <member name="M:System.Xml.XmlValidatingReader.MoveToElement">
  6717. <summary>
  6718. <para> Moves to the element that contains the current attribute node.
  6719. </para>
  6720. </summary>
  6721. <returns>
  6722. <para>
  6723. <see langword="true" /> if the reader is positioned on an attribute (the reader moves to the element that owns
  6724. the attribute); <see langword="false" /> if the reader is not positioned on an attribute
  6725. (the position of the reader does not change).</para>
  6726. </returns>
  6727. </member>
  6728. <member name="M:System.Xml.XmlValidatingReader.Read">
  6729. <summary>
  6730. <para>Reads the next
  6731. node from the stream.</para>
  6732. </summary>
  6733. <returns>
  6734. <para>
  6735. <see langword="true" /> if the next node was read successfully;
  6736. <see langword="false" /> if there are no more nodes to read.</para>
  6737. </returns>
  6738. </member>
  6739. <member name="M:System.Xml.XmlValidatingReader.Close">
  6740. <summary>
  6741. <para> Changes the <see cref="P:System.Xml.XmlReader.ReadState" />
  6742. to Closed.</para>
  6743. </summary>
  6744. </member>
  6745. <member name="M:System.Xml.XmlValidatingReader.ReadInnerXml">
  6746. <summary>
  6747. <para>Reads all the content, including markup, as a string.</para>
  6748. </summary>
  6749. <returns>
  6750. <para> All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.</para>
  6751. <para>If the current node is neither an element nor attribute, an empty
  6752. string is returned.</para>
  6753. </returns>
  6754. </member>
  6755. <member name="M:System.Xml.XmlValidatingReader.ReadOuterXml">
  6756. <summary>
  6757. <para>Reads the content, including markup, representing this node and all its children.</para>
  6758. </summary>
  6759. <returns>
  6760. <para>If the reader is positioned on an element or an attribute node, this method
  6761. returns all the XML content, including markup, of the current node and all its
  6762. children; otherwise, it returns an empty string.</para>
  6763. </returns>
  6764. </member>
  6765. <member name="M:System.Xml.XmlValidatingReader.ReadString">
  6766. <summary>
  6767. <para>Reads the contents of an element or text node as a string.</para>
  6768. </summary>
  6769. <returns>
  6770. <para>The contents of the element or text node. This can be an empty string if
  6771. the reader is positioned on something other than an element or text node, or
  6772. if there is no more text content to return in the current context.</para>
  6773. <para>
  6774. <see langword="Note:" /> The text node can be either an element or
  6775. an attribute text node.</para>
  6776. </returns>
  6777. </member>
  6778. <member name="M:System.Xml.XmlValidatingReader.LookupNamespace(System.String)">
  6779. <summary>
  6780. <para> Resolves a namespace prefix in the current element's scope.
  6781. </para>
  6782. </summary>
  6783. <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. This string does not have to be atomized. </param>
  6784. <returns>
  6785. <para> The namespace URI to which the prefix maps or <see langword="null" /> if no
  6786. matching prefix is found.
  6787. </para>
  6788. </returns>
  6789. </member>
  6790. <member name="M:System.Xml.XmlValidatingReader.ResolveEntity">
  6791. <summary>
  6792. <para> Resolves the entity reference for
  6793. <see langword="EntityReference" /> nodes.</para>
  6794. </summary>
  6795. </member>
  6796. <member name="M:System.Xml.XmlValidatingReader.ReadAttributeValue">
  6797. <summary>
  6798. <para>Parses the attribute value into one or more
  6799. <see langword="Text" />, <see langword="EntityReference" />, or
  6800. <see langword="EndEntity" /> nodes.</para>
  6801. </summary>
  6802. <returns>
  6803. <para>
  6804. <see langword="true" /> if there are nodes to return.</para>
  6805. <para>
  6806. <see langword="false" /> if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.</para>
  6807. <para>An empty attribute, such as, <c>misc=""</c>, returns <see langword="true" /> with a single node with a value of String.Empty.</para>
  6808. </returns>
  6809. </member>
  6810. <member name="E:System.Xml.XmlValidatingReader.ValidationEventHandler">
  6811. <summary>
  6812. <para>Sets an event handler for receiving information about DTD, XML-Data Reduced (XDR) schema, and XML Schema definition language (XSD) schema
  6813. validation errors.</para>
  6814. </summary>
  6815. </member>
  6816. <member name="P:System.Xml.XmlValidatingReader.NodeType">
  6817. <summary>
  6818. <para> Gets the type of the current node.
  6819. </para>
  6820. </summary>
  6821. </member>
  6822. <member name="P:System.Xml.XmlValidatingReader.Name">
  6823. <summary>
  6824. <para> Gets
  6825. the qualified name of the current node.</para>
  6826. </summary>
  6827. </member>
  6828. <member name="P:System.Xml.XmlValidatingReader.LocalName">
  6829. <summary>
  6830. <para> Gets the local name of the current node.
  6831. </para>
  6832. </summary>
  6833. </member>
  6834. <member name="P:System.Xml.XmlValidatingReader.NamespaceURI">
  6835. <summary>
  6836. <para>Gets the namespace URI (as defined in the W3C Namespace
  6837. specification) of the node on which the reader is positioned. </para>
  6838. </summary>
  6839. </member>
  6840. <member name="P:System.Xml.XmlValidatingReader.Prefix">
  6841. <summary>
  6842. <para> Gets the namespace prefix associated with the current node.
  6843. </para>
  6844. </summary>
  6845. </member>
  6846. <member name="P:System.Xml.XmlValidatingReader.Schemas">
  6847. <summary>
  6848. <para> Gets a <see cref="T:System.Xml.Schema.XmlSchemaCollection" /> to use for validation.</para>
  6849. </summary>
  6850. </member>
  6851. <member name="P:System.Xml.XmlValidatingReader.SchemaType">
  6852. <summary>
  6853. <para>Gets a schema type object.</para>
  6854. </summary>
  6855. </member>
  6856. <member name="P:System.Xml.XmlValidatingReader.HasValue">
  6857. <summary>
  6858. <para>Gets a value indicating whether the current node can have a <see cref="P:System.Xml.XmlValidatingReader.Value" /> .</para>
  6859. </summary>
  6860. </member>
  6861. <member name="P:System.Xml.XmlValidatingReader.Value">
  6862. <summary>
  6863. <para>Gets the text value of the current node.</para>
  6864. </summary>
  6865. </member>
  6866. <member name="P:System.Xml.XmlValidatingReader.Depth">
  6867. <summary>
  6868. <para> Gets the depth of
  6869. the current node in the XML document.
  6870. </para>
  6871. </summary>
  6872. </member>
  6873. <member name="P:System.Xml.XmlValidatingReader.BaseURI">
  6874. <summary>
  6875. <para> Gets the base URI of the current node.
  6876. </para>
  6877. </summary>
  6878. </member>
  6879. <member name="P:System.Xml.XmlValidatingReader.IsEmptyElement">
  6880. <summary>
  6881. <para>Gets a value indicating whether the current node is an
  6882. empty element (for example, <c>&lt;MyElement/&gt;</c>
  6883. ).</para>
  6884. </summary>
  6885. </member>
  6886. <member name="P:System.Xml.XmlValidatingReader.IsDefault">
  6887. <summary>
  6888. <para> Gets a value indicating whether the current node is an
  6889. attribute that was generated from the default value defined
  6890. in the DTD or schema.
  6891. </para>
  6892. </summary>
  6893. </member>
  6894. <member name="P:System.Xml.XmlValidatingReader.QuoteChar">
  6895. <summary>
  6896. <para>
  6897. Gets the quotation mark character used to enclose the value of an attribute
  6898. node.
  6899. </para>
  6900. </summary>
  6901. </member>
  6902. <member name="P:System.Xml.XmlValidatingReader.XmlSpace">
  6903. <summary>
  6904. <para>Gets the current <see langword="xml:space" /> scope.</para>
  6905. </summary>
  6906. </member>
  6907. <member name="P:System.Xml.XmlValidatingReader.XmlLang">
  6908. <summary>
  6909. <para>Gets the current <see langword="xml:lang" /> scope.</para>
  6910. </summary>
  6911. </member>
  6912. <member name="P:System.Xml.XmlValidatingReader.AttributeCount">
  6913. <summary>
  6914. <para>Gets the number of attributes on the current node.</para>
  6915. </summary>
  6916. </member>
  6917. <member name="P:System.Xml.XmlValidatingReader.Reader">
  6918. <summary>
  6919. <para>Gets the <see cref="T:System.Xml.XmlReader" /> used to construct this
  6920. <see langword="XmlValidatingReader" />
  6921. .</para>
  6922. </summary>
  6923. </member>
  6924. <member name="P:System.Xml.XmlValidatingReader.ValidationType">
  6925. <summary>
  6926. <para>Gets a value describing what type of validation to
  6927. perform.</para>
  6928. </summary>
  6929. </member>
  6930. <member name="P:System.Xml.XmlValidatingReader.Item(System.Int32)">
  6931. <summary>
  6932. <para>Gets the value of the attribute with the specified index.</para>
  6933. </summary>
  6934. <param name="i">The index of the attribute.</param>
  6935. </member>
  6936. <member name="P:System.Xml.XmlValidatingReader.Item(System.String)">
  6937. <summary>
  6938. <para>Gets the value of the attribute with the specified name.</para>
  6939. </summary>
  6940. <param name="name">The qualified name of the attribute.</param>
  6941. </member>
  6942. <member name="P:System.Xml.XmlValidatingReader.Item(System.String,System.String)">
  6943. <summary>
  6944. <para>Gets the value of the attribute with the specified local name and namespace URI.</para>
  6945. </summary>
  6946. <param name="name">The local name of the attribute.</param>
  6947. <param name=" namespaceURI">The namespace URI of the attribute.</param>
  6948. </member>
  6949. <member name="P:System.Xml.XmlValidatingReader.EOF">
  6950. <summary>
  6951. <para> Gets a
  6952. value indicating whether the reader is positioned at the end of the
  6953. stream.
  6954. </para>
  6955. </summary>
  6956. </member>
  6957. <member name="P:System.Xml.XmlValidatingReader.ReadState">
  6958. <summary>
  6959. <para>
  6960. Gets the state of the reader.
  6961. </para>
  6962. </summary>
  6963. </member>
  6964. <member name="P:System.Xml.XmlValidatingReader.NameTable">
  6965. <summary>
  6966. <para>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this
  6967. implementation.</para>
  6968. </summary>
  6969. </member>
  6970. <member name="P:System.Xml.XmlValidatingReader.EntityHandling">
  6971. <summary>
  6972. <para>Gets or sets a value that specifies how the reader handles entities.</para>
  6973. </summary>
  6974. </member>
  6975. <member name="P:System.Xml.XmlValidatingReader.Encoding">
  6976. <summary>
  6977. <para>Gets the encoding attribute for the
  6978. document.</para>
  6979. </summary>
  6980. </member>
  6981. <member name="P:System.Xml.XmlValidatingReader.XmlResolver">
  6982. <summary>
  6983. <para> Sets the <see cref="T:System.Xml.XmlResolver" /> used for resolving external DTD and schema location
  6984. references. The <see langword="XmlResolver" /> is also used to
  6985. handle any import or include elements
  6986. found in XML Schema definition language (XSD) schemas.</para>
  6987. </summary>
  6988. </member>
  6989. <member name="P:System.Xml.XmlValidatingReader.CanResolveEntity">
  6990. <summary>
  6991. <para>Gets a value indicating whether this reader can parse
  6992. and resolve entities.</para>
  6993. </summary>
  6994. </member>
  6995. <member name="P:System.Xml.XmlValidatingReader.Namespaces">
  6996. <summary>
  6997. <para> Gets or sets a value indicating whether to do namespace support.
  6998. </para>
  6999. </summary>
  7000. </member>
  7001. <member name="T:System.Xml.XmlWhitespace">
  7002. <summary>
  7003. <para>Represents white space in element content.</para>
  7004. </summary>
  7005. </member>
  7006. <member name="M:System.Xml.XmlWhitespace.CloneNode(System.Boolean)">
  7007. <summary>
  7008. <para>Creates a duplicate of this node.</para>
  7009. </summary>
  7010. <param name="deep">
  7011. <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself. For white space nodes, the cloned node always includes the data value, regardless of the parameter setting.</param>
  7012. <returns>
  7013. <para>The cloned node.</para>
  7014. </returns>
  7015. </member>
  7016. <member name="M:System.Xml.XmlWhitespace.WriteTo(System.Xml.XmlWriter)">
  7017. <summary>
  7018. <para>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" /> .</para>
  7019. </summary>
  7020. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  7021. </member>
  7022. <member name="M:System.Xml.XmlWhitespace.WriteContentTo(System.Xml.XmlWriter)">
  7023. <summary>
  7024. <para>Saves all the children of the node to the specified
  7025. <see cref="T:System.Xml.XmlWriter" /> .</para>
  7026. </summary>
  7027. <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
  7028. </member>
  7029. <member name="P:System.Xml.XmlWhitespace.Name">
  7030. <summary>
  7031. <para>Gets the qualified name of the node.</para>
  7032. </summary>
  7033. </member>
  7034. <member name="P:System.Xml.XmlWhitespace.LocalName">
  7035. <summary>
  7036. <para> Gets the local name of the node.</para>
  7037. </summary>
  7038. </member>
  7039. <member name="P:System.Xml.XmlWhitespace.NodeType">
  7040. <summary>
  7041. <para> Gets the type of the node.</para>
  7042. </summary>
  7043. </member>
  7044. <member name="P:System.Xml.XmlWhitespace.Value">
  7045. <summary>
  7046. <para>Gets or sets the value of the node.</para>
  7047. </summary>
  7048. </member>
  7049. <member name="T:System.Xml.Formatting">
  7050. <summary>
  7051. <para> Specifies formatting options for the <see cref="T:System.Xml.XmlTextWriter" /> .
  7052. </para>
  7053. </summary>
  7054. </member>
  7055. <member name="F:System.Xml.Formatting.None">
  7056. <summary>
  7057. <para> No special formatting is applied. This is the default.
  7058. </para>
  7059. </summary>
  7060. </member>
  7061. <member name="F:System.Xml.Formatting.Indented">
  7062. <summary>
  7063. <para> Causes child elements to be indented
  7064. according to the <see cref="P:System.Xml.XmlTextWriter.Indentation" /> and <see cref="P:System.Xml.XmlTextWriter.IndentChar" /> settings. This option indents element
  7065. content only; mixed content is not affected. For the XML 1.0
  7066. definitions of
  7067. these terms, see the W3C documentation (http://www.w3.org/TR/1998/REC-xml-19980210#sec-element-content and http://www.w3.org/TR/1998/REC-xml-19980210#sec-mixed-content).</para>
  7068. </summary>
  7069. </member>
  7070. <member name="T:System.Xml.WriteState">
  7071. <summary>
  7072. <para> Specifies the state of the <see cref="T:System.Xml.XmlWriter" /> .
  7073. </para>
  7074. </summary>
  7075. </member>
  7076. <member name="F:System.Xml.WriteState.Start">
  7077. <summary>
  7078. <para> A Write method has not been called.
  7079. </para>
  7080. </summary>
  7081. </member>
  7082. <member name="F:System.Xml.WriteState.Prolog">
  7083. <summary>
  7084. <para> The prolog is being written.
  7085. </para>
  7086. </summary>
  7087. </member>
  7088. <member name="F:System.Xml.WriteState.Element">
  7089. <summary>
  7090. <para> An element start tag is being written.
  7091. </para>
  7092. </summary>
  7093. </member>
  7094. <member name="F:System.Xml.WriteState.Attribute">
  7095. <summary>
  7096. <para> An attribute value is being written.
  7097. </para>
  7098. </summary>
  7099. </member>
  7100. <member name="F:System.Xml.WriteState.Content">
  7101. <summary>
  7102. <para> The element content is being written.
  7103. </para>
  7104. </summary>
  7105. </member>
  7106. <member name="F:System.Xml.WriteState.Closed">
  7107. <summary>
  7108. <para> The <see cref="M:System.Xml.XmlWriter.Close" /> method has been called.
  7109. </para>
  7110. </summary>
  7111. </member>
  7112. <member name="T:System.Xml.XPath.XPathExpression">
  7113. <summary>
  7114. <para> Encapsulates a compiled XPath expression. This class is returned as a
  7115. result of a call to <see cref="M:System.Xml.XPath.XPathNavigator.Compile(System.String)" /> and is used by the <see cref="M:System.Xml.XPath.XPathNavigator.Select(System.Xml.XPath.XPathExpression)" />, <see cref="M:System.Xml.XPath.XPathNavigator.Evaluate(System.Xml.XPath.XPathExpression)" /> and <see cref="M:System.Xml.XPath.XPathNavigator.Matches(System.Xml.XPath.XPathExpression)" /> methods.</para>
  7116. </summary>
  7117. </member>
  7118. <member name="M:System.Xml.XPath.XPathExpression.AddSort(System.Object,System.Collections.IComparer)">
  7119. <summary>
  7120. <para> Sorts the nodes
  7121. selected by the <see langword="XPathExpression" />,
  7122. according to the <see cref="T:System.Collections.IComparer" />
  7123. interface.</para>
  7124. </summary>
  7125. <param name="expr">
  7126. <para>An expression representing the sort key. This can be a string or an <see langword="XPathExpression" /> object. The result of this expression is converted to a string, according to the XPath specification, for comparison. In an XSLT stylesheet, if xsl:sort is used, but no select expression is specified, then string(.) is used by default.</para>
  7127. </param>
  7128. <param name=" comparer">A class derived from the <see langword="IComparer" /> interface to use for the data type comparison.</param>
  7129. </member>
  7130. <member name="M:System.Xml.XPath.XPathExpression.AddSort(System.Object,System.Xml.XPath.XmlSortOrder,System.Xml.XPath.XmlCaseOrder,System.String,System.Xml.XPath.XmlDataType)">
  7131. <summary>
  7132. <para> Sorts the nodes selected by the
  7133. <see langword="XPathExpression" /> according to the supplied parameters.</para>
  7134. </summary>
  7135. <param name="expr">
  7136. <para>An expression representing the sort key. This can be a string or an <see langword="XPathExpression" /> object. The result of this expression is converted to a string, according to the XPath specification, for comparison. In an XSLT stylesheet, if <see langword="xsl:sort" /> is used, but no select expression is specified, then string(.) is used by default.</para>
  7137. </param>
  7138. <param name=" order">A <see cref="T:System.Xml.XPath.XmlSortOrder" /> value indicating the sort order.</param>
  7139. <param name=" caseOrder">A <see cref="T:System.Xml.XPath.XmlCaseOrder" /> value indicating how to sort upper/lower case letters. This is language dependent, providing a <paramref name="lang" /> parameter is supplied.</param>
  7140. <param name=" lang">
  7141. <para>The language to use for comparison. Uses the <see cref="T:System.Globalization.CultureInfo" /> class that can be passed to the <see langword="String.Compare" /> method for the language types, for example, "us-en" for US English. If an empty string is specified, the system environment is used to determine the <see langword="CultureInfo" /> .</para>
  7142. </param>
  7143. <param name=" dataType">
  7144. <see cref="T:System.Xml.XPath.XmlDataType" />indicating sort order for data type.</param>
  7145. </member>
  7146. <member name="M:System.Xml.XPath.XPathExpression.Clone">
  7147. <summary>
  7148. <para> Clones the <see langword="XPathExpression" />.</para>
  7149. </summary>
  7150. <returns>
  7151. <para>A new <see langword="XPathExpression" /> object.</para>
  7152. </returns>
  7153. </member>
  7154. <member name="M:System.Xml.XPath.XPathExpression.SetContext(System.Xml.XmlNamespaceManager)">
  7155. <summary>
  7156. <para> Specifies the <see cref="T:System.Xml.XmlNamespaceManager" />
  7157. to use for resolving namespaces.</para>
  7158. </summary>
  7159. <param name="nsManager">The <see langword="XmlNamespaceManager" /> object used for resolving namespaces.</param>
  7160. </member>
  7161. <member name="P:System.Xml.XPath.XPathExpression.Expression">
  7162. <summary>
  7163. <para> Gets a string representation of the
  7164. <see langword="XPathExpression" />
  7165. .</para>
  7166. </summary>
  7167. <summary>
  7168. <para> When overridden in a derived class, gets a string representation of the
  7169. <see langword="XPathExpression" />.</para>
  7170. </summary>
  7171. </member>
  7172. <member name="P:System.Xml.XPath.XPathExpression.ReturnType">
  7173. <summary>
  7174. <para> Gets the result type
  7175. of the <see langword="XPathExpression" /> as defined
  7176. by the W3C XPath specification.</para>
  7177. </summary>
  7178. </member>
  7179. <member name="T:System.Xml.Xsl.XsltContext">
  7180. <summary>
  7181. <para>Encapsulates the current execution context of the XSLT processor allowing XPath
  7182. to resolve functions, parameters, and namespaces within XPath expressions.</para>
  7183. </summary>
  7184. </member>
  7185. <member name="M:System.Xml.Xsl.XsltContext.#ctor(System.Xml.NameTable)">
  7186. <summary>
  7187. <para>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltContext" /> class with the specified <see cref="T:System.Xml.NameTable" /> .</para>
  7188. </summary>
  7189. <param name="table">The <see langword="NameTable" /> to use.</param>
  7190. </member>
  7191. <member name="M:System.Xml.Xsl.XsltContext.#ctor">
  7192. <summary>
  7193. <para>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltContext" />
  7194. class.</para>
  7195. </summary>
  7196. </member>
  7197. <member name="M:System.Xml.Xsl.XsltContext.ResolveVariable(System.String,System.String)">
  7198. <summary>
  7199. <para>When overridden in a derived class, resolves variable reference and returns an <see cref="T:System.Xml.Xsl.IXsltContextVariable" />
  7200. representing the variable.</para>
  7201. </summary>
  7202. <param name="prefix">The prefix of the variable as it appears in the XPath expression.</param>
  7203. <param name=" name">The name of the variable.</param>
  7204. <returns>
  7205. <para>An <see langword="IXsltContextVariable" /> representing
  7206. the variable at runtime.</para>
  7207. </returns>
  7208. </member>
  7209. <member name="M:System.Xml.Xsl.XsltContext.ResolveFunction(System.String,System.String,System.Xml.XPath.XPathResultType[])">
  7210. <summary>
  7211. <para>When overridden in a derived class, resolves a function
  7212. reference and returns an <see cref="T:System.Xml.Xsl.IXsltContextFunction" /> representing the
  7213. function. The <see langword="IXsltContextFunction" />
  7214. is used at execution time to get the
  7215. return value of the function.</para>
  7216. </summary>
  7217. <param name="prefix">The prefix of the function as it appears in the XPath expression.</param>
  7218. <param name=" name">The name of the function.</param>
  7219. <param name=" ArgTypes">An array of argument types for the function being resolved. This allows you to select between methods with the same name (for example, overloaded methods).</param>
  7220. <returns>
  7221. <para>An <see langword="IXsltContextFunction" /> representing
  7222. the function.</para>
  7223. </returns>
  7224. </member>
  7225. <member name="M:System.Xml.Xsl.XsltContext.PreserveWhitespace(System.Xml.XPath.XPathNavigator)">
  7226. <summary>
  7227. <para>When overridden in a derived class, evaluates whether to preserve
  7228. white space nodes or strip them for the given context.</para>
  7229. </summary>
  7230. <param name="node">The white space node that is to be preserved or stripped in the current context.</param>
  7231. <returns>
  7232. <para>Returns <see langword="true" /> if
  7233. the white space
  7234. is to be preserved or <see langword="false" /> if the white space is to be
  7235. stripped.</para>
  7236. </returns>
  7237. </member>
  7238. <member name="M:System.Xml.Xsl.XsltContext.CompareDocument(System.String,System.String)">
  7239. <summary>
  7240. <para>When overridden in a derived class, compares the base URIs of two documents based upon the
  7241. order the documents were loaded by the XSLT processor (that is the <see cref="T:System.Xml.Xsl.XslTransform" /> class).</para>
  7242. </summary>
  7243. <param name="baseUri">The base URI of the first document to compare.</param>
  7244. <param name=" nextbaseUri">The base URI of the second document to compare.</param>
  7245. <returns>
  7246. <para>An integer value describing the relative order of the
  7247. two base URIs. <see langword="-1" /> if
  7248. <paramref name="baseUri" /> occurs before <paramref name="nextbaseUri" />, <see langword="0" /> if the
  7249. two base URIs are identical and <see langword="1" /> if <paramref name="baseUri" /> occurs
  7250. after <paramref name="nextbaseUri" />.</para>
  7251. </returns>
  7252. </member>
  7253. <member name="P:System.Xml.Xsl.XsltContext.Whitespace">
  7254. <summary>
  7255. <para>When overridden in a derived class, gets a value indicating whether to include white space nodes in
  7256. the output.</para>
  7257. </summary>
  7258. </member>
  7259. <member name="F:System.Xml.XPath.Querytype.Constant">
  7260. <summary>
  7261. <para>[To be supplied.]</para>
  7262. </summary>
  7263. </member>
  7264. <member name="F:System.Xml.XPath.Querytype.Child">
  7265. <summary>
  7266. <para>[To be supplied.]</para>
  7267. </summary>
  7268. </member>
  7269. <member name="F:System.Xml.XPath.Querytype.Attribute">
  7270. <summary>
  7271. <para>[To be supplied.]</para>
  7272. </summary>
  7273. </member>
  7274. <member name="F:System.Xml.XPath.Querytype.Descendant">
  7275. <summary>
  7276. <para>[To be supplied.]</para>
  7277. </summary>
  7278. </member>
  7279. <member name="F:System.Xml.XPath.Querytype.Ancestor">
  7280. <summary>
  7281. <para>[To be supplied.]</para>
  7282. </summary>
  7283. </member>
  7284. <member name="F:System.Xml.XPath.Querytype.Sort">
  7285. <summary>
  7286. <para>[To be supplied.]</para>
  7287. </summary>
  7288. </member>
  7289. <member name="F:System.Xml.XPath.Querytype.None">
  7290. <summary>
  7291. <para>[To be supplied.]</para>
  7292. </summary>
  7293. </member>
  7294. <member name="M:System.Xml.XPath.XPathArrayIterator.#ctor(System.Collections.ArrayList)">
  7295. </member>
  7296. <member name="M:System.Xml.XPath.XPathArrayIterator.#ctor(System.Xml.XPath.XPathArrayIterator)">
  7297. </member>
  7298. <member name="M:System.Xml.XPath.XPathArrayIterator.Clone">
  7299. </member>
  7300. <member name="M:System.Xml.XPath.XPathArrayIterator.MoveNext">
  7301. </member>
  7302. <member name="M:System.Xml.XPath.XPathArrayIterator.Reset">
  7303. </member>
  7304. <member name="P:System.Xml.XPath.XPathArrayIterator.Current">
  7305. </member>
  7306. <member name="P:System.Xml.XPath.XPathArrayIterator.CurrentPosition">
  7307. </member>
  7308. <member name="P:System.Xml.XPath.XPathArrayIterator.Count">
  7309. </member>
  7310. <member name="T:System.Xml.XPath.XPathDocument">
  7311. <summary>
  7312. <para>Provides a fast and performant read-only cache for XML document processing using XSLT.</para>
  7313. </summary>
  7314. </member>
  7315. <member name="M:System.Xml.XPath.XPathDocument.#ctor(System.Xml.XmlReader,System.Xml.XmlSpace)">
  7316. <summary>
  7317. <para>Initializes a new instance of the
  7318. <see langword="XPathDocument" /> class. </para>
  7319. </summary>
  7320. <param name=" reader">An <see cref="T:System.Xml.XmlReader" /> containing the data to load.</param>
  7321. <param name="space">An <see cref="T:System.Xml.XmlSpace" /> value indicating whether to preserve white space. Setting this to XmlSpace.Default preserves only significant white space; XmlSpace.Preserve preserves all whitespace. </param>
  7322. </member>
  7323. <member name="M:System.Xml.XPath.XPathDocument.#ctor(System.Xml.XmlReader)">
  7324. <summary>
  7325. <para>Initializes a new instance of the
  7326. <see langword="XPathDocument" /> class.</para>
  7327. </summary>
  7328. <param name="reader">An <see cref="T:System.Xml.XmlReader" /> containing the data to load.</param>
  7329. </member>
  7330. <member name="M:System.Xml.XPath.XPathDocument.#ctor(System.IO.TextReader)">
  7331. <summary>
  7332. <para>Initializes a new instance of the
  7333. <see langword="XPathDocument" /> class.</para>
  7334. </summary>
  7335. <param name="reader">A <see cref="T:System.IO.TextReader" /> containing the data to load.</param>
  7336. </member>
  7337. <member name="M:System.Xml.XPath.XPathDocument.#ctor(System.IO.Stream)">
  7338. <summary>
  7339. <para>Initializes a new instance of the
  7340. <see langword="XPathDocument" /> class.</para>
  7341. </summary>
  7342. <param name="stream">The stream containing the data to load.</param>
  7343. </member>
  7344. <member name="M:System.Xml.XPath.XPathDocument.#ctor(System.String)">
  7345. <summary>
  7346. <para>Initializes a new instance of the
  7347. <see langword="XPathDocument" /> class.</para>
  7348. </summary>
  7349. <param name="uri">A URI that specifies a file containing the data to load.</param>
  7350. </member>
  7351. <member name="M:System.Xml.XPath.XPathDocument.#ctor(System.String,System.Xml.XmlSpace)">
  7352. <summary>
  7353. <para>Initializes a new instance of the <see langword="XPathDocument" /> class. </para>
  7354. </summary>
  7355. <param name="uri">A URI that specifies a file containing the data to load.</param>
  7356. <param name=" space">An <see cref="T:System.Xml.XmlSpace" /> value indicating whether to preserve whitespace. Setting this to XmlSpace.Default preserves only significant white space; XmlSpace.Preserve preserves all white space.</param>
  7357. </member>
  7358. <member name="M:System.Xml.XPath.XPathDocument.CreateNavigator">
  7359. <summary>
  7360. <para>Creates an <see cref="T:System.Xml.XPath.XPathNavigator" /> for navigating this document.</para>
  7361. </summary>
  7362. <returns>
  7363. <para>An <see cref="T:System.Xml.XPath.XPathNavigator" />
  7364. object.</para>
  7365. </returns>
  7366. </member>
  7367. <member name="M:System.Xml.XPath.XPathEmptyIterator.#ctor">
  7368. </member>
  7369. <member name="M:System.Xml.XPath.XPathEmptyIterator.Clone">
  7370. </member>
  7371. <member name="M:System.Xml.XPath.XPathEmptyIterator.MoveNext">
  7372. </member>
  7373. <member name="M:System.Xml.XPath.XPathEmptyIterator.Reset">
  7374. </member>
  7375. <member name="P:System.Xml.XPath.XPathEmptyIterator.Current">
  7376. </member>
  7377. <member name="P:System.Xml.XPath.XPathEmptyIterator.CurrentPosition">
  7378. </member>
  7379. <member name="P:System.Xml.XPath.XPathEmptyIterator.Count">
  7380. </member>
  7381. <member name="T:System.Xml.XPath.XPathException">
  7382. <summary>
  7383. <para> The exception that is thrown when an error occurs when processing an
  7384. XPath expression.
  7385. </para>
  7386. </summary>
  7387. </member>
  7388. <member name="M:System.Xml.XPath.XPathException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  7389. <summary>
  7390. <para>Initializes a new instance of the
  7391. <see langword="XPathException" /> class using the information in the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects.</para>
  7392. </summary>
  7393. <param name="info">The <see langword="SerializationInfo" /> object containing all the properties of an <see langword="XPathException" />.</param>
  7394. <param name=" context">The <see langword="StreamingContext" /> object.</param>
  7395. </member>
  7396. <member name="M:System.Xml.XPath.XPathException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  7397. <summary>
  7398. <para>Streams all the <see langword="XPathException" /> properties
  7399. into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class for the given <see cref="T:System.Runtime.Serialization.StreamingContext" />.</para>
  7400. </summary>
  7401. <param name="info">The <see langword="SerializationInfo" /> object.</param>
  7402. <param name=" context">The <see langword="StreamingContext" /> object.</param>
  7403. </member>
  7404. <member name="M:System.Xml.XPath.XPathException.#ctor(System.String,System.Exception)">
  7405. <summary>
  7406. <para>Initializes a new instance of the
  7407. <see langword="XPathException" /> class using the message and <see cref="T:System.Exception" /> object.</para>
  7408. </summary>
  7409. <param name="message">The description of the error condition.</param>
  7410. <param name="innerException">The <see langword="Exception" /> which threw the <see langword="XPathException" />, if any. This value can be <see langword="null" />.</param>
  7411. </member>
  7412. <member name="P:System.Xml.XPath.XPathException.Message">
  7413. <summary>
  7414. Gets the error message describing the
  7415. exception.
  7416. </summary>
  7417. </member>
  7418. <member name="T:System.Xml.XPath.XmlSortOrder">
  7419. <summary>
  7420. <para>Specifies the sort order.</para>
  7421. </summary>
  7422. </member>
  7423. <member name="F:System.Xml.XPath.XmlSortOrder.Ascending">
  7424. <summary>
  7425. <para>Nodes are sorted in ascending order. For example, if the
  7426. numbers 1,2,3,4 were being sorted in an ascending order, they would appear
  7427. as 1,2,3,4.</para>
  7428. </summary>
  7429. </member>
  7430. <member name="F:System.Xml.XPath.XmlSortOrder.Descending">
  7431. <summary>
  7432. <para>Nodes are sorted in descending order. For example,
  7433. if the numbers 1,2,3,4 were being sorted in an descending order, they would
  7434. appear as, 4,3,2,1.</para>
  7435. </summary>
  7436. </member>
  7437. <member name="T:System.Xml.XPath.XmlCaseOrder">
  7438. <summary>
  7439. <para> Specifies the sort
  7440. order for upper and lower case letters.</para>
  7441. </summary>
  7442. </member>
  7443. <member name="F:System.Xml.XPath.XmlCaseOrder.None">
  7444. <summary>
  7445. <para> Ignore the case.</para>
  7446. </summary>
  7447. </member>
  7448. <member name="F:System.Xml.XPath.XmlCaseOrder.UpperFirst">
  7449. <summary>
  7450. Upper case letters are sorted before lower
  7451. case letters.
  7452. </summary>
  7453. </member>
  7454. <member name="F:System.Xml.XPath.XmlCaseOrder.LowerFirst">
  7455. <summary>
  7456. Lower case letters are sorted before upper
  7457. case letters.
  7458. </summary>
  7459. </member>
  7460. <member name="T:System.Xml.XPath.XmlDataType">
  7461. <summary>
  7462. <para>Specifies the data type used to determine sort order.</para>
  7463. </summary>
  7464. </member>
  7465. <member name="F:System.Xml.XPath.XmlDataType.Text">
  7466. <summary>
  7467. Values are sorted alphabetically.
  7468. </summary>
  7469. </member>
  7470. <member name="F:System.Xml.XPath.XmlDataType.Number">
  7471. <summary>
  7472. Values are sorted numerically.
  7473. </summary>
  7474. </member>
  7475. <member name="T:System.Xml.XPath.XPathResultType">
  7476. <summary>
  7477. <para> Specifies the return type of the XPath expression.</para>
  7478. </summary>
  7479. </member>
  7480. <member name="F:System.Xml.XPath.XPathResultType.Number">
  7481. <summary>
  7482. <para>A numeric value.</para>
  7483. </summary>
  7484. </member>
  7485. <member name="F:System.Xml.XPath.XPathResultType.String">
  7486. <summary>
  7487. <para>A string value.</para>
  7488. </summary>
  7489. </member>
  7490. <member name="F:System.Xml.XPath.XPathResultType.Boolean">
  7491. <summary>
  7492. <para>Boolean value <see langword="true" /> or <see langword="false" />.</para>
  7493. </summary>
  7494. </member>
  7495. <member name="F:System.Xml.XPath.XPathResultType.NodeSet">
  7496. <summary>
  7497. A node collection.
  7498. </summary>
  7499. </member>
  7500. <member name="F:System.Xml.XPath.XPathResultType.Navigator">
  7501. <summary>
  7502. <para>A tree fragment.</para>
  7503. </summary>
  7504. </member>
  7505. <member name="F:System.Xml.XPath.XPathResultType.Any">
  7506. <summary>
  7507. Any of the XPath node types.
  7508. </summary>
  7509. </member>
  7510. <member name="F:System.Xml.XPath.XPathResultType.Error">
  7511. <summary>
  7512. The expression does not evaluate to the correct XPath
  7513. type.
  7514. </summary>
  7515. </member>
  7516. <member name="T:System.Xml.XPath.XPathNamespaceScope">
  7517. <summary>
  7518. <para>Defines the namespace scope. The enumeration can be
  7519. passed to the <see cref="M:System.Xml.XPath.XPathNavigator.MoveToFirstNamespace" qualify="true" />
  7520. and <see cref="M:System.Xml.XPath.XPathNavigator.MoveToNextNamespace" qualify="true" /> methods to specify the type of namespace node
  7521. to move to.</para>
  7522. </summary>
  7523. </member>
  7524. <member name="F:System.Xml.XPath.XPathNamespaceScope.All">
  7525. <summary>
  7526. <para> Returns all namespaces defined in the scope of the
  7527. current node. This includes the xmlns:xml namespace which is always
  7528. declared implicitly. The order of the namespaces returned is not defined.</para>
  7529. </summary>
  7530. </member>
  7531. <member name="F:System.Xml.XPath.XPathNamespaceScope.ExcludeXml">
  7532. <summary>
  7533. <para> Returns all namespaces defined in the
  7534. scope of the current node, excluding the xmlns:xml namespace, which
  7535. is always declared implicitly. The order of the namespaces returned is not defined.</para>
  7536. </summary>
  7537. </member>
  7538. <member name="F:System.Xml.XPath.XPathNamespaceScope.Local">
  7539. <summary>
  7540. <para> Returns all namespaces that are defined locally at
  7541. the current node.</para>
  7542. </summary>
  7543. </member>
  7544. <member name="T:System.Xml.XPath.XPathNodeType">
  7545. <summary>
  7546. <para>Specifies the XPath node types that can be returned from the <see cref="T:System.Xml.XPath.XPathNavigator" />.</para>
  7547. <para>For more information on XPath node types, see the Data Model section of the
  7548. W3C XML Path Language (XPath) Version 1.0 Recommendation located at
  7549. http://www.w3.org/TR/xpath#data-model.</para>
  7550. </summary>
  7551. </member>
  7552. <member name="F:System.Xml.XPath.XPathNodeType.Root">
  7553. <summary>
  7554. <para>The root of the node tree.</para>
  7555. </summary>
  7556. </member>
  7557. <member name="F:System.Xml.XPath.XPathNodeType.Element">
  7558. <summary>
  7559. <para> An element in the node tree.</para>
  7560. </summary>
  7561. </member>
  7562. <member name="F:System.Xml.XPath.XPathNodeType.Attribute">
  7563. <summary>
  7564. An attribute in the node tree.
  7565. </summary>
  7566. </member>
  7567. <member name="F:System.Xml.XPath.XPathNodeType.Namespace">
  7568. <summary>
  7569. <para>
  7570. A namespace node.</para>
  7571. </summary>
  7572. </member>
  7573. <member name="F:System.Xml.XPath.XPathNodeType.Text">
  7574. <summary>
  7575. <para> The text content of an element.</para>
  7576. </summary>
  7577. </member>
  7578. <member name="F:System.Xml.XPath.XPathNodeType.SignificantWhitespace">
  7579. <summary>
  7580. <para>A node with white space characters and xml:space set to preserve.</para>
  7581. </summary>
  7582. </member>
  7583. <member name="F:System.Xml.XPath.XPathNodeType.Whitespace">
  7584. <summary>
  7585. <para>A node with only white space characters and no significant white
  7586. space.</para>
  7587. </summary>
  7588. </member>
  7589. <member name="F:System.Xml.XPath.XPathNodeType.ProcessingInstruction">
  7590. <summary>
  7591. <para>A processing instruction. <see langword="Important:" /> This does not include XML declarations, which are
  7592. not visible to the <see cref="T:System.Xml.XPath.XPathNavigator" /> .</para>
  7593. </summary>
  7594. </member>
  7595. <member name="F:System.Xml.XPath.XPathNodeType.Comment">
  7596. <summary>
  7597. A comment.
  7598. </summary>
  7599. </member>
  7600. <member name="F:System.Xml.XPath.XPathNodeType.All">
  7601. <summary>
  7602. <para>All node types.</para>
  7603. </summary>
  7604. </member>
  7605. <member name="M:System.Xml.XPath.XPathSingletonIterator.#ctor(System.Xml.XPath.XPathNavigator)">
  7606. </member>
  7607. <member name="M:System.Xml.XPath.XPathSingletonIterator.MakeNewCopy">
  7608. </member>
  7609. <member name="M:System.Xml.XPath.XPathSingletonIterator.Clone">
  7610. </member>
  7611. <member name="M:System.Xml.XPath.XPathSingletonIterator.MoveNext">
  7612. </member>
  7613. <member name="M:System.Xml.XPath.XPathSingletonIterator.Reset">
  7614. </member>
  7615. <member name="P:System.Xml.XPath.XPathSingletonIterator.Current">
  7616. </member>
  7617. <member name="P:System.Xml.XPath.XPathSingletonIterator.CurrentPosition">
  7618. </member>
  7619. <member name="P:System.Xml.XPath.XPathSingletonIterator.Count">
  7620. </member>
  7621. <member name="M:System.Xml.Xsl.Debugger.IStackFrame.GetVariablesCount">
  7622. </member>
  7623. <member name="M:System.Xml.Xsl.Debugger.IStackFrame.GetVariable(System.Int32)">
  7624. </member>
  7625. <member name="M:System.Xml.Xsl.Debugger.IStackFrame.GetVariableValue(System.Int32)">
  7626. </member>
  7627. <member name="P:System.Xml.Xsl.Debugger.IStackFrame.Instruction">
  7628. </member>
  7629. <member name="P:System.Xml.Xsl.Debugger.IStackFrame.NodeSet">
  7630. </member>
  7631. <member name="T:System.Xml.Xsl.IXsltContextVariable">
  7632. <summary>
  7633. <para>Provides an interface to a given variable that is defined in the
  7634. stylesheet during runtime execution.</para>
  7635. </summary>
  7636. </member>
  7637. <member name="M:System.Xml.Xsl.IXsltContextVariable.Evaluate(System.Xml.Xsl.XsltContext)">
  7638. <summary>
  7639. <para> Evaluates the variable at runtime
  7640. and returns an object that represents the value of the variable.</para>
  7641. </summary>
  7642. <param name="xsltContext">An <see cref="T:System.Xml.Xsl.XsltContext" /> representing the execution context of the variable.</param>
  7643. <returns>
  7644. <para>An <see cref="T:System.Object" /> representing the value of the
  7645. variable. Possible return types include number, string, Boolean, document
  7646. fragment or node set.</para>
  7647. </returns>
  7648. </member>
  7649. <member name="P:System.Xml.Xsl.IXsltContextVariable.IsLocal">
  7650. <summary>
  7651. <para> Gets a value indicating whether the variable is
  7652. local.</para>
  7653. </summary>
  7654. </member>
  7655. <member name="P:System.Xml.Xsl.IXsltContextVariable.IsParam">
  7656. <summary>
  7657. <para>Gets a value indicating whether the variable is an Extensible Stylesheet Language Transformation (XSLT) parameter. This can be a parameter to
  7658. a stylesheet or a template.</para>
  7659. </summary>
  7660. </member>
  7661. <member name="P:System.Xml.Xsl.IXsltContextVariable.VariableType">
  7662. <summary>
  7663. <para>Gets the <see cref="T:System.Xml.XPath.XPathResultType" /> representing the XPath type
  7664. of the variable.</para>
  7665. </summary>
  7666. </member>
  7667. <member name="P:System.Xml.Xsl.Debugger.IVariable.Instruction">
  7668. </member>
  7669. <member name="P:System.Xml.Xsl.Debugger.IVariable.IsLocal">
  7670. </member>
  7671. <member name="P:System.Xml.Xsl.Debugger.IVariable.IsParam">
  7672. </member>
  7673. <member name="M:System.Xml.Xsl.InputScopeManager.ResolveXmlNamespace(System.String)">
  7674. <summary>
  7675. <para>[To be supplied.]</para>
  7676. </summary>
  7677. </member>
  7678. <member name="M:System.Xml.Xsl.Debugger.IXsltProcessor.GetStackFrame(System.Int32)">
  7679. </member>
  7680. <member name="P:System.Xml.Xsl.Debugger.IXsltProcessor.StackDepth">
  7681. </member>
  7682. <member name="T:System.Xml.Xsl.XsltArgumentList">
  7683. <summary>
  7684. <para> Contains a variable number of arguments
  7685. which are either XSLT parameters or extension objects.</para>
  7686. </summary>
  7687. </member>
  7688. <member name="M:System.Xml.Xsl.XsltArgumentList.#ctor">
  7689. <summary>
  7690. Implements a new instance of the
  7691. <see langword="XsltArgumentList" />.
  7692. </summary>
  7693. </member>
  7694. <member name="M:System.Xml.Xsl.XsltArgumentList.GetParam(System.String,System.String)">
  7695. <summary>
  7696. <para>Gets the parameter associated with the namespace qualified
  7697. name.</para>
  7698. </summary>
  7699. <param name="name">The name of the parameter. <see langword="XsltArgumentList" /> does not check to ensure the name passed is a valid local name; however, the name cannot be <see langword="null" /> .</param>
  7700. <param name=" namespaceUri">The namespace URI associated with the parameter.</param>
  7701. <returns>
  7702. <para>The parameter object or
  7703. <see langword="null" /> if one was not found.</para>
  7704. </returns>
  7705. </member>
  7706. <member name="M:System.Xml.Xsl.XsltArgumentList.GetExtensionObject(System.String)">
  7707. <summary>
  7708. <para>Gets the object associated with the given namespace.</para>
  7709. </summary>
  7710. <param name="namespaceUri">The namespace URI of the object. </param>
  7711. <returns>
  7712. <para>The namespace URI object or <see langword="null" /> if one
  7713. was not found.</para>
  7714. </returns>
  7715. </member>
  7716. <member name="M:System.Xml.Xsl.XsltArgumentList.AddParam(System.String,System.String,System.Object)">
  7717. <summary>
  7718. <para>Adds a parameter to the <see langword="XsltArgumentList" />
  7719. and associates it with the namespace qualified name.</para>
  7720. </summary>
  7721. <param name="name">The name to associate with the parameter.</param>
  7722. <param name=" namespaceUri">The namespace URI to associate with the parameter. To use the default namespace, specify an empty string.</param>
  7723. <param name=" parameter">The parameter value or object to add to the list.</param>
  7724. </member>
  7725. <member name="M:System.Xml.Xsl.XsltArgumentList.AddExtensionObject(System.String,System.Object)">
  7726. <summary>
  7727. <para>Adds a new object to the
  7728. <see langword="XsltArgumentList" /> and
  7729. associates it with the namespace URI.</para>
  7730. </summary>
  7731. <param name="namespaceUri">The namespace URI to associate with the object. To use the default namespace, specify an empty string.</param>
  7732. <param name=" extension">The object to add to the list.</param>
  7733. </member>
  7734. <member name="M:System.Xml.Xsl.XsltArgumentList.RemoveParam(System.String,System.String)">
  7735. <summary>
  7736. <para>Removes the parameter from the
  7737. <see langword="XsltArgumentList" />.</para>
  7738. </summary>
  7739. <param name="name">The name of the parameter to remove. <see langword="XsltArgumentList" /> does not check to ensure the name passed is a valid local name; however, the name cannot be <see langword="null" /> .</param>
  7740. <param name=" namespaceUri">The namespace URI of the parameter to remove.</param>
  7741. <returns>
  7742. <para>The parameter object or <see langword="null" /> if one was
  7743. not found.</para>
  7744. </returns>
  7745. </member>
  7746. <member name="M:System.Xml.Xsl.XsltArgumentList.RemoveExtensionObject(System.String)">
  7747. <summary>
  7748. <para>Removes the object with the namespace URI from the
  7749. <see langword="XsltArgumentList" />.</para>
  7750. </summary>
  7751. <param name="namespaceUri">The namespace URI associated with the object to remove.</param>
  7752. <returns>
  7753. <para> The object with the namespace URI or
  7754. <see langword="null" /> if one was not found.</para>
  7755. </returns>
  7756. </member>
  7757. <member name="M:System.Xml.Xsl.XsltArgumentList.Clear">
  7758. <summary>
  7759. <para>Removes all parameters and extension objects from the
  7760. <see langword="XsltArgumentList" />.</para>
  7761. </summary>
  7762. </member>
  7763. <member name="M:System.Xml.Xsl.XsltCompileContext.LookupNamespace(System.String)">
  7764. <summary>
  7765. <para>[To be supplied.]</para>
  7766. </summary>
  7767. </member>
  7768. <member name="M:System.Xml.Xsl.XsltCompileContext.ResolveVariable(System.String,System.String)">
  7769. <summary>
  7770. <para>[To be supplied.]</para>
  7771. </summary>
  7772. </member>
  7773. <member name="M:System.Xml.Xsl.XsltCompileContext.PreserveWhitespace(System.Xml.XPath.XPathNavigator)">
  7774. <summary>
  7775. <para>[To be supplied.]</para>
  7776. </summary>
  7777. </member>
  7778. <member name="P:System.Xml.Xsl.XsltCompileContext.DefaultNamespace">
  7779. <summary>
  7780. <para>[To be supplied.]</para>
  7781. </summary>
  7782. </member>
  7783. <member name="P:System.Xml.Xsl.XsltCompileContext.Whitespace">
  7784. <summary>
  7785. <para>[To be supplied.]</para>
  7786. </summary>
  7787. </member>
  7788. <member name="T:System.Xml.Xsl.IXsltContextFunction">
  7789. <summary>
  7790. <para>Provides an interface to a given function defined in the
  7791. XSLT stylesheet during runtime execution. </para>
  7792. </summary>
  7793. </member>
  7794. <member name="M:System.Xml.Xsl.IXsltContextFunction.Invoke(System.Xml.Xsl.XsltContext,System.Object[],System.Xml.XPath.XPathNavigator)">
  7795. <summary>
  7796. <para>Provides the method to invoke the function with the
  7797. given arguments in the given context.</para>
  7798. </summary>
  7799. <param name="xsltContext"> The XSLT context for the function call.</param>
  7800. <param name=" args">The arguments of the function call. Each argument is an element in the array.</param>
  7801. <param name=" docContext">The context node for the function call.</param>
  7802. <returns>
  7803. <para>An <see cref="T:System.Object" /> representing the return value of the
  7804. function.</para>
  7805. </returns>
  7806. </member>
  7807. <member name="P:System.Xml.Xsl.IXsltContextFunction.Minargs">
  7808. <summary>
  7809. <para>Gets the minimum number of arguments for the function.
  7810. This enables the user to differentiate between overloaded functions.</para>
  7811. </summary>
  7812. </member>
  7813. <member name="P:System.Xml.Xsl.IXsltContextFunction.Maxargs">
  7814. <summary>
  7815. <para>Gets the maximum number of arguments for the function. This enables the
  7816. user to differentiate between overloaded functions.</para>
  7817. </summary>
  7818. </member>
  7819. <member name="P:System.Xml.Xsl.IXsltContextFunction.ReturnType">
  7820. <summary>
  7821. <para>Gets the <see cref="T:System.Xml.XPath.XPathResultType" /> representing the XPath type
  7822. returned by the function.</para>
  7823. </summary>
  7824. </member>
  7825. <member name="P:System.Xml.Xsl.IXsltContextFunction.ArgTypes">
  7826. <summary>
  7827. <para>Gets the supplied XPath types for the function's argument
  7828. list. This information can be used to discover the signature of the function
  7829. which allows you to differentiate between overloaded functions.</para>
  7830. </summary>
  7831. </member>
  7832. <member name="M:System.Xml.Xsl.Debugger.IXsltDebugger.OnInstructionCompile(System.Xml.XPath.XPathNavigator)">
  7833. </member>
  7834. <member name="M:System.Xml.Xsl.Debugger.IXsltDebugger.OnInstructionExecute(System.Xml.Xsl.Debugger.IXsltProcessor)">
  7835. </member>
  7836. <member name="T:System.Xml.Xsl.XsltException">
  7837. <summary>
  7838. <para> The exception
  7839. that is thrown when an error occurs while processing an Extensible Stylesheet
  7840. Language (XSL) transform.</para>
  7841. </summary>
  7842. </member>
  7843. <member name="M:System.Xml.Xsl.XsltException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  7844. <summary>
  7845. Initializes a new instance of the
  7846. <see langword="XsltException" /> class using the information in the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects.
  7847. </summary>
  7848. <param name="info">The <see langword="SerializationInfo" /> object containing all the properties of an <see langword="XsltException" />.</param>
  7849. <param name=" context">The <see langword="StreamingContext" /> object.</param>
  7850. </member>
  7851. <member name="M:System.Xml.Xsl.XsltException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  7852. <summary>
  7853. <para>Streams all the <see langword="XsltException" /> properties
  7854. into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class for the given <see cref="T:System.Runtime.Serialization.StreamingContext" />.</para>
  7855. </summary>
  7856. <param name="info">The <see langword="SerializationInfo" /> object.</param>
  7857. <param name=" context">The <see langword="StreamingContext" /> object.</param>
  7858. </member>
  7859. <member name="M:System.Xml.Xsl.XsltException.#ctor(System.String,System.Exception)">
  7860. <summary>
  7861. <para>Initializes a new instance of the <see langword="XsltException" /> class.</para>
  7862. </summary>
  7863. <param name="message">The description of the error condition.</param>
  7864. <param name="innerException">The <see cref="T:System.Exception" /> which threw the <see langword="XsltException" />, if any. This value can be <see langword="null" />.</param>
  7865. </member>
  7866. <member name="P:System.Xml.Xsl.XsltException.SourceUri">
  7867. <summary>
  7868. Gets the location path of the stylesheet.
  7869. </summary>
  7870. </member>
  7871. <member name="P:System.Xml.Xsl.XsltException.LineNumber">
  7872. <summary>
  7873. <para> Gets the line number indicating where
  7874. the error occurred in the stylesheet.</para>
  7875. <note type="note">
  7876. This property is used by
  7877. the <see cref="T:System.Xml.Xsl.XsltCompileException" /> class.
  7878. </note>
  7879. </summary>
  7880. </member>
  7881. <member name="P:System.Xml.Xsl.XsltException.LinePosition">
  7882. <summary>
  7883. <para> Gets the line position indicating
  7884. where the error occurred in the stylesheet.</para>
  7885. <note type="note">
  7886. This property is used by
  7887. the <see cref="T:System.Xml.Xsl.XsltCompileException" /> class.
  7888. </note>
  7889. </summary>
  7890. </member>
  7891. <member name="P:System.Xml.Xsl.XsltException.Message">
  7892. <summary>
  7893. Gets the formatted error message describing
  7894. the current exception.
  7895. </summary>
  7896. </member>
  7897. <member name="T:System.Xml.Xsl.XsltCompileException">
  7898. <summary>
  7899. <para>The exception that is thrown by the <see cref="M:System.Xml.Xsl.XslTransform.Load(System.String)" /> method when an error is found in
  7900. the Extensible Stylesheet Transformation (XSLT) stylesheet.</para>
  7901. </summary>
  7902. </member>
  7903. <member name="M:System.Xml.Xsl.XsltCompileException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  7904. <summary>
  7905. <para>Initializes a new instance of the <see langword="XsltCompileException" /> class
  7906. using the information in the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects.</para>
  7907. </summary>
  7908. <param name="info">The <see langword="SerializationInfo" /> object containing all the properties of an <see langword="XsltCompileException" />. </param>
  7909. <param name="context">The <see langword="StreamingContext" /> object containing the context information.</param>
  7910. </member>
  7911. <member name="M:System.Xml.Xsl.XsltCompileException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  7912. <summary>
  7913. <para>Streams all the <see langword="XsltCompileException" /> properties into the
  7914. <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class for the given <see cref="T:System.Runtime.Serialization.StreamingContext" />.</para>
  7915. </summary>
  7916. <param name="info">The <see langword="SerializationInfo" /> object.</param>
  7917. <param name="context">The <see langword="StreamingContext" /> object.</param>
  7918. </member>
  7919. <member name="M:System.Xml.Xsl.XsltCompileException.#ctor(System.Exception,System.String,System.Int32,System.Int32)">
  7920. <summary>
  7921. <para>Initializes a new instance of the <see langword="XsltCompileException" />
  7922. class.</para>
  7923. </summary>
  7924. <param name="inner">The <see cref="T:System.Exception" /> that threw the <see langword="XsltCompileException" />.</param>
  7925. <param name=" sourceUri">The location path of the stylesheet.</param>
  7926. <param name=" lineNumber">The line number indicating where the error occurred in the stylesheet.</param>
  7927. <param name=" linePosition">The line position indicating where the error occurred in the stylesheet.</param>
  7928. </member>
  7929. <member name="P:System.Xml.Xsl.XsltCompileException.Message">
  7930. <summary>
  7931. <para>Gets the formatted error message describing the location
  7932. of the error. To get the actual error, you need to use the message
  7933. on the inner exception.</para>
  7934. </summary>
  7935. </member>
  7936. <member name="T:System.Xml.Xsl.XslTransform">
  7937. <summary>
  7938. <para>Transforms XML data using an XSLT stylesheet.</para>
  7939. </summary>
  7940. </member>
  7941. <member name="M:System.Xml.Xsl.XslTransform.#ctor">
  7942. <summary>
  7943. <para>Initializes a new instance of the
  7944. <see langword="XslTransform" />
  7945. class.</para>
  7946. </summary>
  7947. </member>
  7948. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList)">
  7949. <summary>
  7950. <para>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" />
  7951. using the specified <paramref name="args" />
  7952. and outputs the result to an <see cref="T:System.Xml.XmlReader" />
  7953. .</para>
  7954. </summary>
  7955. <param name="input">An object implementing the <see langword="IXPathNavigable" /> interface. In the .NET Framework this can be either an <see cref="T:System.Xml.XmlNode" /> (typically an <see cref="T:System.Xml.XmlDocument" />), or an <see cref="T:System.Xml.XPath.XPathDocument" /> containing the data to be transformed.</param>
  7956. <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform.</param>
  7957. <returns>
  7958. <para>An <see langword="XmlReader" /> containing the results of the transform.</para>
  7959. </returns>
  7960. </member>
  7961. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter)">
  7962. <summary>
  7963. <para>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" />
  7964. and outputs the result to a <see cref="T:System.IO.TextWriter" />
  7965. .</para>
  7966. </summary>
  7967. <param name="input">An object implementing the <see langword="IXPathNavigable" /> interface. In the .NET Framework this can be either an <see cref="T:System.Xml.XmlNode" /> (typically an <see cref="T:System.Xml.XmlDocument" />), or an <see cref="T:System.Xml.XPath.XPathDocument" /> containing the data to be transformed.</param>
  7968. <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform.</param>
  7969. <param name="output">The <see langword="TextWriter" /> to which you want to output.</param>
  7970. </member>
  7971. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.Stream)">
  7972. <summary>
  7973. <para>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" />
  7974. and outputs the result to a <see cref="T:System.IO.Stream" />
  7975. .</para>
  7976. </summary>
  7977. <param name="input">An object implementing the <see langword="IXPathNavigable" /> interface. In the .NET Framework this can be either an <see cref="T:System.Xml.XmlNode" /> (typically an <see cref="T:System.Xml.XmlDocument" /> ), or an <see cref="T:System.Xml.XPath.XPathDocument" /> containing the data to be transformed.</param>
  7978. <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform.</param>
  7979. <param name="output">The stream to which you want to output.</param>
  7980. </member>
  7981. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter)">
  7982. <summary>
  7983. <para>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" />
  7984. and outputs the result to an <see cref="T:System.Xml.XmlWriter" />
  7985. .</para>
  7986. </summary>
  7987. <param name="input">An object implementing the <see langword="IXPathNavigable" /> interface. In the .NET Framework this can be either an <see cref="T:System.Xml.XmlNode" /> (typically an <see cref="T:System.Xml.XmlDocument" />), or an <see cref="T:System.Xml.XPath.XPathDocument" /> containing the data to be transformed.</param>
  7988. <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform.</param>
  7989. <param name="output">The <see langword="XmlWriter" /> to which you want to output.</param>
  7990. </member>
  7991. <member name="M:System.Xml.Xsl.XslTransform.Load(System.String)">
  7992. <summary>
  7993. <para>Loads the XSLT stylesheet specified by a URL.</para>
  7994. </summary>
  7995. <param name="url">The URL that specifies the XSLT stylesheet to load.</param>
  7996. </member>
  7997. <member name="M:System.Xml.Xsl.XslTransform.Load(System.String,System.Xml.XmlResolver)">
  7998. <summary>
  7999. <para>Loads the XSLT stylesheet specified by a URL.</para>
  8000. </summary>
  8001. <param name="url">The URL that specifies the XSLT stylesheet to load.</param>
  8002. <param name=" resolver">The <see cref="T:System.Xml.XmlResolver" /> to use to load any stylesheets referenced in <see langword="xsl:import" /> and <see langword="xsl:include" /> elements. If this is <see langword="null" /> , external resources are not resolved.</param>
  8003. </member>
  8004. <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XmlReader)">
  8005. <summary>
  8006. <para> Loads the XSLT stylesheet contained in the
  8007. <see cref="T:System.Xml.XmlReader" />
  8008. .</para>
  8009. </summary>
  8010. <param name="stylesheet">An <see langword="XmlReader" /> object that contains the XSLT stylesheet.</param>
  8011. </member>
  8012. <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XmlReader,System.Xml.XmlResolver)">
  8013. <summary>
  8014. <para> Loads the XSLT stylesheet contained in the
  8015. <see cref="T:System.Xml.XmlReader" />
  8016. .</para>
  8017. </summary>
  8018. <param name="stylesheet">An <see langword="XmlReader" /> object that contains the XSLT stylesheet.</param>
  8019. <param name=" resolver">The <see cref="T:System.Xml.XmlResolver" /> used to load any stylesheets referenced in <see langword="xsl:import" /> and <see langword="xsl:include" /> elements. If this is <see langword="null" /> , external resources are not resolved.</param>
  8020. </member>
  8021. <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.XPathNavigator)">
  8022. <summary>
  8023. <para> Loads the XSLT stylesheet contained in the
  8024. <see cref="T:System.Xml.XPath.XPathNavigator" /> .</para>
  8025. </summary>
  8026. <param name="stylesheet">An <see langword="XPathNavigator" /> object that contains the XSLT stylesheet.</param>
  8027. </member>
  8028. <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlResolver)">
  8029. <summary>
  8030. <para> Loads the XSLT stylesheet contained in the
  8031. <see cref="T:System.Xml.XPath.XPathNavigator" /> .</para>
  8032. </summary>
  8033. <param name="stylesheet">An <see langword="XPathNavigator" /> object that contains the XSLT stylesheet.</param>
  8034. <param name=" resolver">The <see cref="T:System.Xml.XmlResolver" /> used to load any stylesheets referenced in <see langword="xsl:import" /> and <see langword="xsl:include" /> elements. If this is <see langword="null" /> , external resources are not resolved.</param>
  8035. </member>
  8036. <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.IXPathNavigable)">
  8037. <summary>
  8038. <para>Loads the XSLT stylesheet contained in the <see cref="T:System.Xml.XPath.IXPathNavigable" />.</para>
  8039. </summary>
  8040. <param name="stylesheet">An object implementing the <see langword="IXPathNavigable" /> interface. In the .NET Framework this can be either an <see cref="T:System.Xml.XmlNode" /> (typically an <see cref="T:System.Xml.XmlDocument" />), or an <see cref="T:System.Xml.XPath.XPathDocument" /> containing the XSLT stylesheet.</param>
  8041. </member>
  8042. <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.IXPathNavigable,System.Xml.XmlResolver)">
  8043. <summary>
  8044. <para>Loads the XSLT stylesheet contained in the <see cref="T:System.Xml.XPath.IXPathNavigable" />.</para>
  8045. </summary>
  8046. <param name="stylesheet">An object implementing the <see langword="IXPathNavigable" /> interface. In the .NET Framework this can be either an <see cref="T:System.Xml.XmlNode" /> (typically an <see cref="T:System.Xml.XmlDocument" />), or an <see cref="T:System.Xml.XPath.XPathDocument" /> containing the XSLT stylesheet.</param>
  8047. <param name=" resolver">The <see cref="T:System.Xml.XmlResolver" /> used to load any stylesheets referenced in <see langword="xsl:import" /> and <see langword="xsl:include" /> elements. If this is <see langword="null" /> , external resources are not resolved.</param>
  8048. </member>
  8049. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList)">
  8050. <summary>
  8051. <para>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" />
  8052. using the specified <paramref name="args" />
  8053. and outputs the result to an <see cref="T:System.Xml.XmlReader" />
  8054. .</para>
  8055. </summary>
  8056. <param name="input">An <see langword="XPathNavigator" /> containing the data to be transformed.</param>
  8057. <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform.</param>
  8058. <returns>
  8059. <para>An <see langword="XmlReader" /> containing the results of the transform.</para>
  8060. </returns>
  8061. </member>
  8062. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter)">
  8063. <summary>
  8064. <para>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using
  8065. the specified args and outputs the result to an <see cref="T:System.Xml.XmlWriter" />
  8066. .</para>
  8067. </summary>
  8068. <param name="input">An <see langword="XPathNavigator" /> containing the data to be transformed.</param>
  8069. <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform.</param>
  8070. <param name="output">The <see langword="XmlWriter" /> to which you want to output.</param>
  8071. </member>
  8072. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.IO.Stream)">
  8073. <summary>
  8074. <para>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <paramref name="args" />
  8075. and outputs the result to a <see cref="T:System.IO.Stream" />
  8076. .</para>
  8077. </summary>
  8078. <param name="input">An <see langword="XPathNavigator" /> containing the data to be transformed.</param>
  8079. <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform.</param>
  8080. <param name="output">The stream to which you want to output.</param>
  8081. </member>
  8082. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter)">
  8083. <summary>
  8084. <para>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <paramref name="args" />
  8085. and outputs the result to a <see cref="T:System.IO.TextWriter" />
  8086. .</para>
  8087. </summary>
  8088. <param name="input">An <see langword="XPathNavigator" /> containing the data to be transformed.</param>
  8089. <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform.</param>
  8090. <param name="output">The <see langword="TextWriter" /> to which you want to output.</param>
  8091. </member>
  8092. <member name="M:System.Xml.Xsl.XslTransform.Transform(System.String,System.String)">
  8093. <summary>
  8094. <para>Transforms the XML data in the input file and outputs
  8095. the result to an output file.</para>
  8096. </summary>
  8097. <param name="inputfile">The URL of the source document to be transformed.</param>
  8098. <param name=" outputfile">The URL of the output file.</param>
  8099. </member>
  8100. <member name="P:System.Xml.Xsl.XslTransform.XmlResolver">
  8101. <summary>
  8102. <para> Sets the <see cref="T:System.Xml.XmlResolver" /> used to resolve external resources when the <see cref="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList)" /> method
  8103. is called.</para>
  8104. </summary>
  8105. </member>
  8106. <member name="T:System.Xml.Schema.XmlSchemaDatatype">
  8107. <summary>
  8108. <para> Represents the abstract class for mapping XML Schema definition language
  8109. (XSD) and .NET Framework types.</para>
  8110. </summary>
  8111. </member>
  8112. <member name="M:System.Xml.Schema.XmlSchemaDatatype.ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager)">
  8113. <summary>
  8114. <para>Parses values from the
  8115. <see langword="XmlNameTable" /> .</para>
  8116. </summary>
  8117. <param name="s">string</param>
  8118. <param name=" nameTable">
  8119. <see langword="XmlNameTable" />
  8120. </param>
  8121. <param name=" nsmgr">
  8122. <see langword="XmlNamespaceManager" />
  8123. </param>
  8124. </member>
  8125. <member name="P:System.Xml.Schema.XmlSchemaDatatype.ValueType">
  8126. <summary>
  8127. <para> Gets the .NET Framework type for
  8128. the specified XML Schema definition language (XSD) type.</para>
  8129. </summary>
  8130. </member>
  8131. <member name="P:System.Xml.Schema.XmlSchemaDatatype.TokenizedType">
  8132. <summary>
  8133. <para>Gets the type for the string as specified in the World Wide Web Consortium (W3C)
  8134. XML 1.0 specification.</para>
  8135. </summary>
  8136. </member>
  8137. <member name="T:System.Xml.Schema.ValidationEventArgs">
  8138. <summary>
  8139. <para>Returns detailed information related to the
  8140. <see langword="ValidationEventHandler" />
  8141. .</para>
  8142. </summary>
  8143. </member>
  8144. <member name="P:System.Xml.Schema.ValidationEventArgs.Severity">
  8145. <summary>
  8146. <para>Gets the severity of the validation event.</para>
  8147. </summary>
  8148. </member>
  8149. <member name="P:System.Xml.Schema.ValidationEventArgs.Exception">
  8150. <summary>
  8151. Gets the <see cref="T:System.Xml.Schema.XmlSchemaException" /> associated with the
  8152. validation event.
  8153. </summary>
  8154. </member>
  8155. <member name="P:System.Xml.Schema.ValidationEventArgs.Message">
  8156. <summary>
  8157. <para>Gets the text description corresponding to the
  8158. validation event.</para>
  8159. </summary>
  8160. </member>
  8161. <member name="T:System.Xml.Schema.ValidationEventHandler">
  8162. <summary>
  8163. <para> Represents the method that handles the <see cref="T:System.Xml.Schema.ValidationEventArgs" />.</para>
  8164. </summary>
  8165. </member>
  8166. <member name="T:System.Xml.Schema.XmlSchema">
  8167. <summary>
  8168. <para>Contains the definition of a schema. All XML Schema definition language (XSD) elements are children of the
  8169. <see langword="schema" /> element. Represents the World Wide Web Consortium (W3C)
  8170. <see langword="schema" />
  8171. element.</para>
  8172. </summary>
  8173. </member>
  8174. <member name="T:System.Xml.Schema.XmlSchemaObject">
  8175. <summary>
  8176. <para>Creates an empty schema.</para>
  8177. </summary>
  8178. </member>
  8179. <member name="P:System.Xml.Schema.XmlSchemaObject.LineNumber">
  8180. <summary>
  8181. <para>Gets or sets the line number in the file to which the <see langword="schema" />
  8182. element refers.</para>
  8183. </summary>
  8184. </member>
  8185. <member name="P:System.Xml.Schema.XmlSchemaObject.LinePosition">
  8186. <summary>
  8187. <para>Gets or sets the line position in the file to which the
  8188. <see langword="schema" /> element refers.</para>
  8189. </summary>
  8190. </member>
  8191. <member name="P:System.Xml.Schema.XmlSchemaObject.SourceUri">
  8192. <summary>
  8193. <para>Gets or sets the source location for the file
  8194. that loaded the schema.</para>
  8195. </summary>
  8196. </member>
  8197. <member name="F:System.Xml.Schema.XmlSchema.Namespace">
  8198. <summary>
  8199. <para>Provides the namespace for validation.</para>
  8200. </summary>
  8201. </member>
  8202. <member name="F:System.Xml.Schema.XmlSchema.InstanceNamespace">
  8203. <summary>
  8204. <para>Provides the instance namespace.</para>
  8205. </summary>
  8206. </member>
  8207. <member name="M:System.Xml.Schema.XmlSchema.#ctor">
  8208. <summary>
  8209. <para>Constructs a new, empty schema.</para>
  8210. </summary>
  8211. </member>
  8212. <member name="M:System.Xml.Schema.XmlSchema.Read(System.IO.TextReader,System.Xml.Schema.ValidationEventHandler)">
  8213. <summary>
  8214. <para>Reads an XSD Schema from the supplied text reader.</para>
  8215. </summary>
  8216. <param name="reader">The supplied TextReader.</param>
  8217. <param name=" validationEventHandler">The validation event handler that receives information about the XML Schema syntax errors.</param>
  8218. </member>
  8219. <member name="M:System.Xml.Schema.XmlSchema.Read(System.IO.Stream,System.Xml.Schema.ValidationEventHandler)">
  8220. <summary>
  8221. <para>Reads an XML Schema fefinition language (XSD) schema
  8222. from the supplied stream.</para>
  8223. </summary>
  8224. <param name="stream">The supplied data stream.</param>
  8225. <param name=" validationEventHandler">The validation event handler that receives information about XML Schema syntax errors.</param>
  8226. </member>
  8227. <member name="M:System.Xml.Schema.XmlSchema.Read(System.Xml.XmlReader,System.Xml.Schema.ValidationEventHandler)">
  8228. <summary>
  8229. <para>Reads an XML Schema definition language (XSD) schema
  8230. from the supplied reader.</para>
  8231. </summary>
  8232. <param name="reader">The supplied XmlReader.</param>
  8233. <param name=" validationEventHandler">The validation event handler that receives information about the XML Schema syntax errors.</param>
  8234. </member>
  8235. <member name="M:System.Xml.Schema.XmlSchema.Write(System.IO.Stream)">
  8236. <summary>
  8237. <para>Writes the XML Schema to the supplied data stream.</para>
  8238. </summary>
  8239. <param name="stream">The supplied datat stream.</param>
  8240. </member>
  8241. <member name="M:System.Xml.Schema.XmlSchema.Write(System.IO.Stream,System.Xml.XmlNamespaceManager)">
  8242. <summary>
  8243. <para> Writes the XML Schema definition language (XSD) schema
  8244. to the supplied <see langword="stream" /> .</para>
  8245. </summary>
  8246. <param name="stream">The supplied data stream.</param>
  8247. <param name=" namespaceManager">The XmlNamespaceManager.</param>
  8248. </member>
  8249. <member name="M:System.Xml.Schema.XmlSchema.Write(System.IO.TextWriter)">
  8250. <summary>
  8251. <para>Writes the XML Schema definition language (XSD) schema
  8252. to the supplied <see langword="TextWriter" /> .</para>
  8253. </summary>
  8254. <param name="writer">The supplied TextWriter.</param>
  8255. </member>
  8256. <member name="M:System.Xml.Schema.XmlSchema.Write(System.IO.TextWriter,System.Xml.XmlNamespaceManager)">
  8257. <summary>
  8258. <para>Writes the XML Schema definition language (XSD) schema
  8259. to the supplied <see langword="TextWriter" /> .</para>
  8260. </summary>
  8261. <param name="writer">The supplied TextWriter.</param>
  8262. <param name=" namespaceManager">The XmlNamespaceManager.</param>
  8263. </member>
  8264. <member name="M:System.Xml.Schema.XmlSchema.Write(System.Xml.XmlWriter)">
  8265. <summary>
  8266. <para>Writes the XML Schema Definition language (XSD) schema
  8267. to the supplied <see langword="XmlWriter" /> .</para>
  8268. </summary>
  8269. <param name="writer">The supplied XmlWriter.</param>
  8270. </member>
  8271. <member name="M:System.Xml.Schema.XmlSchema.Write(System.Xml.XmlWriter,System.Xml.XmlNamespaceManager)">
  8272. <summary>
  8273. <para> Writes the XML Schema Definition language (XSD) schema
  8274. to the supplied <see langword="XmlWriter" /> .</para>
  8275. </summary>
  8276. <param name="writer">The supplied XmlWriter.</param>
  8277. <param name=" namespaceManager">The XmlNamespaceManager.</param>
  8278. </member>
  8279. <member name="M:System.Xml.Schema.XmlSchema.Compile(System.Xml.Schema.ValidationEventHandler)">
  8280. <summary>
  8281. <para> Compiles the XML Schema definition language (XSD)
  8282. Schema Object Model (SOM) into schema information for validation. Used to check
  8283. the syntactic and semantic structure of the programmatically-built SOM. Semantic
  8284. validation checking is performed during compilation.</para>
  8285. </summary>
  8286. <param name="validationEventHandler">The validation event handler that receives information about XML schema validation errors.</param>
  8287. </member>
  8288. <member name="P:System.Xml.Schema.XmlSchema.AttributeFormDefault">
  8289. <summary>
  8290. <para>Gets or sets the form for attributes declared in the target
  8291. namespace of the schema.</para>
  8292. </summary>
  8293. </member>
  8294. <member name="P:System.Xml.Schema.XmlSchema.BlockDefault">
  8295. <summary>
  8296. <para> Gets or sets the <see langword="BlockDefault" /> attribute on element and complex type
  8297. elements in the <see langword="targetNamespace" />
  8298. of the schema. The <see langword="block" /> attribute prevents a complex
  8299. type (or element) that has the specified
  8300. type of derivation from being used in place of the inherited complex type (or
  8301. element). The type of derivation.</para>
  8302. </summary>
  8303. </member>
  8304. <member name="P:System.Xml.Schema.XmlSchema.FinalDefault">
  8305. <summary>
  8306. <para>Gets or sets the default value of
  8307. the <see langword="final" />
  8308. attribute on element and complex type elements in the target namespace
  8309. of this schema. The <see langword="final" /> attribute prevents the specified
  8310. type of derivation of an element
  8311. or complex type. The type of derivation.</para>
  8312. </summary>
  8313. </member>
  8314. <member name="P:System.Xml.Schema.XmlSchema.ElementFormDefault">
  8315. <summary>
  8316. <para>Gets or sets the form for elements declared in the target
  8317. namespace of the schema.</para>
  8318. </summary>
  8319. </member>
  8320. <member name="P:System.Xml.Schema.XmlSchema.TargetNamespace">
  8321. <summary>
  8322. <para>Gets or sets the property for the schema target namespace. The URI reference of
  8323. the namespace of this schema.</para>
  8324. </summary>
  8325. </member>
  8326. <member name="P:System.Xml.Schema.XmlSchema.Version">
  8327. <summary>
  8328. <para>Gets or sets the version of the schema.</para>
  8329. </summary>
  8330. </member>
  8331. <member name="P:System.Xml.Schema.XmlSchema.Includes">
  8332. <summary>
  8333. <para> Gets the collection of
  8334. included and imported schemas.</para>
  8335. </summary>
  8336. </member>
  8337. <member name="P:System.Xml.Schema.XmlSchema.Items">
  8338. <summary>
  8339. <para> Gets the <see langword="Items" />
  8340. collection that is used to
  8341. add new element types at the <see langword="schema" />
  8342. element level.</para>
  8343. </summary>
  8344. </member>
  8345. <member name="P:System.Xml.Schema.XmlSchema.IsCompiled">
  8346. <summary>
  8347. <para> Gets information that indicates if the schema has been compiled.</para>
  8348. </summary>
  8349. </member>
  8350. <member name="P:System.Xml.Schema.XmlSchema.Attributes">
  8351. <summary>
  8352. <para>Gets the <see langword="XmlSchemaObjectTable" />, for all attributes in the schema,
  8353. which holds the post-compilation value of the <see langword="Attribute" /> property.</para>
  8354. </summary>
  8355. </member>
  8356. <member name="P:System.Xml.Schema.XmlSchema.AttributeGroups">
  8357. <summary>
  8358. <para>Gets the <see langword="XmlSchemaObjectTable" /> for all attribute groups in the
  8359. schema, which holds the post-compilation value of
  8360. the <see langword="AttributeGroups" /> property.</para>
  8361. </summary>
  8362. </member>
  8363. <member name="P:System.Xml.Schema.XmlSchema.SchemaTypes">
  8364. <summary>
  8365. <para>Gets the <see langword="XmlSchemaObjectTable" />for all schema types in the schema,
  8366. which holds the post-compilation value of the <see langword="SchemaTypes" /> property.</para>
  8367. </summary>
  8368. </member>
  8369. <member name="P:System.Xml.Schema.XmlSchema.Elements">
  8370. <summary>
  8371. <para>Gets the <see langword="XmlSchemaObjectTable" /> for all elements in the schema,
  8372. which holds the post-compilation value of the <see langword="Elements" /> property.</para>
  8373. </summary>
  8374. </member>
  8375. <member name="P:System.Xml.Schema.XmlSchema.Id">
  8376. <summary>
  8377. <para>Gets or sets the string id.</para>
  8378. </summary>
  8379. </member>
  8380. <member name="P:System.Xml.Schema.XmlSchema.UnhandledAttributes">
  8381. <summary>
  8382. <para>Gets and sets the qualified attributes which do not belong to the schema
  8383. target namespace.</para>
  8384. </summary>
  8385. </member>
  8386. <member name="P:System.Xml.Schema.XmlSchema.Groups">
  8387. <summary>
  8388. <para>Gets the <see langword="XmlSchemaObjectTable" /> for all groups in the schema,
  8389. which holds the post-compilation value of the <see langword="Groups" /> property.</para>
  8390. </summary>
  8391. </member>
  8392. <member name="P:System.Xml.Schema.XmlSchema.Notations">
  8393. <summary>
  8394. <para>Gets the <see langword="XmlSchemaObjectTable" /> for all notations in the schema.</para>
  8395. </summary>
  8396. </member>
  8397. <member name="T:System.Xml.Schema.XmlSchemaAll">
  8398. <summary>
  8399. <para> Permits the elements in the group to appear (or not appear) in any order
  8400. in the containing element. Represents the World Wide Web Consortium (W3C)<see langword=" all" /> element
  8401. (compositor).</para>
  8402. </summary>
  8403. </member>
  8404. <member name="T:System.Xml.Schema.XmlSchemaGroupBase">
  8405. <summary>
  8406. <para> An abstract class for <see langword="XmlSchemaChoice" />, <see langword="XmlSchemaAll" />, or <see langword="XmlSchemaSequence" />
  8407. .</para>
  8408. </summary>
  8409. </member>
  8410. <member name="T:System.Xml.Schema.XmlSchemaParticle">
  8411. <summary>
  8412. <para>Base class for all particle types.</para>
  8413. </summary>
  8414. </member>
  8415. <member name="T:System.Xml.Schema.XmlSchemaAnnotated">
  8416. <summary>
  8417. <para> The base class for any element that can contain
  8418. annotation elements.</para>
  8419. </summary>
  8420. </member>
  8421. <member name="P:System.Xml.Schema.XmlSchemaAnnotated.Id">
  8422. <summary>
  8423. <para>Gets or sets the string id.</para>
  8424. </summary>
  8425. </member>
  8426. <member name="P:System.Xml.Schema.XmlSchemaAnnotated.Annotation">
  8427. <summary>
  8428. <para> Gets or sets the <see langword="annotation" /> property.</para>
  8429. </summary>
  8430. </member>
  8431. <member name="P:System.Xml.Schema.XmlSchemaAnnotated.UnhandledAttributes">
  8432. <summary>
  8433. <para>Gets or sets the qualified attributes that do not belong to the schema
  8434. target namespace.</para>
  8435. </summary>
  8436. </member>
  8437. <member name="P:System.Xml.Schema.XmlSchemaParticle.MinOccursString">
  8438. <summary>
  8439. <para> Gets or sets the number as a string value. The minimum number of times the particle
  8440. can occur. </para>
  8441. </summary>
  8442. </member>
  8443. <member name="P:System.Xml.Schema.XmlSchemaParticle.MaxOccursString">
  8444. <summary>
  8445. <para> Gets or sets the number as a string
  8446. value. Maximum number of times the particle can occur. </para>
  8447. </summary>
  8448. </member>
  8449. <member name="P:System.Xml.Schema.XmlSchemaParticle.MinOccurs">
  8450. <summary>
  8451. <para>Gets or sets the minimum number of times the particle can occur.</para>
  8452. </summary>
  8453. </member>
  8454. <member name="P:System.Xml.Schema.XmlSchemaParticle.MaxOccurs">
  8455. <summary>
  8456. <para>Gets or sets the maximum number of times the particle can occur.</para>
  8457. </summary>
  8458. </member>
  8459. <member name="P:System.Xml.Schema.XmlSchemaGroupBase.Items">
  8460. <summary>
  8461. <para>This collection is used to add new elements to the
  8462. compositor.</para>
  8463. </summary>
  8464. </member>
  8465. <member name="P:System.Xml.Schema.XmlSchemaAll.Items">
  8466. <summary>
  8467. <para>Gets the collection of <see langword="XmlSchemaElement" /> elements contained within
  8468. the <see langword="all" /> compositor.</para>
  8469. </summary>
  8470. </member>
  8471. <member name="T:System.Xml.Schema.XmlSchemaAnnotation">
  8472. <summary>
  8473. <para>Defines an annotation. Represents the World Wide Web Consortium (W3C)
  8474. <see langword="annotation" /> element.</para>
  8475. </summary>
  8476. </member>
  8477. <member name="P:System.Xml.Schema.XmlSchemaAnnotation.Id">
  8478. <summary>
  8479. <para>Gets or sets the string id.</para>
  8480. </summary>
  8481. </member>
  8482. <member name="P:System.Xml.Schema.XmlSchemaAnnotation.Items">
  8483. <summary>
  8484. <para>Gets the <see langword="Items" />
  8485. collection that is used to store the <see langword="appinfo" /> and
  8486. <see langword="documentation" /> child
  8487. elements.</para>
  8488. </summary>
  8489. </member>
  8490. <member name="P:System.Xml.Schema.XmlSchemaAnnotation.UnhandledAttributes">
  8491. <summary>
  8492. <para>Gets and sets the qualified attributes that do not belong to the schema target
  8493. namespace.</para>
  8494. </summary>
  8495. </member>
  8496. <member name="T:System.Xml.Schema.XmlSchemaAny">
  8497. <summary>
  8498. <para>Enables any element from the specified namespace or namespaces to
  8499. appear in the containing <see langword="complexType" />element. Represents the World Wide Web Consortium (W3C)
  8500. <see langword="any" /> element.</para>
  8501. </summary>
  8502. </member>
  8503. <member name="P:System.Xml.Schema.XmlSchemaAny.Namespace">
  8504. <summary>
  8505. <para>Gets or sets the namespaces containing the elements that can be used.</para>
  8506. </summary>
  8507. </member>
  8508. <member name="P:System.Xml.Schema.XmlSchemaAny.ProcessContents">
  8509. <summary>
  8510. <para>Gets or sets information about how an application or XML processor should
  8511. handle the validation of XML documents for the elements specified by the
  8512. <see langword="any" /> element.</para>
  8513. </summary>
  8514. </member>
  8515. <member name="T:System.Xml.Schema.XmlSchemaAnyAttribute">
  8516. <summary>
  8517. <para>Enables any attribute from the specified namespace or namespaces to
  8518. appear in the containing <see langword="complexType" />
  8519. element. Represents the World
  8520. Wide Web Consortium
  8521. (W3C) <see langword="anyAttribute" /> element.</para>
  8522. </summary>
  8523. </member>
  8524. <member name="P:System.Xml.Schema.XmlSchemaAnyAttribute.Namespace">
  8525. <summary>
  8526. <para>Gets or sets the namespaces containing the attributes that can be used.</para>
  8527. </summary>
  8528. </member>
  8529. <member name="P:System.Xml.Schema.XmlSchemaAnyAttribute.ProcessContents">
  8530. <summary>
  8531. <para>Gets or sets information about how an application or XML processor should
  8532. handle the validation of XML documents for the attributes specified by the
  8533. <see langword="anyAttribute" /> element.</para>
  8534. </summary>
  8535. </member>
  8536. <member name="T:System.Xml.Schema.XmlSchemaAppInfo">
  8537. <summary>
  8538. <para> Defines application specific information within an annotation. Represents the World
  8539. Wide Web Consortium (W3C) <see langword="appinfo" /> element.</para>
  8540. </summary>
  8541. </member>
  8542. <member name="P:System.Xml.Schema.XmlSchemaAppInfo.Source">
  8543. <summary>
  8544. <para>Gets or sets the source of the application information.</para>
  8545. </summary>
  8546. </member>
  8547. <member name="P:System.Xml.Schema.XmlSchemaAppInfo.Markup">
  8548. <summary>
  8549. <para>Gets or sets an array of <see langword="XmlNode" /> that represents the AppInfo child nodes. </para>
  8550. </summary>
  8551. </member>
  8552. <member name="T:System.Xml.Schema.XmlSchemaAttribute">
  8553. <summary>
  8554. <para>Class for attribute types. Represents the World Wide Web Consortium (W3C) <see langword="attribute" /> element. </para>
  8555. </summary>
  8556. </member>
  8557. <member name="P:System.Xml.Schema.XmlSchemaAttribute.DefaultValue">
  8558. <summary>
  8559. <para>Gets or sets the default value for the attribute.</para>
  8560. </summary>
  8561. </member>
  8562. <member name="P:System.Xml.Schema.XmlSchemaAttribute.FixedValue">
  8563. <summary>
  8564. <para>Gets or sets the fixed value for the attribute. </para>
  8565. </summary>
  8566. </member>
  8567. <member name="P:System.Xml.Schema.XmlSchemaAttribute.Form">
  8568. <summary>
  8569. <para>Gets or sets the form for the attribute.</para>
  8570. </summary>
  8571. </member>
  8572. <member name="P:System.Xml.Schema.XmlSchemaAttribute.Name">
  8573. <summary>
  8574. <para> Gets or sets the name of the attribute.</para>
  8575. </summary>
  8576. </member>
  8577. <member name="P:System.Xml.Schema.XmlSchemaAttribute.RefName">
  8578. <summary>
  8579. <para> Gets or sets the name of an attribute declared in this schema (or another schema indicated by the specified namespace).</para>
  8580. </summary>
  8581. </member>
  8582. <member name="P:System.Xml.Schema.XmlSchemaAttribute.SchemaTypeName">
  8583. <summary>
  8584. <para>Gets or sets the name of the simple type defined in this schema (or
  8585. another schema indicated by the specified namespace). </para>
  8586. </summary>
  8587. </member>
  8588. <member name="P:System.Xml.Schema.XmlSchemaAttribute.SchemaType">
  8589. <summary>
  8590. <para>
  8591. Gets or sets the attribute type to a simple type.</para>
  8592. </summary>
  8593. </member>
  8594. <member name="P:System.Xml.Schema.XmlSchemaAttribute.Use">
  8595. <summary>
  8596. <para>Gets or sets information about how the attribute is used.</para>
  8597. </summary>
  8598. </member>
  8599. <member name="P:System.Xml.Schema.XmlSchemaAttribute.QualifiedName">
  8600. <summary>
  8601. <para> Gets the qualified name for the attribute which holds the
  8602. post-compilation value of the <see langword="QualifiedName" /> property.</para>
  8603. </summary>
  8604. </member>
  8605. <member name="P:System.Xml.Schema.XmlSchemaAttribute.AttributeType">
  8606. <summary>
  8607. <para>Gets the common runtime library (CLR) object based on
  8608. the <see cref="P:System.Xml.Schema.XmlSchemaAttribute.SchemaType" /> or <see cref="P:System.Xml.Schema.XmlSchemaAttribute.SchemaTypeName" />
  8609. of the attribute that holds the post-compilation value of the
  8610. <see langword="AttributeType" /> property.</para>
  8611. </summary>
  8612. </member>
  8613. <member name="T:System.Xml.Schema.XmlSchemaAttributeGroup">
  8614. <summary>
  8615. <para>Class for attribute groups. Groups a set of attribute declarations so that they
  8616. can be incorporated as a group into complex type definitions. Represents the World
  8617. Wide Web Consortium (W3C) <see langword="attributeGroup" />
  8618. element.</para>
  8619. </summary>
  8620. </member>
  8621. <member name="P:System.Xml.Schema.XmlSchemaAttributeGroup.Name">
  8622. <summary>
  8623. <para>Gets or sets the name of the attribute group.</para>
  8624. </summary>
  8625. </member>
  8626. <member name="P:System.Xml.Schema.XmlSchemaAttributeGroup.Attributes">
  8627. <summary>
  8628. <para>Gets the collection of attributes for the attribute group.
  8629. Contains <see langword="XmlSchemaAttribute" /> and
  8630. <see langword="XmlSchemaAttributeGroupRef" /> elements.</para>
  8631. </summary>
  8632. </member>
  8633. <member name="P:System.Xml.Schema.XmlSchemaAttributeGroup.AnyAttribute">
  8634. <summary>
  8635. <para>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the
  8636. attribute group. </para>
  8637. </summary>
  8638. </member>
  8639. <member name="T:System.Xml.Schema.XmlSchemaAttributeGroupRef">
  8640. <summary>
  8641. <para>Class for the attribute group reference. Represents the World Wide Web Consortium (W3C) <see langword="attributeGroup" /> element with the <see langword="ref" />
  8642. attribute.</para>
  8643. </summary>
  8644. </member>
  8645. <member name="P:System.Xml.Schema.XmlSchemaAttributeGroupRef.RefName">
  8646. <summary>
  8647. <para>Gets or sets the name of the referenced
  8648. <see langword="attributeGroup" /> element.</para>
  8649. </summary>
  8650. </member>
  8651. <member name="T:System.Xml.Schema.XmlSchemaChoice">
  8652. <summary>
  8653. <para>Allows only one of its children to appear in an instance. Represents the World
  8654. Wide Web Consortium (W3C) <see langword="choice" />
  8655. (compositor) element.</para>
  8656. </summary>
  8657. </member>
  8658. <member name="P:System.Xml.Schema.XmlSchemaChoice.Items">
  8659. <summary>
  8660. <para>Gets the collection of the elements contained with the
  8661. compositor (<see langword="choice" />
  8662. ): <see langword="XmlSchemaElement" />, <see langword="XmlSchemaGroupRef" />,
  8663. <see langword="XmlSchemaChoice" />, <see langword="XmlSchemaSequence" />, or
  8664. <see langword="XmlSchemaAny" />
  8665. .</para>
  8666. </summary>
  8667. </member>
  8668. <member name="T:System.Xml.Schema.XmlSchemaCollection">
  8669. <summary>
  8670. <para> Contains a cache of XML Schema definition language (XSD) and XML-Data
  8671. Reduced (XDR) schemas. This class cannot be inherited.</para>
  8672. </summary>
  8673. </member>
  8674. <member name="M:System.Xml.Schema.XmlSchemaCollection.#ctor">
  8675. <summary>
  8676. <para>Initializes a new instance of the
  8677. <see langword="XmlSchemaCollection" /> class.</para>
  8678. </summary>
  8679. </member>
  8680. <member name="M:System.Xml.Schema.XmlSchemaCollection.#ctor(System.Xml.XmlNameTable)">
  8681. <summary>
  8682. <para>Initializes a new instance of the
  8683. <see langword="XmlSchemaCollection" />
  8684. class with the specified <see cref="T:System.Xml.XmlNameTable" /> . The <see langword="XmlNameTable" />
  8685. is used when loading schemas.</para>
  8686. </summary>
  8687. <param name="nametable">The <see langword="XmlNameTable" /> to use.</param>
  8688. </member>
  8689. <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.String,System.String)">
  8690. <summary>
  8691. <para>Adds the schema located by the given URL into the schema
  8692. collection.</para>
  8693. </summary>
  8694. <param name="ns">The namespace URI associated with the schema. For XML Schema Definition language (XSD) schemas, this will typically be the <see langword="targetNamespace" /> .</param>
  8695. <param name=" uri">The URL that specifies the schema to load.</param>
  8696. <returns>
  8697. <para>The <see cref="T:System.Xml.Schema.XmlSchema" /> added to the schema collection;
  8698. <see langword="null" /> if the the schema being added is an XDR schema or if there
  8699. are compilation errors in the schema.</para>
  8700. </returns>
  8701. </member>
  8702. <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.String,System.Xml.XmlReader)">
  8703. <summary>
  8704. <para>Adds the given schema into the schema collection.</para>
  8705. </summary>
  8706. <param name="ns">The namespace URI associated with the schema. For XML Schema definition language (XSD) schemas, this will typically be the <see langword="targetNamespace" /> .</param>
  8707. <param name=" reader">
  8708. <see cref="T:System.Xml.XmlReader" /> containing the schema to add.</param>
  8709. <returns>
  8710. <para>The <see cref="T:System.Xml.Schema.XmlSchema" /> added to the schema collection;
  8711. <see langword="null" /> if the schema being added is an XML-Data Reduced (XDR) schema or if there
  8712. are
  8713. compilation errors in the schema.</para>
  8714. </returns>
  8715. </member>
  8716. <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.Xml.Schema.XmlSchema)">
  8717. <summary>
  8718. <para>Adds the <see cref="T:System.Xml.Schema.XmlSchema" /> to the collection.</para>
  8719. </summary>
  8720. <param name="schema">The <see langword="XmlSchema" /> to add to the collection.</param>
  8721. <returns>
  8722. The <see langword="XmlSchema" /> object.
  8723. </returns>
  8724. </member>
  8725. <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.Xml.Schema.XmlSchemaCollection)">
  8726. <summary>
  8727. <para>Adds all the namespaces defined in the given collection
  8728. (including their associated schemas) to this collection.</para>
  8729. </summary>
  8730. <param name="schema">The <see langword="XmlSchemaCollection" /> you want to add to this collection.</param>
  8731. </member>
  8732. <member name="M:System.Xml.Schema.XmlSchemaCollection.Contains(System.Xml.Schema.XmlSchema)">
  8733. <summary>
  8734. <para>Gets a value indicating whether the
  8735. <see langword="targetNamespace" /> of the
  8736. specified <see cref="T:System.Xml.Schema.XmlSchema" /> is in the collection.</para>
  8737. </summary>
  8738. <param name="schema">The <see langword="XmlSchema" /> object.</param>
  8739. <returns>
  8740. <para>
  8741. <see langword="true" /> if there is a
  8742. schema in the collection with the same <see langword="targetNamespace" />
  8743. ; otherwise, <see langword="false" />.</para>
  8744. </returns>
  8745. </member>
  8746. <member name="M:System.Xml.Schema.XmlSchemaCollection.Contains(System.String)">
  8747. <summary>
  8748. <para>Gets a value indicating whether a schema with the specified namespace is in the
  8749. collection.</para>
  8750. </summary>
  8751. <param name="ns">The namespace URI associated with the schema. For XML Schema Definition language (XSD) schemas, this will typically be the target namespace.</param>
  8752. <returns>
  8753. <para>
  8754. <see langword="true" /> if a schema
  8755. with the specified namespace is in the collection; otherwise,
  8756. <see langword="false" />.</para>
  8757. </returns>
  8758. </member>
  8759. <member name="M:System.Xml.Schema.XmlSchemaCollection.GetEnumerator">
  8760. <summary>
  8761. <para>Provides support for the "for each" style iteration over the collection of schemas.</para>
  8762. </summary>
  8763. <returns>
  8764. <para>An enumerator for iterating over all schemas in the
  8765. current collection.</para>
  8766. </returns>
  8767. </member>
  8768. <member name="M:System.Xml.Schema.XmlSchemaCollection.CopyTo(System.Xml.Schema.XmlSchema[],System.Int32)">
  8769. <summary>
  8770. <para>Copies all the <see langword="XmlSchema" /> objects from this
  8771. collection into the given array starting at the given index.</para>
  8772. </summary>
  8773. <param name="array">The array to copy the objects to.</param>
  8774. <param name=" index">The index in <paramref name="array" /> where copying will begin.</param>
  8775. </member>
  8776. <member name="P:System.Xml.Schema.XmlSchemaCollection.Count">
  8777. <summary>
  8778. <para> Gets the number of namespaces defined in this collection.</para>
  8779. </summary>
  8780. </member>
  8781. <member name="P:System.Xml.Schema.XmlSchemaCollection.NameTable">
  8782. <summary>
  8783. <para>Gets the default <see langword="XmlNameTable" /> used by
  8784. the <see langword="XmlSchemaCollection" /> when loading new schemas.</para>
  8785. </summary>
  8786. </member>
  8787. <member name="E:System.Xml.Schema.XmlSchemaCollection.ValidationEventHandler">
  8788. <summary>
  8789. <para> Sets an event handler for receiving information about the XML-Data Reduced (XDR) and XML
  8790. Schema definition language (XSD) schema validation errors.</para>
  8791. </summary>
  8792. </member>
  8793. <member name="P:System.Xml.Schema.XmlSchemaCollection.Item(System.String)">
  8794. <summary>
  8795. <para> Gets the <see cref="T:System.Xml.Schema.XmlSchema" /> associated with the given namespace URI.</para>
  8796. </summary>
  8797. <param name="ns">The namespace URI associated with the schema you want to return. This will typically be the <see langword="targetNamespace" /> of the schema.</param>
  8798. </member>
  8799. <member name="T:System.Xml.Schema.XmlSchemaCollectionEnumerator">
  8800. <summary>
  8801. <para>Supports a simple iteration over a collection. This class cannot be
  8802. inherited.</para>
  8803. </summary>
  8804. </member>
  8805. <member name="M:System.Xml.Schema.XmlSchemaCollectionEnumerator.MoveNext">
  8806. <summary>
  8807. <para>Advances the enumerator to the
  8808. next schema in the collection.</para>
  8809. </summary>
  8810. <returns>
  8811. <para>
  8812. <see langword="true" /> if the move was successful; <see langword="false" /> if the enumerator has passed the end of the collection.</para>
  8813. </returns>
  8814. </member>
  8815. <member name="P:System.Xml.Schema.XmlSchemaCollectionEnumerator.Current">
  8816. <summary>
  8817. <para>Gets the current <see cref="T:System.Xml.Schema.XmlSchema" /> in the collection.</para>
  8818. </summary>
  8819. </member>
  8820. <member name="T:System.Xml.Schema.XmlSchemaComplexContent">
  8821. <summary>
  8822. <para>Class that represents the complex content model for complex
  8823. types. Contains extensions or restrictions on a complex type that has mixed
  8824. content or elements only. Represents the World Wide Web Consortium
  8825. (W3C) <see langword="complexContent" />
  8826. element.</para>
  8827. </summary>
  8828. </member>
  8829. <member name="T:System.Xml.Schema.XmlSchemaContentModel">
  8830. <summary>
  8831. <para>An abstract class for the schema content model.</para>
  8832. </summary>
  8833. </member>
  8834. <member name="P:System.Xml.Schema.XmlSchemaContentModel.Content">
  8835. <summary>
  8836. <para>Gets or sets the content of the type.</para>
  8837. </summary>
  8838. </member>
  8839. <member name="P:System.Xml.Schema.XmlSchemaComplexContent.IsMixed">
  8840. <summary>
  8841. <para> Gets or sets information that determines if the type has a mixed content model. </para>
  8842. </summary>
  8843. </member>
  8844. <member name="P:System.Xml.Schema.XmlSchemaComplexContent.Content">
  8845. <summary>
  8846. <para>Gets or sets the content.</para>
  8847. </summary>
  8848. </member>
  8849. <member name="T:System.Xml.Schema.XmlSchemaComplexContentExtension">
  8850. <summary>
  8851. <para> Class for complex types with a complex content model
  8852. derived by extension. Extends the complex type by adding attributes or elements.
  8853. Represents the World Wide Web Consortium (W3C) <see langword="extension" />
  8854. element for complex content.</para>
  8855. </summary>
  8856. </member>
  8857. <member name="T:System.Xml.Schema.XmlSchemaContent">
  8858. <summary>
  8859. <para>An abstract class for schema content.</para>
  8860. </summary>
  8861. </member>
  8862. <member name="P:System.Xml.Schema.XmlSchemaComplexContentExtension.BaseTypeName">
  8863. <summary>
  8864. <para>Gets or sets the name of the
  8865. complex type from which this type is derived by extension.</para>
  8866. </summary>
  8867. </member>
  8868. <member name="P:System.Xml.Schema.XmlSchemaComplexContentExtension.Particle">
  8869. <summary>
  8870. <para>Gets or sets one of the <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />,
  8871. or
  8872. <see cref="T:System.Xml.Schema.XmlSchemaSequence" />
  8873. classes.</para>
  8874. </summary>
  8875. </member>
  8876. <member name="P:System.Xml.Schema.XmlSchemaComplexContentExtension.Attributes">
  8877. <summary>
  8878. Gets the collection of attributes for the complex
  8879. content. Contains <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> and
  8880. <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" /> elements.
  8881. </summary>
  8882. </member>
  8883. <member name="P:System.Xml.Schema.XmlSchemaComplexContentExtension.AnyAttribute">
  8884. <summary>
  8885. <para>Gets or sets the <see langword="XmlSchemaAnyAttribute" /> component of the complex
  8886. content model.</para>
  8887. </summary>
  8888. </member>
  8889. <member name="T:System.Xml.Schema.XmlSchemaComplexContentRestriction">
  8890. <summary>
  8891. <para> Class for complex types with a complex content model that
  8892. are derived by restriction. Restricts the contents of the complex type to a
  8893. subset of the inherited complex type. Represents the World Wide Web Consortium
  8894. (W3C) <see langword="restriction" />
  8895. element for complex
  8896. content.</para>
  8897. </summary>
  8898. </member>
  8899. <member name="P:System.Xml.Schema.XmlSchemaComplexContentRestriction.BaseTypeName">
  8900. <summary>
  8901. <para> Gets or sets
  8902. the name of a complex type from which this type is derived by restriction.</para>
  8903. </summary>
  8904. </member>
  8905. <member name="P:System.Xml.Schema.XmlSchemaComplexContentRestriction.Particle">
  8906. <summary>
  8907. <para>Gets or sets one of the <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />,
  8908. or
  8909. <see cref="T:System.Xml.Schema.XmlSchemaSequence" />classes.</para>
  8910. </summary>
  8911. </member>
  8912. <member name="P:System.Xml.Schema.XmlSchemaComplexContentRestriction.Attributes">
  8913. <summary>
  8914. <para>Gets the collection of attributes for the complex type.
  8915. Contains the <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> and
  8916. <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" />
  8917. elements.</para>
  8918. </summary>
  8919. </member>
  8920. <member name="P:System.Xml.Schema.XmlSchemaComplexContentRestriction.AnyAttribute">
  8921. <summary>
  8922. <para>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the complex content
  8923. model.</para>
  8924. </summary>
  8925. </member>
  8926. <member name="T:System.Xml.Schema.XmlSchemaComplexType">
  8927. <summary>
  8928. <para>Class for complex types. Defines a complex type that
  8929. determines the set of attributes and content of an element. Represents the World
  8930. Wide Web Consortium (W3C) <see langword="complexType" />
  8931. element.</para>
  8932. </summary>
  8933. </member>
  8934. <member name="T:System.Xml.Schema.XmlSchemaType">
  8935. <summary>
  8936. <para>The base class for all simple types and complex
  8937. types.</para>
  8938. </summary>
  8939. </member>
  8940. <member name="P:System.Xml.Schema.XmlSchemaType.Name">
  8941. <summary>
  8942. <para>Gets or sets the name of the type.</para>
  8943. </summary>
  8944. </member>
  8945. <member name="P:System.Xml.Schema.XmlSchemaType.Final">
  8946. <summary>
  8947. <para>Gets or sets the <see langword="final" /> property to indicate that no further derivations are allowed.</para>
  8948. </summary>
  8949. </member>
  8950. <member name="P:System.Xml.Schema.XmlSchemaType.QualifiedName">
  8951. <summary>
  8952. <para>Gets the qualified name for the type built from the <see langword="Name " />attribute of this type. This holds
  8953. the post-compilation value.</para>
  8954. </summary>
  8955. </member>
  8956. <member name="P:System.Xml.Schema.XmlSchemaType.FinalResolved">
  8957. <summary>
  8958. <para>Gets the post-compilation value of the <see langword="Final" /> property that holds the post-compilation
  8959. value of the <see langword="Final" />
  8960. property.</para>
  8961. </summary>
  8962. </member>
  8963. <member name="P:System.Xml.Schema.XmlSchemaType.BaseSchemaType">
  8964. <summary>
  8965. <para> Gets the object of the <see langword="simpleType" />
  8966. element or <see langword="complexType" /> element. This is a post-schema-validation-infoset variable.</para>
  8967. </summary>
  8968. </member>
  8969. <member name="P:System.Xml.Schema.XmlSchemaType.DerivedBy">
  8970. <summary>
  8971. <para> When overridden in a derived class, this property gets information that indicates how this element
  8972. has been derived from a base type. This property holds the post-compilation
  8973. value.</para>
  8974. </summary>
  8975. </member>
  8976. <member name="P:System.Xml.Schema.XmlSchemaType.Datatype">
  8977. <summary>
  8978. <para>Gets the data type that holds the post-compilation
  8979. value.</para>
  8980. </summary>
  8981. </member>
  8982. <member name="P:System.Xml.Schema.XmlSchemaType.IsMixed">
  8983. <summary>
  8984. <para>Indicates that this type has a mixed content model. This
  8985. property is only valid in a complex type.</para>
  8986. </summary>
  8987. </member>
  8988. <member name="M:System.Xml.Schema.XmlSchemaComplexType.#ctor">
  8989. <summary>
  8990. <para>Used to create a <see langword="complexType" /> element.</para>
  8991. </summary>
  8992. </member>
  8993. <member name="P:System.Xml.Schema.XmlSchemaComplexType.IsAbstract">
  8994. <summary>
  8995. <para>Gets or sets the information that determines if the <see langword="complexType " /> element can be used in the instance document.</para>
  8996. </summary>
  8997. </member>
  8998. <member name="P:System.Xml.Schema.XmlSchemaComplexType.Block">
  8999. <summary>
  9000. <para>Gets or sets the <see langword="block" /> attribute.</para>
  9001. </summary>
  9002. </member>
  9003. <member name="P:System.Xml.Schema.XmlSchemaComplexType.IsMixed">
  9004. <summary>
  9005. <para> Gets or sets information that determines if the complex type has a mixed content
  9006. model (markup within the content).</para>
  9007. </summary>
  9008. </member>
  9009. <member name="P:System.Xml.Schema.XmlSchemaComplexType.ContentModel">
  9010. <summary>
  9011. <para>Gets or sets the content model type. </para>
  9012. </summary>
  9013. </member>
  9014. <member name="P:System.Xml.Schema.XmlSchemaComplexType.Particle">
  9015. <summary>
  9016. <para> Gets or sets the compositor type as one of the
  9017. <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />,
  9018. or <see cref="T:System.Xml.Schema.XmlSchemaSequence" />
  9019. classes.</para>
  9020. </summary>
  9021. </member>
  9022. <member name="P:System.Xml.Schema.XmlSchemaComplexType.Attributes">
  9023. <summary>
  9024. <para>Gets the collection of attributes for the complex type.</para>
  9025. </summary>
  9026. </member>
  9027. <member name="P:System.Xml.Schema.XmlSchemaComplexType.AnyAttribute">
  9028. <summary>
  9029. <para>Gets or sets the value for the
  9030. <see langword="XmlSchemaAnyAttribute" /> component of the complex
  9031. type.</para>
  9032. </summary>
  9033. </member>
  9034. <member name="P:System.Xml.Schema.XmlSchemaComplexType.ContentType">
  9035. <summary>
  9036. <para>Gets the content model of the complex type which holds
  9037. the post-compilation value.</para>
  9038. </summary>
  9039. </member>
  9040. <member name="P:System.Xml.Schema.XmlSchemaComplexType.ContentTypeParticle">
  9041. <summary>
  9042. <para>Gets the particle which holds the post-compilation value
  9043. of the <see langword="ContentTypeParticle" /> property. This
  9044. <see langword="ContentTypeParticle" /> is determined after the content models of the most derived types and the base complex type have been resolved
  9045. according to the rules defined in the World Wide Web Consortium (W3C) XML Schema
  9046. definition language (XSD) specification. </para>
  9047. </summary>
  9048. </member>
  9049. <member name="P:System.Xml.Schema.XmlSchemaComplexType.BlockResolved">
  9050. <summary>
  9051. <para> Gets the value after the type has been compiled to the
  9052. post-schema-validation infoset. This value indicates how the type is enforced when
  9053. <see langword="xsi:type" />
  9054. is used in
  9055. the instance document.</para>
  9056. </summary>
  9057. </member>
  9058. <member name="P:System.Xml.Schema.XmlSchemaComplexType.AttributeUses">
  9059. <summary>
  9060. <para> Gets the collection of all the attributes from this
  9061. complex type and its base types which holds the post-compilation value of the
  9062. <see langword="AttributeUses" />
  9063. property.</para>
  9064. </summary>
  9065. </member>
  9066. <member name="P:System.Xml.Schema.XmlSchemaComplexType.AttributeWildcard">
  9067. <summary>
  9068. <para>Gets the <see langword="anyAttribute" /> element from this complex type and
  9069. its base types which holds the post-compilation value of
  9070. the <see langword="AttributeWildcard" />
  9071. property.</para>
  9072. </summary>
  9073. </member>
  9074. <member name="T:System.Xml.Schema.XmlSchemaContentProcessing">
  9075. <summary>
  9076. <para>Provides information about the validation mode of
  9077. <see langword="any" /> and <see langword="anyAttribute" /> element replacements.</para>
  9078. </summary>
  9079. </member>
  9080. <member name="F:System.Xml.Schema.XmlSchemaContentProcessing.None">
  9081. <summary>
  9082. <para>The item is not validated.</para>
  9083. </summary>
  9084. </member>
  9085. <member name="F:System.Xml.Schema.XmlSchemaContentProcessing.Skip">
  9086. <summary>
  9087. <para>The item must consist of well-formed XML and is not
  9088. validated by the schema.</para>
  9089. <para>The XML processor attempts to notify the client through a validation event
  9090. handler with <see cref="P:System.Xml.Schema.ValidationEventArgs.Severity" /> =
  9091. <see langword="XmlSeverityType.Warning" />
  9092. that no validation took place for the given
  9093. item. If a validation event handler has not been setup, no information
  9094. is returned when the warning is produced. </para>
  9095. </summary>
  9096. </member>
  9097. <member name="F:System.Xml.Schema.XmlSchemaContentProcessing.Lax">
  9098. <summary>
  9099. <para>If the item has a uniquely determined declaration
  9100. available, it must be valid with respect to that
  9101. definition. Otherwise, the item is not validated.</para>
  9102. <para>If the item is not validated, the XML processor attempts to notify the client through a validation event handler
  9103. with <see cref="P:System.Xml.Schema.ValidationEventArgs.Severity" /> =
  9104. <see langword="XmlSeverityType.Warning" />
  9105. . If a validation
  9106. event handler has not been setup, no information is returned when the warning is
  9107. produced.</para>
  9108. </summary>
  9109. </member>
  9110. <member name="F:System.Xml.Schema.XmlSchemaContentProcessing.Strict">
  9111. <summary>
  9112. <para>The item must be schema-valid based on the schema
  9113. definition obtained from the namespace-qualified item name.</para>
  9114. If a validation error occurs, and a validation event handler is not provided,
  9115. an exception is thrown.
  9116. </summary>
  9117. </member>
  9118. <member name="T:System.Xml.Schema.XmlSchemaContentType">
  9119. <summary>
  9120. <para> Enumerations for the content model of the complex
  9121. type. This represents the content in the post-schema-validation infoset.</para>
  9122. </summary>
  9123. </member>
  9124. <member name="F:System.Xml.Schema.XmlSchemaContentType.TextOnly">
  9125. <summary>
  9126. <para> Text-only content.</para>
  9127. </summary>
  9128. </member>
  9129. <member name="F:System.Xml.Schema.XmlSchemaContentType.Empty">
  9130. <summary>
  9131. <para> Empty content.</para>
  9132. </summary>
  9133. </member>
  9134. <member name="F:System.Xml.Schema.XmlSchemaContentType.ElementOnly">
  9135. <summary>
  9136. <para> Element-only content.</para>
  9137. </summary>
  9138. </member>
  9139. <member name="F:System.Xml.Schema.XmlSchemaContentType.Mixed">
  9140. <summary>
  9141. <para> Mixed content.</para>
  9142. </summary>
  9143. </member>
  9144. <member name="T:System.Xml.Schema.XmlSchemaDerivationMethod">
  9145. <summary>
  9146. <para> Provides different
  9147. methods for preventing derivation.</para>
  9148. </summary>
  9149. </member>
  9150. <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Empty">
  9151. <summary>
  9152. <para>Override default derivation method to allow any
  9153. derivation.</para>
  9154. </summary>
  9155. </member>
  9156. <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Substitution">
  9157. <summary>
  9158. <para> Refers to derivations by
  9159. <see langword="Substitution" /> .</para>
  9160. </summary>
  9161. </member>
  9162. <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Extension">
  9163. <summary>
  9164. <para> Refers to derivations by <see langword="Extension" /> .</para>
  9165. </summary>
  9166. </member>
  9167. <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Restriction">
  9168. <summary>
  9169. <para> Refers to derivations by
  9170. <see langword="Restriction" /> .</para>
  9171. </summary>
  9172. </member>
  9173. <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.List">
  9174. <summary>
  9175. <para>Refers to derivations by <see langword="List" /> .</para>
  9176. </summary>
  9177. </member>
  9178. <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Union">
  9179. <summary>
  9180. <para> Refers to derivations by <see langword="Union" /> .</para>
  9181. </summary>
  9182. </member>
  9183. <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.All">
  9184. <summary>
  9185. <para>
  9186. <see langword="#all" /> . Refers to all
  9187. derivation methods.</para>
  9188. </summary>
  9189. </member>
  9190. <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.None">
  9191. <summary>
  9192. Accepts the default derivation method.
  9193. </summary>
  9194. </member>
  9195. <member name="T:System.Xml.Schema.XmlSchemaDocumentation">
  9196. <summary>
  9197. <para> Class that specifies information to be read or used by humans within an annotation.
  9198. Represents the World Wide Web Consortium (W3C) <see langword="documentation" />
  9199. element.</para>
  9200. </summary>
  9201. </member>
  9202. <member name="P:System.Xml.Schema.XmlSchemaDocumentation.Source">
  9203. <summary>
  9204. <para> Gets or sets the URI source of the information.</para>
  9205. </summary>
  9206. </member>
  9207. <member name="P:System.Xml.Schema.XmlSchemaDocumentation.Language">
  9208. <summary>
  9209. <para>Gets or sets the <see langword="xml:lang" /> attribute. This serves as an indicator of
  9210. the language used in the contents.</para>
  9211. </summary>
  9212. </member>
  9213. <member name="P:System.Xml.Schema.XmlSchemaDocumentation.Markup">
  9214. <summary>
  9215. <para>Gets or sets an array of <see langword="XmlNodes" /> that represents the documentation child nodes.</para>
  9216. </summary>
  9217. </member>
  9218. <member name="T:System.Xml.Schema.XmlSchemaElement">
  9219. <summary>
  9220. <para> Class for elements. Represents the World Wide Web Consortium (W3C)
  9221. <see langword="element" /> element.</para>
  9222. </summary>
  9223. </member>
  9224. <member name="P:System.Xml.Schema.XmlSchemaElement.IsAbstract">
  9225. <summary>
  9226. <para>Gets or sets information to indicate if the element
  9227. can be used in an instance document.</para>
  9228. </summary>
  9229. </member>
  9230. <member name="P:System.Xml.Schema.XmlSchemaElement.Block">
  9231. <summary>
  9232. <para>Gets or sets a <see langword="Block" /> derivation.</para>
  9233. </summary>
  9234. </member>
  9235. <member name="P:System.Xml.Schema.XmlSchemaElement.DefaultValue">
  9236. <summary>
  9237. <para>Gets or sets the default value of the element if its content
  9238. is a simple type or content of the element is <see langword="textOnly" />.</para>
  9239. </summary>
  9240. </member>
  9241. <member name="P:System.Xml.Schema.XmlSchemaElement.Final">
  9242. <summary>
  9243. <para>Gets or sets the <see langword="Final" /> property to indicate that no further derivations are allowed.</para>
  9244. </summary>
  9245. </member>
  9246. <member name="P:System.Xml.Schema.XmlSchemaElement.FixedValue">
  9247. <summary>
  9248. <para>Gets or sets the fixed value.</para>
  9249. </summary>
  9250. </member>
  9251. <member name="P:System.Xml.Schema.XmlSchemaElement.Form">
  9252. <summary>
  9253. <para>Gets or sets the form for the element.</para>
  9254. </summary>
  9255. </member>
  9256. <member name="P:System.Xml.Schema.XmlSchemaElement.Name">
  9257. <summary>
  9258. <para>Gets or sets the name of the element.</para>
  9259. </summary>
  9260. </member>
  9261. <member name="P:System.Xml.Schema.XmlSchemaElement.IsNillable">
  9262. <summary>
  9263. <para>Gets or sets information that indicates if <see langword="xsi:nil" /> can occur in the instance data.
  9264. Indicates if an explicit nil value can be assigned to the element.</para>
  9265. </summary>
  9266. </member>
  9267. <member name="P:System.Xml.Schema.XmlSchemaElement.RefName">
  9268. <summary>
  9269. <para>Gets or sets the reference name of an element declared
  9270. in this schema (or another schema indicated by the specified namespace).</para>
  9271. </summary>
  9272. </member>
  9273. <member name="P:System.Xml.Schema.XmlSchemaElement.SubstitutionGroup">
  9274. <summary>
  9275. <para> Gets or sets the name of an element that is being substituted by this
  9276. element.</para>
  9277. </summary>
  9278. </member>
  9279. <member name="P:System.Xml.Schema.XmlSchemaElement.SchemaTypeName">
  9280. <summary>
  9281. <para>Gets or sets the name of a built-in data type defined in this schema or another schema
  9282. indicated by the specified namespace. </para>
  9283. </summary>
  9284. </member>
  9285. <member name="P:System.Xml.Schema.XmlSchemaElement.SchemaType">
  9286. <summary>
  9287. <para>Gets or sets the type of the element. This can either be a complex type
  9288. or a simple type.</para>
  9289. </summary>
  9290. </member>
  9291. <member name="P:System.Xml.Schema.XmlSchemaElement.Constraints">
  9292. <summary>
  9293. <para>Gets the collection of constraints on the element.</para>
  9294. </summary>
  9295. </member>
  9296. <member name="P:System.Xml.Schema.XmlSchemaElement.QualifiedName">
  9297. <summary>
  9298. <para>Gets the actual qualified name for the given element.
  9299. This is the name that a <see langword="ref" /> attribute
  9300. refers to. The qualified name consists of the NCName of the element. For
  9301. example, element name = "NCName", and the prefix used to describe the
  9302. <see langword="targetNamespace" />
  9303. of the schema. This property holds the
  9304. post-compilation value of the <see langword="QualifiedName" /> property.</para>
  9305. </summary>
  9306. </member>
  9307. <member name="P:System.Xml.Schema.XmlSchemaElement.ElementType">
  9308. <summary>
  9309. <para>Gets a common language runtime (CLR) object based on
  9310. the <see cref="T:System.Xml.Schema.XmlSchemaElement" /> or <see cref="T:System.Xml.Schema.XmlSchemaElement" />of the element
  9311. which holds the post-compilation value of the <see langword="ElementType" /> property.</para>
  9312. </summary>
  9313. </member>
  9314. <member name="P:System.Xml.Schema.XmlSchemaElement.BlockResolved">
  9315. <summary>
  9316. <para>Gets the post-compilation value of
  9317. the <see langword="Block" /> property which holds the post-compilation
  9318. value of the <see langword="Block" />
  9319. property.</para>
  9320. </summary>
  9321. </member>
  9322. <member name="P:System.Xml.Schema.XmlSchemaElement.FinalResolved">
  9323. <summary>
  9324. <para>Gets the post-compilation value of the
  9325. <see langword="Final" /> property which holds the post-compilation
  9326. value of the <see langword="Final" />
  9327. property.</para>
  9328. </summary>
  9329. </member>
  9330. <member name="T:System.Xml.Schema.XmlSchemaException">
  9331. <summary>
  9332. <para> Returns detailed information about the schema exception.</para>
  9333. </summary>
  9334. </member>
  9335. <member name="M:System.Xml.Schema.XmlSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  9336. <summary>
  9337. <para>Constructs a new <see langword="XmlSchemaException" /> object with the given
  9338. <see langword="SerializationInfo" /> and <see langword="StreamingContext" />
  9339. information that contains all the
  9340. properties of the <see langword="XmlSchemaException" />. </para>
  9341. </summary>
  9342. <param name="info">SerializationInfo</param>
  9343. <param name="context">StreamingContext</param>
  9344. </member>
  9345. <member name="M:System.Xml.Schema.XmlSchemaException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  9346. <summary>
  9347. <para>Streams all the <see langword="XmlSchemaException" /> properties into the
  9348. <see langword="SerializationInfo" /> class for the given
  9349. <see langword="StreamingContext" />
  9350. . </para>
  9351. </summary>
  9352. <param name="info">The <see langword="SerializationInfo" />.</param>
  9353. <param name=" context">The <see langword="StreamingContext" />information.</param>
  9354. </member>
  9355. <member name="M:System.Xml.Schema.XmlSchemaException.#ctor(System.String,System.Exception)">
  9356. <summary>
  9357. <para>The formatted error message describing the error code.</para>
  9358. </summary>
  9359. <param name="message">The string.</param>
  9360. <param name=" innerException">The exception.</param>
  9361. </member>
  9362. <member name="P:System.Xml.Schema.XmlSchemaException.SourceUri">
  9363. <summary>
  9364. <para> Gets the location of the file used to load the schema.</para>
  9365. </summary>
  9366. </member>
  9367. <member name="P:System.Xml.Schema.XmlSchemaException.LineNumber">
  9368. <summary>
  9369. Gets the line number indicating where the
  9370. error occurred.
  9371. </summary>
  9372. </member>
  9373. <member name="P:System.Xml.Schema.XmlSchemaException.LinePosition">
  9374. <summary>
  9375. <para>Gets the line position indicating where the error occurred.</para>
  9376. </summary>
  9377. </member>
  9378. <member name="P:System.Xml.Schema.XmlSchemaException.SourceSchemaObject">
  9379. <summary>
  9380. <para>The <see langword="XmlSchemaObject" />
  9381. that produced the
  9382. <see langword="XmlSchemaException" />
  9383. .</para>
  9384. </summary>
  9385. </member>
  9386. <member name="T:System.Xml.Schema.XmlSchemaExternal">
  9387. <summary>
  9388. <para>An abstract class. Provides information about the included schema.</para>
  9389. </summary>
  9390. </member>
  9391. <member name="P:System.Xml.Schema.XmlSchemaExternal.SchemaLocation">
  9392. <summary>
  9393. <para>Gets or sets the URI location for the schema, which tells the schema processor
  9394. where the schema physically resides.</para>
  9395. </summary>
  9396. </member>
  9397. <member name="P:System.Xml.Schema.XmlSchemaExternal.Schema">
  9398. <summary>
  9399. <para>Gets or sets the <see langword="XmlSchema" /> for the referenced schema. </para>
  9400. </summary>
  9401. </member>
  9402. <member name="P:System.Xml.Schema.XmlSchemaExternal.Id">
  9403. <summary>
  9404. <para>Gets or sets the string id.</para>
  9405. </summary>
  9406. </member>
  9407. <member name="P:System.Xml.Schema.XmlSchemaExternal.UnhandledAttributes">
  9408. <summary>
  9409. <para>Gets and sets the qualified attributes which do not belong to the schema
  9410. target namespace.</para>
  9411. </summary>
  9412. </member>
  9413. <member name="T:System.Xml.Schema.XmlSchemaFacet">
  9414. <summary>
  9415. <para> Abstract class for all facets that are used when simple types
  9416. are derived by restriction.</para>
  9417. </summary>
  9418. </member>
  9419. <member name="P:System.Xml.Schema.XmlSchemaFacet.Value">
  9420. <summary>
  9421. <para>Gets or sets the <see langword="value" /> attribute of the facet.</para>
  9422. </summary>
  9423. </member>
  9424. <member name="P:System.Xml.Schema.XmlSchemaFacet.IsFixed">
  9425. <summary>
  9426. <para> Gets or sets information that indicates that this facet is fixed.</para>
  9427. <para>This property is unused by <see langword="XmlSchemaEnumerationFacet" /> and
  9428. <see langword="XmlSchemaPatternFacet" /> because these classes cannot be
  9429. fixed.</para>
  9430. </summary>
  9431. </member>
  9432. <member name="T:System.Xml.Schema.XmlSchemaNumericFacet">
  9433. <summary>
  9434. <para>Abstract class for defining <see langword="numeric" /> facets.</para>
  9435. </summary>
  9436. </member>
  9437. <member name="T:System.Xml.Schema.XmlSchemaLengthFacet">
  9438. <summary>
  9439. <para>Class for defining <see langword="length" /> facets. Represents the World Wide Web
  9440. Consortium (W3C) <see langword="length" />
  9441. facet.</para>
  9442. </summary>
  9443. </member>
  9444. <member name="T:System.Xml.Schema.XmlSchemaMinLengthFacet">
  9445. <summary>
  9446. <para>Class for defining <see langword="minLength" /> facets. Represents the World Wide Web
  9447. Consortium (W3C) <see langword="minLength" /> facet.</para>
  9448. </summary>
  9449. </member>
  9450. <member name="T:System.Xml.Schema.XmlSchemaMaxLengthFacet">
  9451. <summary>
  9452. <para>Class for defining <see langword="maxLength" /> facets. Represents the World Wide Web
  9453. Consortium (W3C) <see langword="maxLength" /> facet.</para>
  9454. </summary>
  9455. </member>
  9456. <member name="T:System.Xml.Schema.XmlSchemaPatternFacet">
  9457. <summary>
  9458. <para>Class for defining <see langword="pattern" /> facets. Represents the World Wide Web
  9459. Consortium (W3C) <see langword="pattern" /> facet.</para>
  9460. </summary>
  9461. </member>
  9462. <member name="T:System.Xml.Schema.XmlSchemaEnumerationFacet">
  9463. <summary>
  9464. <para>Class for defining <see langword="enumeration" /> facets. Represents the World Wide Web
  9465. Consortium (W3C) <see langword="enumeration" /> facet.</para>
  9466. </summary>
  9467. </member>
  9468. <member name="T:System.Xml.Schema.XmlSchemaMinExclusiveFacet">
  9469. <summary>
  9470. <para>Class for defining <see langword="minExclusive" /> facets. Represents the World Wide Web
  9471. Consortium (W3C) <see langword="minExclusive" /> facet.</para>
  9472. </summary>
  9473. </member>
  9474. <member name="T:System.Xml.Schema.XmlSchemaMinInclusiveFacet">
  9475. <summary>
  9476. <para>Class for defining <see langword="minInclusive" /> facets. Represents the World Wide Web
  9477. Consortium (W3C) <see langword="minInclusive" /> facet.</para>
  9478. </summary>
  9479. </member>
  9480. <member name="T:System.Xml.Schema.XmlSchemaMaxExclusiveFacet">
  9481. <summary>
  9482. <para>Class for defining <see langword="maxExclusive" /> facets. Represents the World Wide Web
  9483. Consortium (W3C) <see langword="maxExclusive" /> facet.</para>
  9484. </summary>
  9485. </member>
  9486. <member name="T:System.Xml.Schema.XmlSchemaMaxInclusiveFacet">
  9487. <summary>
  9488. <para>Class for defining <see langword="maxInclusive" /> facets. Represents the World Wide Web
  9489. Consortium (W3C) <see langword="maxInclusive" /> facet.</para>
  9490. </summary>
  9491. </member>
  9492. <member name="T:System.Xml.Schema.XmlSchemaTotalDigitsFacet">
  9493. <summary>
  9494. <para>Class for defining <see langword="totalDigits" /> facets. Represents the World Wide Web
  9495. Consortium (W3C) <see langword="totalDigits" /> facet.</para>
  9496. </summary>
  9497. </member>
  9498. <member name="T:System.Xml.Schema.XmlSchemaFractionDigitsFacet">
  9499. <summary>
  9500. <para>Class for defining <see langword="fractionDigits" /> facets. Represents the World Wide
  9501. Web Consortium (W3C) <see langword="fractionDigits" /> facet.</para>
  9502. </summary>
  9503. </member>
  9504. <member name="T:System.Xml.Schema.XmlSchemaWhiteSpaceFacet">
  9505. <summary>
  9506. <para>Class for defining <see langword="whiteSpace" /> facets. Represents the World Wide Web
  9507. Consortium (W3C) <see langword="whiteSpace" /> facet.</para>
  9508. </summary>
  9509. </member>
  9510. <member name="T:System.Xml.Schema.XmlSchemaForm">
  9511. <summary>
  9512. <para>Indicates if attributes or elements need to
  9513. be qualified or left unqualified.</para>
  9514. </summary>
  9515. </member>
  9516. <member name="F:System.Xml.Schema.XmlSchemaForm.None">
  9517. <summary>
  9518. <para>Form has not been specified. The default is
  9519. <see langword="Unqualified" /> .</para>
  9520. </summary>
  9521. </member>
  9522. <member name="F:System.Xml.Schema.XmlSchemaForm.Qualified">
  9523. <summary>
  9524. <para> Attribute or element must be qualified with the namespace prefix.</para>
  9525. </summary>
  9526. </member>
  9527. <member name="F:System.Xml.Schema.XmlSchemaForm.Unqualified">
  9528. <summary>
  9529. <para>Attribute or element is not required to be qualified with the namespace prefix.</para>
  9530. </summary>
  9531. </member>
  9532. <member name="T:System.Xml.Schema.XmlSchemaGroup">
  9533. <summary>
  9534. <para>Class that defines groups at the <see langword="schema" /> level that are referenced from the complex
  9535. types. Groups a set of element declarations so that they can be incorporated as
  9536. a group into complex type definitions. Represents the World Wide Web Consortium
  9537. (W3C) <see langword="group" />
  9538. element.</para>
  9539. </summary>
  9540. </member>
  9541. <member name="P:System.Xml.Schema.XmlSchemaGroup.Name">
  9542. <summary>
  9543. <para>Gets or sets the name of the schema group.</para>
  9544. </summary>
  9545. </member>
  9546. <member name="P:System.Xml.Schema.XmlSchemaGroup.Particle">
  9547. <summary>
  9548. <para>Gets or sets one of the <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" />
  9549. classes.</para>
  9550. </summary>
  9551. </member>
  9552. <member name="T:System.Xml.Schema.XmlSchemaGroupRef">
  9553. <summary>
  9554. <para>Class used within complex types that defines the
  9555. reference to groups defined at the <see langword="schema" />
  9556. level. Represents the World Wide Web Consortium
  9557. (W3C) <see langword="group" /> element with <see langword="ref" />
  9558. attribute.</para>
  9559. </summary>
  9560. </member>
  9561. <member name="P:System.Xml.Schema.XmlSchemaGroupRef.RefName">
  9562. <summary>
  9563. <para> Gets or sets the name of a group defined in this schema (or another schema
  9564. indicated by the specified namespace).</para>
  9565. </summary>
  9566. </member>
  9567. <member name="P:System.Xml.Schema.XmlSchemaGroupRef.Particle">
  9568. <summary>
  9569. <para> Gets one of the <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> classes which holds the post-compilation
  9570. value of the <see langword="Particle" /> property.</para>
  9571. </summary>
  9572. </member>
  9573. <member name="T:System.Xml.Schema.XmlSchemaIdentityConstraint">
  9574. <summary>
  9575. <para> Class for the identity constraints:
  9576. <see langword="key" />, <see langword="keyref" />,
  9577. and <see langword="unique" /> elements.</para>
  9578. </summary>
  9579. </member>
  9580. <member name="P:System.Xml.Schema.XmlSchemaIdentityConstraint.Name">
  9581. <summary>
  9582. <para>Gets or sets the name of the identity constraint.</para>
  9583. </summary>
  9584. </member>
  9585. <member name="P:System.Xml.Schema.XmlSchemaIdentityConstraint.Selector">
  9586. <summary>
  9587. <para>Gets or sets the XML Path Language (XPath) expression
  9588. <see langword="selector" /> element.</para>
  9589. </summary>
  9590. </member>
  9591. <member name="P:System.Xml.Schema.XmlSchemaIdentityConstraint.Fields">
  9592. <summary>
  9593. <para>Gets the collection of fields that apply as children for the XML Path Language
  9594. (XPath) expression selector.</para>
  9595. </summary>
  9596. </member>
  9597. <member name="P:System.Xml.Schema.XmlSchemaIdentityConstraint.QualifiedName">
  9598. <summary>
  9599. <para> Gets the qualified name of the identity constraint which
  9600. holds the post-compilation value of the <see langword="QualifiedName" /> property.</para>
  9601. </summary>
  9602. </member>
  9603. <member name="T:System.Xml.Schema.XmlSchemaXPath">
  9604. <summary>
  9605. <para>Class for XML Path Language (XPath) expressions.
  9606. Represents the World Wide Web Consortium (W3C) <see langword="selector" />
  9607. element. The World Wide Web Consortium (W3C) <see langword="field" /> element is a
  9608. collection of <see langword="XmlSchemaXPath" />
  9609. classes.</para>
  9610. </summary>
  9611. </member>
  9612. <member name="P:System.Xml.Schema.XmlSchemaXPath.XPath">
  9613. <summary>
  9614. <para>Gets or sets the attribute for the XML Path Language (XPath) expression.</para>
  9615. </summary>
  9616. </member>
  9617. <member name="T:System.Xml.Schema.XmlSchemaUnique">
  9618. <summary>
  9619. <para> Identifies a unique constraint among a set of elements.
  9620. Represents the World Wide Web Consortium (W3C) <see langword="unique" />
  9621. element.</para>
  9622. </summary>
  9623. </member>
  9624. <member name="T:System.Xml.Schema.XmlSchemaKey">
  9625. <summary>
  9626. <para>Identifies a <see langword="key" /> constraint. Represents the World Wide
  9627. Web Consortium (W3C) <see langword="key" /> element.</para>
  9628. </summary>
  9629. </member>
  9630. <member name="T:System.Xml.Schema.XmlSchemaKeyref">
  9631. <summary>
  9632. <para>Identifies a <see langword="keyref" /> constraint. Represents the World
  9633. Wide Web Consortium (W3C) <see langword="keyref" /> element.</para>
  9634. </summary>
  9635. </member>
  9636. <member name="P:System.Xml.Schema.XmlSchemaKeyref.Refer">
  9637. <summary>
  9638. <para>Gets or sets the name of the key that this constraint refers to in another
  9639. simple or complex type.</para>
  9640. </summary>
  9641. </member>
  9642. <member name="T:System.Xml.Schema.XmlSchemaImport">
  9643. <summary>
  9644. <para>The class to import schema components from any schema.
  9645. Represents the World Wide Web Consortium (W3C) <see langword="import" /> element.</para>
  9646. </summary>
  9647. </member>
  9648. <member name="P:System.Xml.Schema.XmlSchemaImport.Namespace">
  9649. <summary>
  9650. <para>Gets or sets the target namespace for the imported schema as a URI reference.</para>
  9651. </summary>
  9652. </member>
  9653. <member name="P:System.Xml.Schema.XmlSchemaImport.Annotation">
  9654. <summary>
  9655. <para>Gets or sets the <see langword="annotation" /> property.</para>
  9656. </summary>
  9657. </member>
  9658. <member name="T:System.Xml.Schema.XmlSchemaInclude">
  9659. <summary>
  9660. <para> Class to include declarations and definitions from an
  9661. external schema. Allows them to be available for processing in the containing
  9662. schema. Represents the World Wide Web Consortium
  9663. (W3C) <see langword="include" />
  9664. element.
  9665. </para>
  9666. </summary>
  9667. </member>
  9668. <member name="P:System.Xml.Schema.XmlSchemaInclude.Annotation">
  9669. <summary>
  9670. <para>Gets or sets the <see langword="annotation" /> property.</para>
  9671. </summary>
  9672. </member>
  9673. <member name="T:System.Xml.Schema.XmlSchemaNotation">
  9674. <summary>
  9675. <para>Class represents a notation. An XML Schema definition language (XSD) notation declaration
  9676. is a reconstruction of XML 1.0 NOTATION declarations. The purpose of notations
  9677. is to describe the format of non-XML data within an XML document. Represents the
  9678. World Wide Web Consortium (W3C) <see langword="notation" />
  9679. element. </para>
  9680. </summary>
  9681. </member>
  9682. <member name="P:System.Xml.Schema.XmlSchemaNotation.Name">
  9683. <summary>
  9684. <para>Gets or sets the name of the notation.</para>
  9685. </summary>
  9686. </member>
  9687. <member name="P:System.Xml.Schema.XmlSchemaNotation.Public">
  9688. <summary>
  9689. <para>Gets or sets the <see langword="public" /> identifier.</para>
  9690. </summary>
  9691. </member>
  9692. <member name="P:System.Xml.Schema.XmlSchemaNotation.System">
  9693. <summary>
  9694. <para>Gets or sets the <see langword="system" /> identifier.</para>
  9695. </summary>
  9696. </member>
  9697. <member name="T:System.Xml.Schema.XmlSchemaObjectCollection">
  9698. <summary>
  9699. <para>An object collection class to handle
  9700. <see langword="XmlSchemaObjects" /> when
  9701. collections are returned from method calls.</para>
  9702. </summary>
  9703. </member>
  9704. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.#ctor">
  9705. <summary>
  9706. <para>Initializes a new instance of the
  9707. <see langword="XmlSchemaObjectCollection" /> class.</para>
  9708. </summary>
  9709. </member>
  9710. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.#ctor(System.Xml.Schema.XmlSchemaObject)">
  9711. <summary>
  9712. <para>Initializes a new instance of the
  9713. <see langword="XmlSchemaObjectCollection" /> class that takes an
  9714. <see langword="XmlSchemaObject" /> .</para>
  9715. </summary>
  9716. <param name="parent">The <see langword="XmlSchemaObject" /> .</param>
  9717. </member>
  9718. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.GetEnumerator">
  9719. <summary>
  9720. <para>Returns an enumerator for iterating through the
  9721. <see langword="XmlSchemaObjects" /> contained in the
  9722. <see langword="XmlSchemaObjectCollection" /> .</para>
  9723. </summary>
  9724. <returns>
  9725. <para>The iterator returns
  9726. <see langword="XmlSchemaObjectEnumerator" />.</para>
  9727. </returns>
  9728. </member>
  9729. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.Add(System.Xml.Schema.XmlSchemaObject)">
  9730. <summary>
  9731. <para> Adds an <see langword="XmlSchemaObject" /> to the
  9732. <see langword="XmlSchemaObjectCollection" /> .</para>
  9733. </summary>
  9734. <param name="item">The <see langword="XmlSchemaObject" /> .</param>
  9735. <returns>
  9736. <para>The index at which the item has been added.</para>
  9737. </returns>
  9738. </member>
  9739. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.Insert(System.Int32,System.Xml.Schema.XmlSchemaObject)">
  9740. <summary>
  9741. <para>Inserts an <see langword="XmlSchemaObject " />to the
  9742. <see langword="XmlSchemaObjectCollection" />.</para>
  9743. </summary>
  9744. <param name="item">The <see langword="XmlSchemaObject" /> to insert.</param>
  9745. <param name=" index">The zero-based index at which item should be inserted.</param>
  9746. </member>
  9747. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.IndexOf(System.Xml.Schema.XmlSchemaObject)">
  9748. <summary>
  9749. <para>Gets the index of the specified
  9750. <see langword="XmlSchemaObject" /> within the collection<see langword=" " />of the
  9751. specified item.</para>
  9752. </summary>
  9753. <param name="item">The <see langword="XmlSchemaObject" /> .</param>
  9754. </member>
  9755. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.Contains(System.Xml.Schema.XmlSchemaObject)">
  9756. <summary>
  9757. <para>Indicates if the specified qualified name is located in the
  9758. <see langword="XmlSchemaObjectCollection" />.</para>
  9759. </summary>
  9760. <param name="item">The <see langword="XmlSchemaObject" /> .</param>
  9761. <returns>
  9762. <para>
  9763. <see langword="true" /> if the specified qualified name is in the
  9764. collection. Otherwise returns <see langword="false" /> . If null is supplied,
  9765. <see langword="false" /> is returned because there is no qualified name with a null
  9766. name. </para>
  9767. </returns>
  9768. </member>
  9769. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.Remove(System.Xml.Schema.XmlSchemaObject)">
  9770. <summary>
  9771. <para>Removes an <see langword="XmlSchemaObject " />from the
  9772. <see langword="XmlSchemaObjectCollection" /> .</para>
  9773. </summary>
  9774. <param name="item">The <see langword="XmlSchemaObject" />to remove.</param>
  9775. </member>
  9776. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.CopyTo(System.Xml.Schema.XmlSchemaObject[],System.Int32)">
  9777. <summary>
  9778. <para>Copies all the <see langword="XmlSchemaObjects" />
  9779. from the collection into the given array starting at the given index.</para>
  9780. </summary>
  9781. <param name="array">
  9782. <para>The one-dimensional array that is the destination of the elements copied from the <see langword="XmlSchemaObjectCollection" />. The array must have zero-based indexing. </para>
  9783. </param>
  9784. <param name=" index">
  9785. <para>The zero-based index in the array at which copying begins. </para>
  9786. </param>
  9787. </member>
  9788. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.OnInsert(System.Int32,System.Object)">
  9789. <summary>
  9790. <para>
  9791. <see langword="OnInsert" /> is
  9792. invoked before the standard <see langword="Insert" /> behavior. For
  9793. more information, see <see langword="OnInsert" /> method <see cref="T:System.Collections.CollectionBase" />
  9794. .</para>
  9795. </summary>
  9796. <param name="index">The index of <see langword="XmlSchemaObject" />.</param>
  9797. <param name=" item">The item.</param>
  9798. </member>
  9799. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.OnSet(System.Int32,System.Object,System.Object)">
  9800. <summary>
  9801. <para>
  9802. <see langword="OnSet" /> is invoked
  9803. before the standard <see langword="Set" /> behavior. For more
  9804. information, see OnSet method for <see cref="T:System.Collections.CollectionBase" /> .</para>
  9805. </summary>
  9806. <param name="index">The index of <see langword="XmlSchemaObject" />.</param>
  9807. <param name=" oldValue">The old value.</param>
  9808. <param name=" newValue">The new value.</param>
  9809. </member>
  9810. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.OnClear">
  9811. <summary>
  9812. <para>
  9813. <see langword="OnClear" /> is invoked
  9814. before the standard <see langword="Clear" /> behavior. For
  9815. more information, see OnClear method for <see cref="T:System.Collections.CollectionBase" /> .</para>
  9816. </summary>
  9817. </member>
  9818. <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.OnRemove(System.Int32,System.Object)">
  9819. <summary>
  9820. <para>
  9821. <see langword="OnRemove" /> is
  9822. invoked before the standard <see langword="Remove" /> behavior. For
  9823. more information, see <see langword="OnRemove" /> method for <see cref="T:System.Collections.CollectionBase" /> .</para>
  9824. </summary>
  9825. <param name="index">The index of <see langword="XmlSchemaObject" />.</param>
  9826. <param name=" item">The item.</param>
  9827. </member>
  9828. <member name="P:System.Xml.Schema.XmlSchemaObjectCollection.Item(System.Int32)">
  9829. <summary>
  9830. <para>Looks up the qualified name using the supplied
  9831. <see langword="XmlQualifiedName" /> and returns the
  9832. <see langword="XmlSchemaObject" />, the XML Schema definition language (XSD) element for this qualified name.</para>
  9833. </summary>
  9834. <param name="index">The index of the <see langword="XmlSchemaObject" />.</param>
  9835. </member>
  9836. <member name="T:System.Xml.Schema.XmlSchemaObjectEnumerator">
  9837. <summary>
  9838. <para>An enumerator class to walk the
  9839. <see langword="XmlSchemaObjectCollection " />
  9840. collections.</para>
  9841. </summary>
  9842. </member>
  9843. <member name="M:System.Xml.Schema.XmlSchemaObjectEnumerator.Reset">
  9844. <summary>
  9845. <para>Resets the enumerator to the start of the collection. </para>
  9846. </summary>
  9847. </member>
  9848. <member name="M:System.Xml.Schema.XmlSchemaObjectEnumerator.MoveNext">
  9849. <summary>
  9850. <para>Moves to the next item in the collection.</para>
  9851. </summary>
  9852. <returns>
  9853. <para>
  9854. <see langword="false" /> at the end of the collection.</para>
  9855. </returns>
  9856. </member>
  9857. <member name="P:System.Xml.Schema.XmlSchemaObjectEnumerator.Current">
  9858. <summary>
  9859. <para>Returns the <see langword="XmlSchemaObject" /> for the position of
  9860. the current enumerator.</para>
  9861. </summary>
  9862. </member>
  9863. <member name="T:System.Xml.Schema.XmlSchemaObjectTable">
  9864. <summary>
  9865. <para>A collection class that provides read-only helpers for
  9866. <see langword="XmlSchemaObject " />
  9867. objects. This class is used to provide the collections for
  9868. contained elements that are within the schema as collections that are accessed
  9869. from the <see langword="XmlSchema" /> class
  9870. (for example, <see langword="Attributes" />, <see langword="AttributeGroups" />,
  9871. <see langword="Elements" />
  9872. , and so on).</para>
  9873. </summary>
  9874. </member>
  9875. <member name="M:System.Xml.Schema.XmlSchemaObjectTable.Contains(System.Xml.XmlQualifiedName)">
  9876. <summary>
  9877. <para>Returns <see langword="true" /> if the specified qualified name is in the collection.</para>
  9878. </summary>
  9879. <param name="name">The <see langword="XmlQualifiedName" />.</param>
  9880. <returns>
  9881. <para>
  9882. <see langword="true" /> if the qualified
  9883. name is in the collection; otherwise <see langword="false" />.</para>
  9884. </returns>
  9885. </member>
  9886. <member name="M:System.Xml.Schema.XmlSchemaObjectTable.GetEnumerator">
  9887. <summary>
  9888. <para>Returns an enumerator for
  9889. the <see langword="XmlSchemaObject" /> contained in the collection. </para>
  9890. </summary>
  9891. <returns>
  9892. <para>Returns the <see langword="XmlSchemaObject " /> objects.</para>
  9893. </returns>
  9894. </member>
  9895. <member name="P:System.Xml.Schema.XmlSchemaObjectTable.Count">
  9896. <summary>
  9897. Gets the count of the items in the table.
  9898. </summary>
  9899. </member>
  9900. <member name="P:System.Xml.Schema.XmlSchemaObjectTable.Item(System.Xml.XmlQualifiedName)">
  9901. <summary>
  9902. <para>Looks up the qualified name by the supplied <see langword="XmlQualifiedName" />
  9903. and returns the <see langword="XmlSchemaObject" /> which is the XML Schema definition
  9904. language (XSD) element for this qualified name. Returns a null reference if there is a qualified "no" name associated with
  9905. the given name. </para>
  9906. </summary>
  9907. <param name="name">The <see langword="XmlQualifiedName" />.</param>
  9908. </member>
  9909. <member name="P:System.Xml.Schema.XmlSchemaObjectTable.Names">
  9910. <summary>
  9911. <para>Returns a collection of all the named elements in the collection as
  9912. <see langword="XmlSchemaObject" />. </para>
  9913. </summary>
  9914. </member>
  9915. <member name="P:System.Xml.Schema.XmlSchemaObjectTable.Values">
  9916. <summary>
  9917. <para>Returns a collection of the values for all the elements in the
  9918. collection as <see langword="XmlSchemaObject" />. </para>
  9919. </summary>
  9920. </member>
  9921. <member name="T:System.Xml.Schema.XmlSchemaRedefine">
  9922. <summary>
  9923. <para>Allows simple and complex types, groups, and attribute
  9924. groups from external schema files to be redefined in the current schema. This
  9925. class provides versioning for the schema elements. Represents the World Wide Web
  9926. Consortium (W3C) <see langword="redefine" />
  9927. element.</para>
  9928. </summary>
  9929. </member>
  9930. <member name="P:System.Xml.Schema.XmlSchemaRedefine.Items">
  9931. <summary>
  9932. <para>Gets the collection of the following classes: <see cref="T:System.Xml.Schema.XmlSchemaAnnotation" />, <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroup" />, <see cref="T:System.Xml.Schema.XmlSchemaComplexType" />, <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" />, and <see cref="T:System.Xml.Schema.XmlSchemaGroup" />
  9933. .</para>
  9934. </summary>
  9935. </member>
  9936. <member name="P:System.Xml.Schema.XmlSchemaRedefine.AttributeGroups">
  9937. <summary>
  9938. <para>Gets the <see langword="XmlSchemaObjectTable" />, for all attributes in the
  9939. schema, which holds the post-compilation value of
  9940. the <see langword="AttributeGroups" /> property.</para>
  9941. </summary>
  9942. </member>
  9943. <member name="P:System.Xml.Schema.XmlSchemaRedefine.SchemaTypes">
  9944. <summary>
  9945. <para>Gets the <see langword="XmlSchemaObjectTable" />,<see langword=" " />for all simple and complex
  9946. types in the schema, which holds the post-compilation value of the
  9947. <see langword="SchemaTypes" /> property.</para>
  9948. </summary>
  9949. </member>
  9950. <member name="P:System.Xml.Schema.XmlSchemaRedefine.Groups">
  9951. <summary>
  9952. <para>Gets the <see langword="XmlSchemaObjectTable" />, for all groups in the schema,
  9953. which holds the post-compilation value of the <see langword="Groups" /> property.</para>
  9954. </summary>
  9955. </member>
  9956. <member name="T:System.Xml.Schema.XmlSchemaSequence">
  9957. <summary>
  9958. <para>Requires the elements in the group to appear in the specified sequence within the
  9959. containing element. Represents the World Wide Web Consortium (W3C)
  9960. <see langword="sequence" />
  9961. (compositor) element.</para>
  9962. </summary>
  9963. </member>
  9964. <member name="P:System.Xml.Schema.XmlSchemaSequence.Items">
  9965. <summary>
  9966. <para>The elements contained within the compositor. Collection
  9967. of <see cref="T:System.Xml.Schema.XmlSchemaElement" />, <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaSequence" />, or <see cref="T:System.Xml.Schema.XmlSchemaAny" />
  9968. .</para>
  9969. </summary>
  9970. </member>
  9971. <member name="T:System.Xml.Schema.XmlSchemaSimpleContent">
  9972. <summary>
  9973. <para>Class for simple types and complex types with a simple
  9974. content model. Represents the World Wide Web Consortium
  9975. (W3C) <see langword="simpleContent" />
  9976. element.</para>
  9977. </summary>
  9978. </member>
  9979. <member name="P:System.Xml.Schema.XmlSchemaSimpleContent.Content">
  9980. <summary>
  9981. <para> Gets one of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleContentRestriction" /> or <see cref="T:System.Xml.Schema.XmlSchemaSimpleContentExtension" />
  9982. .</para>
  9983. </summary>
  9984. </member>
  9985. <member name="T:System.Xml.Schema.XmlSchemaSimpleContentExtension">
  9986. <summary>
  9987. <para> Class for simple types that are derived by extension.
  9988. Extends the simple type content of the element by adding attributes. Represents
  9989. the World Wide Web Consortium (W3C) <see langword="extension" />
  9990. element for simple content.</para>
  9991. </summary>
  9992. </member>
  9993. <member name="P:System.Xml.Schema.XmlSchemaSimpleContentExtension.BaseTypeName">
  9994. <summary>
  9995. <para> Gets or sets the name of a built-in data type or simple type from which this type is extended.</para>
  9996. </summary>
  9997. </member>
  9998. <member name="P:System.Xml.Schema.XmlSchemaSimpleContentExtension.Attributes">
  9999. <summary>
  10000. <para>Gets the collection of <see langword="XmlSchemaAttribute" /> and
  10001. <see langword="XmlSchemaAttributeGroupRef" />.</para>
  10002. </summary>
  10003. </member>
  10004. <member name="P:System.Xml.Schema.XmlSchemaSimpleContentExtension.AnyAttribute">
  10005. <summary>
  10006. <para>Gets or sets the <see langword="XmlSchemaAnyAttribute" /> to be used for the attribute value.</para>
  10007. </summary>
  10008. </member>
  10009. <member name="T:System.Xml.Schema.XmlSchemaSimpleContentRestriction">
  10010. <summary>
  10011. <para> Class for simple types that are derived by restriction.
  10012. Restricts the range of values for the element to a subset of the inherited
  10013. simple types. Represents the World Wide Web Consortium
  10014. (W3C) <see langword="restriction" />
  10015. element for
  10016. simple content.</para>
  10017. </summary>
  10018. </member>
  10019. <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.BaseTypeName">
  10020. <summary>
  10021. <para> Gets or sets the name of the built-in data type or simple type from which this type is
  10022. derived.</para>
  10023. </summary>
  10024. </member>
  10025. <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.BaseType">
  10026. <summary>
  10027. <para> Gets or sets the simple type base value.</para>
  10028. </summary>
  10029. </member>
  10030. <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.Facets">
  10031. <summary>
  10032. <para>Gets one or more of the following classes:</para>
  10033. <para>
  10034. <see cref="T:System.Xml.Schema.XmlSchemaLengthFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMinLengthFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMaxLengthFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaPatternFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaEnumerationFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMaxInclusiveFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMaxExclusiveFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMinInclusiveFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMinExclusiveFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaFractionDigitsFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaTotalDigitsFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaWhiteSpaceFacet" />
  10035. .</para>
  10036. </summary>
  10037. </member>
  10038. <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.Attributes">
  10039. <summary>
  10040. <para>Gets the <see langword="XmlSchemaAttribute" /> and
  10041. <see langword="XmlSchemaAttributeGroupRef" /> .
  10042. Collection of attributes for the simple type.</para>
  10043. </summary>
  10044. </member>
  10045. <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.AnyAttribute">
  10046. <summary>
  10047. <para>Gets or sets an <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> to be used for the
  10048. attribute value.</para>
  10049. </summary>
  10050. </member>
  10051. <member name="T:System.Xml.Schema.XmlSchemaSimpleType">
  10052. <summary>
  10053. <para>Class defines a simple type that determines the
  10054. information and constraints for the values of attributes or elements with
  10055. text-only content. Represents the World Wide Web Consortium
  10056. (W3C) <see langword="simpleType" />
  10057. element.</para>
  10058. </summary>
  10059. </member>
  10060. <member name="P:System.Xml.Schema.XmlSchemaSimpleType.Content">
  10061. <summary>
  10062. <para>Gets or sets one of <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeUnion" />, <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeList" />, or <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeRestriction" />
  10063. .</para>
  10064. </summary>
  10065. </member>
  10066. <member name="T:System.Xml.Schema.XmlSchemaSimpleTypeContent">
  10067. <summary>
  10068. <para>Abstract class for simple type content classes.</para>
  10069. </summary>
  10070. </member>
  10071. <member name="T:System.Xml.Schema.XmlSchemaSimpleTypeList">
  10072. <summary>
  10073. <para>Class for the list of <see langword="simpleType" />
  10074. elements. Defines a <see langword="simpleType" /> element as a list of values of a
  10075. specified data type. Represents the World Wide Web Consortium
  10076. (W3C) <see langword="list" />
  10077. element.</para>
  10078. </summary>
  10079. </member>
  10080. <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeList.ItemTypeName">
  10081. <summary>
  10082. <para> Gets or sets the name of a built-in
  10083. data type or <see langword="simpleType" />
  10084. element defined in this schema (or another schema
  10085. indicated by the specified namespace).</para>
  10086. </summary>
  10087. </member>
  10088. <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeList.ItemType">
  10089. <summary>
  10090. <para>Gets or sets the <see langword="simpleType" /> element that is derived from the type specified by
  10091. the base value.</para>
  10092. </summary>
  10093. </member>
  10094. <member name="T:System.Xml.Schema.XmlSchemaSimpleTypeRestriction">
  10095. <summary>
  10096. <para>Class for the restriction of <see langword="simpleType" /> elements. Represents the World Wide Web
  10097. Consortium (W3C) <see langword="restriction" /> element for simple types.</para>
  10098. </summary>
  10099. </member>
  10100. <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeRestriction.BaseTypeName">
  10101. <summary>
  10102. <para>Gets or sets the name of the qualified base type.</para>
  10103. </summary>
  10104. </member>
  10105. <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeRestriction.BaseType">
  10106. <summary>
  10107. <para>Gets or sets information on the base type.</para>
  10108. </summary>
  10109. </member>
  10110. <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeRestriction.Facets">
  10111. <summary>
  10112. <para>Gets one or more of the following classes: <see cref="T:System.Xml.Schema.XmlSchemaLengthFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMinLengthFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMaxLengthFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaPatternFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaEnumerationFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMaxInclusiveFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMaxExclusiveFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMinInclusiveFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaMinExclusiveFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaFractionDigitsFacet" />, <see cref="T:System.Xml.Schema.XmlSchemaTotalDigitsFacet" /> , <see cref="T:System.Xml.Schema.XmlSchemaWhiteSpaceFacet" />
  10113. .</para>
  10114. </summary>
  10115. </member>
  10116. <member name="T:System.Xml.Schema.XmlSchemaSimpleTypeUnion">
  10117. <summary>
  10118. <para>Class for the union of <see langword="simpleType" />
  10119. elements. Defines a <see langword="simpleType" /> element as a list of values of a
  10120. specified data type. Represents the World Wide Web Consortium
  10121. (W3C) <see langword="union" />
  10122. element.</para>
  10123. </summary>
  10124. </member>
  10125. <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeUnion.MemberTypesSource">
  10126. <summary>
  10127. <para>Gets or sets the list of members of built-in data types or
  10128. <see langword="simpleType" />
  10129. elements defined in this schema (or another schema indicated by the
  10130. specified namespace). </para>
  10131. </summary>
  10132. </member>
  10133. <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeUnion.BaseTypes">
  10134. <summary>
  10135. <para>Gets the collection of base types.</para>
  10136. </summary>
  10137. </member>
  10138. <member name="T:System.Xml.Schema.XmlSchemaUse">
  10139. <summary>
  10140. <para>Indicator of how the attribute is used.</para>
  10141. </summary>
  10142. </member>
  10143. <member name="F:System.Xml.Schema.XmlSchemaUse.None">
  10144. <summary>
  10145. <para> Attribute use not specified.</para>
  10146. </summary>
  10147. </member>
  10148. <member name="F:System.Xml.Schema.XmlSchemaUse.Optional">
  10149. <summary>
  10150. Attribute is optional.
  10151. </summary>
  10152. </member>
  10153. <member name="F:System.Xml.Schema.XmlSchemaUse.Prohibited">
  10154. <summary>
  10155. <para>Attribute cannot be used.</para>
  10156. </summary>
  10157. </member>
  10158. <member name="F:System.Xml.Schema.XmlSchemaUse.Required">
  10159. <summary>
  10160. <para>Attribute must appear once.</para>
  10161. </summary>
  10162. </member>
  10163. <member name="T:System.Xml.Schema.XmlSeverityType">
  10164. <summary>
  10165. <para>Represents the severity of the validation event.</para>
  10166. </summary>
  10167. </member>
  10168. <member name="F:System.Xml.Schema.XmlSeverityType.Error">
  10169. <summary>
  10170. <para> Indicates a validation error occurred when validating the instance document. This applies to
  10171. document type definitions (DTDs) and XML-Data Reduced (XDR) and XML Schema definition
  10172. language (XSD) schemas. The World Wide Web Consortium (W3C) validity constraints
  10173. are considered errors. If no validation event handler has been created,
  10174. errors throw an exception.
  10175. </para>
  10176. </summary>
  10177. </member>
  10178. <member name="F:System.Xml.Schema.XmlSeverityType.Warning">
  10179. <summary>
  10180. <para>Warnings indicate that a validation event occurred that is not an error but may be important
  10181. enough to warn the user about. A warning is typically issued when there is
  10182. no DTD, XML-Data Reduced (XDR) or XML Schema (XSD) to
  10183. validate a particular element or attribute against. The <see cref="P:System.Xml.XmlValidatingReader.ValidationType" qualify="true" /> setting determines the
  10184. type of the schema used. Unlike errors, warnings do not throw an exception
  10185. if there is no validation event handler. </para>
  10186. </summary>
  10187. </member>
  10188. <member name="M:System.Xml.Serialization.CodeIdentifier.MakePascal(System.String)">
  10189. <summary>
  10190. <para>[To be supplied.]</para>
  10191. </summary>
  10192. </member>
  10193. <member name="M:System.Xml.Serialization.CodeIdentifier.MakeCamel(System.String)">
  10194. <summary>
  10195. <para>[To be supplied.]</para>
  10196. </summary>
  10197. </member>
  10198. <member name="M:System.Xml.Serialization.CodeIdentifier.MakeValid(System.String)">
  10199. <summary>
  10200. <para>[To be supplied.]</para>
  10201. </summary>
  10202. </member>
  10203. <member name="M:System.Xml.Serialization.CodeIdentifiers.Clear">
  10204. <summary>
  10205. <para>[To be supplied.]</para>
  10206. </summary>
  10207. </member>
  10208. <member name="M:System.Xml.Serialization.CodeIdentifiers.MakeRightCase(System.String)">
  10209. <summary>
  10210. <para>[To be supplied.]</para>
  10211. </summary>
  10212. </member>
  10213. <member name="M:System.Xml.Serialization.CodeIdentifiers.MakeUnique(System.String)">
  10214. <summary>
  10215. <para>[To be supplied.]</para>
  10216. </summary>
  10217. </member>
  10218. <member name="M:System.Xml.Serialization.CodeIdentifiers.AddReserved(System.String)">
  10219. <summary>
  10220. <para>[To be supplied.]</para>
  10221. </summary>
  10222. </member>
  10223. <member name="M:System.Xml.Serialization.CodeIdentifiers.RemoveReserved(System.String)">
  10224. <summary>
  10225. <para>[To be supplied.]</para>
  10226. </summary>
  10227. </member>
  10228. <member name="M:System.Xml.Serialization.CodeIdentifiers.AddUnique(System.String,System.Object)">
  10229. <summary>
  10230. <para>[To be supplied.]</para>
  10231. </summary>
  10232. </member>
  10233. <member name="M:System.Xml.Serialization.CodeIdentifiers.IsInUse(System.String)">
  10234. <summary>
  10235. <para>[To be supplied.]</para>
  10236. </summary>
  10237. </member>
  10238. <member name="M:System.Xml.Serialization.CodeIdentifiers.Add(System.String,System.Object)">
  10239. <summary>
  10240. <para>[To be supplied.]</para>
  10241. </summary>
  10242. </member>
  10243. <member name="M:System.Xml.Serialization.CodeIdentifiers.Remove(System.String)">
  10244. <summary>
  10245. <para>[To be supplied.]</para>
  10246. </summary>
  10247. </member>
  10248. <member name="M:System.Xml.Serialization.CodeIdentifiers.ToArray(System.Type)">
  10249. <summary>
  10250. <para>[To be supplied.]</para>
  10251. </summary>
  10252. </member>
  10253. <member name="P:System.Xml.Serialization.CodeIdentifiers.UseCamelCasing">
  10254. <summary>
  10255. <para>[To be supplied.]</para>
  10256. </summary>
  10257. </member>
  10258. <member name="M:System.Xml.Serialization.IXmlSerializable.GetSchema">
  10259. <returns>
  10260. <para>An <see cref="T:System.Xml.Schema.XmlSchema" /> object that represents the XML schema.</para>
  10261. </returns>
  10262. </member>
  10263. <member name="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)">
  10264. <summary>
  10265. <para>Converts an XML document into an object using the specified reader.</para>
  10266. </summary>
  10267. <param name="reader">The <see cref="T:System.Xml.XmlReader" /> used to read the XML document.</param>
  10268. </member>
  10269. <member name="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)">
  10270. <summary>
  10271. <para>Converts the serializable members of an object into an XML document.</para>
  10272. </summary>
  10273. <param name="writer">The XmlWriter used to write the XML-document instance.</param>
  10274. </member>
  10275. <member name="T:System.Xml.Serialization.SoapAttributeAttribute">
  10276. <summary>
  10277. <para>Specifies that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> should serialize the class member as an encoded SOAP attribute.</para>
  10278. </summary>
  10279. </member>
  10280. <member name="M:System.Xml.Serialization.SoapAttributeAttribute.#ctor">
  10281. <summary>
  10282. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapAttributeAttribute" /> class.</para>
  10283. </summary>
  10284. </member>
  10285. <member name="M:System.Xml.Serialization.SoapAttributeAttribute.#ctor(System.String)">
  10286. <summary>
  10287. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapAttributeAttribute" /> class using the specified value as the
  10288. name of the XML attribute. </para>
  10289. </summary>
  10290. <param name="attrName">The name of the XML attribute.</param>
  10291. </member>
  10292. <member name="P:System.Xml.Serialization.SoapAttributeAttribute.AttributeName">
  10293. <summary>
  10294. <para> Gets or sets the name of the XML attribute generated
  10295. by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> .</para>
  10296. </summary>
  10297. </member>
  10298. <member name="P:System.Xml.Serialization.SoapAttributeAttribute.Namespace">
  10299. <summary>
  10300. <para>Gets or sets the XML namespace of the XML attribute.</para>
  10301. </summary>
  10302. </member>
  10303. <member name="P:System.Xml.Serialization.SoapAttributeAttribute.DataType">
  10304. <summary>
  10305. <para> Gets or sets the XML Schema definition language (XSD) data type of the SOAP attribute
  10306. generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" />.</para>
  10307. </summary>
  10308. </member>
  10309. <member name="T:System.Xml.Serialization.SoapAttributeOverrides">
  10310. <summary>
  10311. <para>Allows you to override property, field, and class
  10312. attributes when you use an <see cref="T:System.Xml.Serialization.XmlSerializer" /> to serialize
  10313. or deserialize an object as encoded SOAP.</para>
  10314. </summary>
  10315. </member>
  10316. <member name="M:System.Xml.Serialization.SoapAttributeOverrides.Add(System.Type,System.Xml.Serialization.SoapAttributes)">
  10317. <summary>
  10318. <para>Adds a <see cref="T:System.Xml.Serialization.SoapAttributes" /> to a collection of collection
  10319. of <see cref="T:System.Xml.Serialization.SoapAttributes" /> objects. The <paramref name="type" /> parameter specifies an object to be overridden by the <see cref="T:System.Xml.Serialization.SoapAttributes" /> .</para>
  10320. </summary>
  10321. <param name="type">The <see cref="T:System.Type" /> of the object that will be overridden.</param>
  10322. <param name=" attributes">A <see cref="T:System.Xml.Serialization.SoapAttributes" /> that represents the overriding attributes.</param>
  10323. </member>
  10324. <member name="M:System.Xml.Serialization.SoapAttributeOverrides.Add(System.Type,System.String,System.Xml.Serialization.SoapAttributes)">
  10325. <summary>
  10326. <para>Adds a <see cref="T:System.Xml.Serialization.SoapAttributes" /> to the collection
  10327. of <see cref="T:System.Xml.Serialization.SoapAttributes" /> objects contained by the <see cref="T:System.Xml.Serialization.SoapAttributeOverrides" /> . The <paramref name="type" /> parameter
  10328. specifies the object to be overridden by the <see cref="T:System.Xml.Serialization.SoapAttributes" /> . The <paramref name="member" /> parameter
  10329. specifies the name of a member that will be overridden.</para>
  10330. </summary>
  10331. <param name="type">The <see cref="T:System.Type" /> of the object to override.</param>
  10332. <param name=" member">The name of the member to override.</param>
  10333. <param name="attributes">A <see cref="T:System.Xml.Serialization.SoapAttributes" /> that represents the overriding attributes.</param>
  10334. </member>
  10335. <member name="P:System.Xml.Serialization.SoapAttributeOverrides.Item(System.Type)">
  10336. <summary>
  10337. <para>Gets the object associated with the specified (base class) type.</para>
  10338. </summary>
  10339. <param name="type">The base class class <see cref="T:System.Type" /> that is associated with the collection of attributes you want to retrieve. </param>
  10340. </member>
  10341. <member name="P:System.Xml.Serialization.SoapAttributeOverrides.Item(System.Type,System.String)">
  10342. <summary>
  10343. <para>Gets the object associated with the specified (base
  10344. class) type. The <paramref name="member " />parameter
  10345. specifies the base class member that is overridden.</para>
  10346. </summary>
  10347. <param name="type">The base class class <see cref="T:System.Type" /> that is associated with the collection of attributes you want to override. </param>
  10348. <param name=" member">The name of the overridden member that specifies the <see cref="T:System.Xml.Serialization.SoapAttributes" /> to return.</param>
  10349. </member>
  10350. <member name="T:System.Xml.Serialization.SoapAttributes">
  10351. <summary>
  10352. <para>Represents a collection of attribute objects that control
  10353. how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes and deserializes SOAP methods.</para>
  10354. </summary>
  10355. </member>
  10356. <member name="M:System.Xml.Serialization.SoapAttributes.#ctor">
  10357. <summary>
  10358. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapAttributes" /> class.</para>
  10359. </summary>
  10360. </member>
  10361. <member name="P:System.Xml.Serialization.SoapAttributes.SoapType">
  10362. <summary>
  10363. <para>Gets or sets an object that instructs the <see cref="T:System.Xml.Serialization.XmlSerializer" /> how to serialize an object type into encoded SOAP XML.</para>
  10364. </summary>
  10365. </member>
  10366. <member name="P:System.Xml.Serialization.SoapAttributes.SoapEnum">
  10367. <summary>
  10368. <para>Gets or sets an object that specifies how the <see cref="T:System.Xml.Serialization.XmlSerializer" />
  10369. serializes a SOAP enumeration.</para>
  10370. </summary>
  10371. </member>
  10372. <member name="P:System.Xml.Serialization.SoapAttributes.SoapIgnore">
  10373. <summary>
  10374. <para>Gets or sets a value that specifies whether the <see cref="T:System.Xml.Serialization.XmlSerializer" />
  10375. serializes a public field or property as encoded SOAP XML.</para>
  10376. </summary>
  10377. </member>
  10378. <member name="P:System.Xml.Serialization.SoapAttributes.SoapElement">
  10379. <summary>
  10380. <para>Gets or sets a <see cref="T:System.Xml.Serialization.SoapElementAttribute" /> to override.</para>
  10381. </summary>
  10382. </member>
  10383. <member name="P:System.Xml.Serialization.SoapAttributes.SoapAttribute">
  10384. <summary>
  10385. <para>Gets or sets the <see cref="T:System.Xml.Serialization.SoapAttributeAttribute" /> to override.</para>
  10386. </summary>
  10387. </member>
  10388. <member name="P:System.Xml.Serialization.SoapAttributes.SoapDefaultValue">
  10389. <summary>
  10390. <para>Gets or sets the default value of an XML element or attribute.</para>
  10391. </summary>
  10392. </member>
  10393. <member name="M:System.Xml.Serialization.SoapCodeExporter.#ctor(System.CodeDom.CodeNamespace)">
  10394. <summary>
  10395. <para>[To be supplied.]</para>
  10396. </summary>
  10397. </member>
  10398. <member name="M:System.Xml.Serialization.SoapCodeExporter.#ctor(System.CodeDom.CodeNamespace,System.CodeDom.CodeCompileUnit)">
  10399. </member>
  10400. <member name="M:System.Xml.Serialization.SoapCodeExporter.ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping)">
  10401. <summary>
  10402. <para>[To be supplied.]</para>
  10403. </summary>
  10404. </member>
  10405. <member name="M:System.Xml.Serialization.SoapCodeExporter.ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping)">
  10406. <summary>
  10407. <para>[To be supplied.]</para>
  10408. </summary>
  10409. </member>
  10410. <member name="M:System.Xml.Serialization.SoapCodeExporter.AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection,System.Xml.Serialization.XmlMemberMapping,System.Boolean)">
  10411. <summary>
  10412. <para>[To be supplied.]</para>
  10413. </summary>
  10414. </member>
  10415. <member name="M:System.Xml.Serialization.SoapCodeExporter.AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection,System.Xml.Serialization.XmlMemberMapping)">
  10416. <summary>
  10417. <para>[To be supplied.]</para>
  10418. </summary>
  10419. </member>
  10420. <member name="P:System.Xml.Serialization.SoapCodeExporter.IncludeMetadata">
  10421. <summary>
  10422. <para>[To be supplied.]</para>
  10423. </summary>
  10424. </member>
  10425. <member name="T:System.Xml.Serialization.SoapElementAttribute">
  10426. <summary>
  10427. <para> Specifies
  10428. that the public member value be serialized by the <see cref="T:System.Xml.Serialization.XmlSerializer" />
  10429. as an encoded SOAP XML element.</para>
  10430. </summary>
  10431. </member>
  10432. <member name="M:System.Xml.Serialization.SoapElementAttribute.#ctor">
  10433. <summary>
  10434. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapElementAttribute" /> class.</para>
  10435. </summary>
  10436. </member>
  10437. <member name="M:System.Xml.Serialization.SoapElementAttribute.#ctor(System.String)">
  10438. <summary>
  10439. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapElementAttribute" /> class and specifies the
  10440. name of the XML element.</para>
  10441. </summary>
  10442. <param name="elementName">The XML element name of the serialized member.</param>
  10443. </member>
  10444. <member name="P:System.Xml.Serialization.SoapElementAttribute.ElementName">
  10445. <summary>
  10446. <para>Gets or sets the name of the generated XML element.</para>
  10447. </summary>
  10448. </member>
  10449. <member name="P:System.Xml.Serialization.SoapElementAttribute.DataType">
  10450. <summary>
  10451. <para>Gets or sets the XML Schema definition language (XSD) data type of the generated XML element.</para>
  10452. </summary>
  10453. </member>
  10454. <member name="P:System.Xml.Serialization.SoapElementAttribute.IsNullable">
  10455. <summary>
  10456. <para>Gets or sets a value indicating whether the <see cref="T:System.Xml.Serialization.XmlSerializer" /> should serialize a member that is set
  10457. to <see langword="null " />into the <see langword="xsi:nil " />attribute set to
  10458. <see langword="true" />.</para>
  10459. </summary>
  10460. </member>
  10461. <member name="T:System.Xml.Serialization.SoapEnumAttribute">
  10462. <summary>
  10463. <para>Controls how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes an enumeration member.</para>
  10464. </summary>
  10465. </member>
  10466. <member name="M:System.Xml.Serialization.SoapEnumAttribute.#ctor">
  10467. <summary>
  10468. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapEnumAttribute" /> class.</para>
  10469. </summary>
  10470. </member>
  10471. <member name="M:System.Xml.Serialization.SoapEnumAttribute.#ctor(System.String)">
  10472. <summary>
  10473. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapEnumAttribute" /> class, using the
  10474. specified element name.</para>
  10475. </summary>
  10476. <param name="name">The XML element name generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" />.</param>
  10477. </member>
  10478. <member name="P:System.Xml.Serialization.SoapEnumAttribute.Name">
  10479. <summary>
  10480. <para>Gets or sets the value generated in an XML document when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes an enumeration, or the
  10481. value recognized when it deserializes the enumeration member.</para>
  10482. </summary>
  10483. </member>
  10484. <member name="T:System.Xml.Serialization.SoapIgnoreAttribute">
  10485. <summary>
  10486. <para>Instructs the <see cref="T:System.Xml.Serialization.XmlSerializer" /> not to serialize the public field or
  10487. public read/write property value.</para>
  10488. </summary>
  10489. </member>
  10490. <member name="M:System.Xml.Serialization.SoapIgnoreAttribute.#ctor">
  10491. <summary>
  10492. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapIgnoreAttribute" /> class.</para>
  10493. </summary>
  10494. </member>
  10495. <member name="T:System.Xml.Serialization.SoapIncludeAttribute">
  10496. <summary>
  10497. <para>Allows the <see cref="T:System.Xml.Serialization.XmlSerializer" /> to recognize a type
  10498. when it serializes or deserializes an object as encoded SOAP XML.</para>
  10499. </summary>
  10500. </member>
  10501. <member name="M:System.Xml.Serialization.SoapIncludeAttribute.#ctor(System.Type)">
  10502. <summary>
  10503. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapIncludeAttribute" /> class using the
  10504. specified type.</para>
  10505. </summary>
  10506. <param name="type">The type of the object to include.</param>
  10507. </member>
  10508. <member name="P:System.Xml.Serialization.SoapIncludeAttribute.Type">
  10509. <summary>
  10510. <para> Gets or sets the type of the object that should be
  10511. used when serializing or deserializing an object. </para>
  10512. </summary>
  10513. </member>
  10514. <member name="M:System.Xml.Serialization.SoapReflectionImporter.#ctor">
  10515. <summary>
  10516. <para>[To be supplied.]</para>
  10517. </summary>
  10518. </member>
  10519. <member name="M:System.Xml.Serialization.SoapReflectionImporter.#ctor(System.String)">
  10520. <summary>
  10521. <para>[To be supplied.]</para>
  10522. </summary>
  10523. </member>
  10524. <member name="M:System.Xml.Serialization.SoapReflectionImporter.#ctor(System.Xml.Serialization.SoapAttributeOverrides)">
  10525. <summary>
  10526. <para>[To be supplied.]</para>
  10527. </summary>
  10528. </member>
  10529. <member name="M:System.Xml.Serialization.SoapReflectionImporter.#ctor(System.Xml.Serialization.SoapAttributeOverrides,System.String)">
  10530. <summary>
  10531. <para>[To be supplied.]</para>
  10532. </summary>
  10533. </member>
  10534. <member name="M:System.Xml.Serialization.SoapReflectionImporter.IncludeTypes(System.Reflection.ICustomAttributeProvider)">
  10535. <summary>
  10536. <para>[To be supplied.]</para>
  10537. </summary>
  10538. </member>
  10539. <member name="M:System.Xml.Serialization.SoapReflectionImporter.IncludeType(System.Type)">
  10540. <summary>
  10541. <para>[To be supplied.]</para>
  10542. </summary>
  10543. </member>
  10544. <member name="M:System.Xml.Serialization.SoapReflectionImporter.ImportTypeMapping(System.Type)">
  10545. <summary>
  10546. <para>Returns a object used to map from a type to an XML representation using the
  10547. specified type.</para>
  10548. </summary>
  10549. <param name="type">The <see cref="T:System.Type" /> of the object to reflect.</param>
  10550. <returns>
  10551. <para>An XmlTypeMapping that maps the type to an XML
  10552. representation.</para>
  10553. </returns>
  10554. </member>
  10555. <member name="M:System.Xml.Serialization.SoapReflectionImporter.ImportTypeMapping(System.Type,System.String)">
  10556. <summary>
  10557. <para>Returns a object used to map from a type to an XML
  10558. representation using the specified type and namespace.</para>
  10559. </summary>
  10560. <param name="type">The <see cref="T:System.Type" /> of the object to reflect.</param>
  10561. <param name=" defaultNamespace">The default XML namespace.</param>
  10562. </member>
  10563. <member name="M:System.Xml.Serialization.SoapReflectionImporter.ImportMembersMapping(System.String,System.String,System.Xml.Serialization.XmlReflectionMember[])">
  10564. <summary>
  10565. <para>[To be supplied.]</para>
  10566. </summary>
  10567. </member>
  10568. <member name="M:System.Xml.Serialization.SoapReflectionImporter.ImportMembersMapping(System.String,System.String,System.Xml.Serialization.XmlReflectionMember[],System.Boolean,System.Boolean)">
  10569. <summary>
  10570. <para>[To be supplied.]</para>
  10571. </summary>
  10572. </member>
  10573. <member name="M:System.Xml.Serialization.SoapReflectionImporter.ImportMembersMapping(System.String,System.String,System.Xml.Serialization.XmlReflectionMember[],System.Boolean,System.Boolean,System.Boolean)">
  10574. <summary>
  10575. <para>[To be supplied.]</para>
  10576. </summary>
  10577. </member>
  10578. <member name="M:System.Xml.Serialization.SoapSchemaExporter.#ctor(System.Xml.Serialization.XmlSchemas)">
  10579. <summary>
  10580. <para>[To be supplied.]</para>
  10581. </summary>
  10582. </member>
  10583. <member name="M:System.Xml.Serialization.SoapSchemaExporter.ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping)">
  10584. </member>
  10585. <member name="M:System.Xml.Serialization.SoapSchemaExporter.ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping)">
  10586. <summary>
  10587. <para>[To be supplied.]</para>
  10588. </summary>
  10589. </member>
  10590. <member name="M:System.Xml.Serialization.SoapSchemaExporter.ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping,System.Boolean)">
  10591. </member>
  10592. <member name="M:System.Xml.Serialization.SoapSchemaImporter.#ctor(System.Xml.Serialization.XmlSchemas)">
  10593. <summary>
  10594. <para>[To be supplied.]</para>
  10595. </summary>
  10596. </member>
  10597. <member name="M:System.Xml.Serialization.SoapSchemaImporter.#ctor(System.Xml.Serialization.XmlSchemas,System.Xml.Serialization.CodeIdentifiers)">
  10598. <summary>
  10599. <para>[To be supplied.]</para>
  10600. </summary>
  10601. </member>
  10602. <member name="M:System.Xml.Serialization.SoapSchemaImporter.ImportDerivedTypeMapping(System.Xml.XmlQualifiedName,System.Type,System.Boolean)">
  10603. <summary>
  10604. <para>[To be supplied.]</para>
  10605. </summary>
  10606. </member>
  10607. <member name="M:System.Xml.Serialization.SoapSchemaImporter.ImportMembersMapping(System.String,System.String,System.Xml.Serialization.SoapSchemaMember)">
  10608. <summary>
  10609. <para>[To be supplied.]</para>
  10610. </summary>
  10611. </member>
  10612. <member name="M:System.Xml.Serialization.SoapSchemaImporter.ImportMembersMapping(System.String,System.String,System.Xml.Serialization.SoapSchemaMember[])">
  10613. <summary>
  10614. <para>[To be supplied.]</para>
  10615. </summary>
  10616. </member>
  10617. <member name="M:System.Xml.Serialization.SoapSchemaImporter.ImportMembersMapping(System.String,System.String,System.Xml.Serialization.SoapSchemaMember[],System.Boolean)">
  10618. <summary>
  10619. <para>[To be supplied.]</para>
  10620. </summary>
  10621. </member>
  10622. <member name="M:System.Xml.Serialization.SoapSchemaImporter.ImportMembersMapping(System.String,System.String,System.Xml.Serialization.SoapSchemaMember[],System.Boolean,System.Type,System.Boolean)">
  10623. </member>
  10624. <member name="P:System.Xml.Serialization.SoapSchemaMember.MemberType">
  10625. <summary>
  10626. <para>[To be supplied.]</para>
  10627. </summary>
  10628. </member>
  10629. <member name="P:System.Xml.Serialization.SoapSchemaMember.MemberName">
  10630. <summary>
  10631. <para>[To be supplied.]</para>
  10632. </summary>
  10633. </member>
  10634. <member name="T:System.Xml.Serialization.SoapTypeAttribute">
  10635. <summary>
  10636. <para> Controls the schema generated by
  10637. the <see cref="T:System.Xml.Serialization.XmlSerializer" /> when a class instance is serialized
  10638. as SOAP encoded XML.</para>
  10639. </summary>
  10640. </member>
  10641. <member name="M:System.Xml.Serialization.SoapTypeAttribute.#ctor">
  10642. <summary>
  10643. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapTypeAttribute" /> class.</para>
  10644. </summary>
  10645. </member>
  10646. <member name="M:System.Xml.Serialization.SoapTypeAttribute.#ctor(System.String)">
  10647. <summary>
  10648. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapTypeAttribute" /> class,
  10649. specifying the name of the XML type.</para>
  10650. </summary>
  10651. <param name="typeName">The name of the XML type that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates when it serializes the class instance (and recognizes when it deserializes the class instance).</param>
  10652. </member>
  10653. <member name="M:System.Xml.Serialization.SoapTypeAttribute.#ctor(System.String,System.String)">
  10654. <summary>
  10655. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.SoapTypeAttribute" /> class,
  10656. specifying the name and XML namespace of the type.</para>
  10657. </summary>
  10658. <param name="typeName">The name of the XML type that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates when it serializes the class instance (and recognizes when it deserializes the class instance).</param>
  10659. <param name=" ns">The XML namespace of the type.</param>
  10660. </member>
  10661. <member name="P:System.Xml.Serialization.SoapTypeAttribute.IncludeInSchema">
  10662. <summary>
  10663. <para> Gets or sets a value indicating whether to include
  10664. the type in SOAP-encoded XML Schema documents.</para>
  10665. </summary>
  10666. </member>
  10667. <member name="P:System.Xml.Serialization.SoapTypeAttribute.TypeName">
  10668. <summary>
  10669. <para>Gets or sets the name of the XML type.</para>
  10670. </summary>
  10671. </member>
  10672. <member name="P:System.Xml.Serialization.SoapTypeAttribute.Namespace">
  10673. <summary>
  10674. <para>Gets or sets the namespace of the XML type.</para>
  10675. </summary>
  10676. </member>
  10677. <member name="T:System.Xml.Serialization.XmlAnyAttributeAttribute">
  10678. <summary>
  10679. <para>Specifies that the member (a field that returns an
  10680. array of <see cref="T:System.Xml.XmlAttribute" />
  10681. objects)
  10682. can contain any XML attributes.</para>
  10683. </summary>
  10684. </member>
  10685. <member name="M:System.Xml.Serialization.XmlAnyAttributeAttribute.#ctor">
  10686. <summary>
  10687. <para>Constructs a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyAttributeAttribute" /> class.</para>
  10688. </summary>
  10689. </member>
  10690. <member name="T:System.Xml.Serialization.XmlAnyElementAttribute">
  10691. <summary>
  10692. <para>Specifies that the member (a field that returns an array of <see cref="T:System.Xml.XmlElement" /> or
  10693. <see cref="T:System.Xml.XmlNode" />
  10694. objects) can contain objects that represent any XML element that has no
  10695. corresponding member in the object being serialized or deserialized.</para>
  10696. </summary>
  10697. </member>
  10698. <member name="M:System.Xml.Serialization.XmlAnyElementAttribute.#ctor">
  10699. <summary>
  10700. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> class.</para>
  10701. </summary>
  10702. </member>
  10703. <member name="M:System.Xml.Serialization.XmlAnyElementAttribute.#ctor(System.String)">
  10704. <summary>
  10705. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> class; specifies the XML element name
  10706. generated in the XML document.</para>
  10707. </summary>
  10708. <param name="name">The name of the XML element that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates.</param>
  10709. </member>
  10710. <member name="M:System.Xml.Serialization.XmlAnyElementAttribute.#ctor(System.String,System.String)">
  10711. <summary>
  10712. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> class; specifies the XML element name
  10713. generated in the XML document and its XML namespace.</para>
  10714. </summary>
  10715. <param name="name">The name of the XML element that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates.</param>
  10716. <param name=" ns">The XML namespace of the XML element.</param>
  10717. </member>
  10718. <member name="P:System.Xml.Serialization.XmlAnyElementAttribute.Name">
  10719. <summary>
  10720. <para>Gets or sets the XML element name.</para>
  10721. </summary>
  10722. </member>
  10723. <member name="P:System.Xml.Serialization.XmlAnyElementAttribute.Namespace">
  10724. <summary>
  10725. <para>Gets or sets the XML namespace generated in the XML document.</para>
  10726. </summary>
  10727. </member>
  10728. <member name="T:System.Xml.Serialization.XmlAnyElementAttributes">
  10729. <summary>
  10730. <para>Represents a collection of <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> objects.</para>
  10731. </summary>
  10732. </member>
  10733. <member name="M:System.Xml.Serialization.XmlAnyElementAttributes.Add(System.Xml.Serialization.XmlAnyElementAttribute)">
  10734. <summary>
  10735. <para>Adds an <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" />to the collection.</para>
  10736. </summary>
  10737. <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> to add.</param>
  10738. <returns>
  10739. <para>The index of the newly added <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" />.</para>
  10740. </returns>
  10741. </member>
  10742. <member name="M:System.Xml.Serialization.XmlAnyElementAttributes.Insert(System.Int32,System.Xml.Serialization.XmlAnyElementAttribute)">
  10743. <summary>
  10744. <para>Inserts an <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> into the collection
  10745. at the specified index.</para>
  10746. </summary>
  10747. <param name=" index">The index where the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> will be inserted.</param>
  10748. <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> to insert.</param>
  10749. </member>
  10750. <member name="M:System.Xml.Serialization.XmlAnyElementAttributes.IndexOf(System.Xml.Serialization.XmlAnyElementAttribute)">
  10751. <summary>
  10752. <para>Gets the index of the specified <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> .</para>
  10753. </summary>
  10754. <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> whose index you want.</param>
  10755. <returns>
  10756. <para>The index of the specified <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> .</para>
  10757. </returns>
  10758. </member>
  10759. <member name="M:System.Xml.Serialization.XmlAnyElementAttributes.Contains(System.Xml.Serialization.XmlAnyElementAttribute)">
  10760. <summary>
  10761. <para>Gets a value indicating whether the specified <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> exists in the collection.</para>
  10762. </summary>
  10763. <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> you are interested in.</param>
  10764. <returns>
  10765. <para>
  10766. <see langword="true" /> if the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> exists in the
  10767. collection; otherwise, <see langword="false" />.</para>
  10768. </returns>
  10769. </member>
  10770. <member name="M:System.Xml.Serialization.XmlAnyElementAttributes.Remove(System.Xml.Serialization.XmlAnyElementAttribute)">
  10771. <summary>
  10772. <para>Removes the specified <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> from the collection.</para>
  10773. </summary>
  10774. <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> to remove.</param>
  10775. </member>
  10776. <member name="P:System.Xml.Serialization.XmlAnyElementAttributes.Item(System.Int32)">
  10777. <summary>
  10778. <para>Gets or sets the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> at the specified index.</para>
  10779. </summary>
  10780. <param name="index">The index of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" />.</param>
  10781. </member>
  10782. <member name="T:System.Xml.Serialization.XmlArrayAttribute">
  10783. <summary>
  10784. <para>Specifies that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> should serialize a particular class member as an array of XML elements.</para>
  10785. </summary>
  10786. </member>
  10787. <member name="M:System.Xml.Serialization.XmlArrayAttribute.#ctor">
  10788. <summary>
  10789. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlArrayAttribute" /> class.</para>
  10790. </summary>
  10791. </member>
  10792. <member name="M:System.Xml.Serialization.XmlArrayAttribute.#ctor(System.String)">
  10793. <summary>
  10794. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlArrayAttribute" />
  10795. class; specifies the XML element name generated in
  10796. the XML-document instance.</para>
  10797. </summary>
  10798. <param name="elementName">The name of the XML element that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates.</param>
  10799. </member>
  10800. <member name="P:System.Xml.Serialization.XmlArrayAttribute.ElementName">
  10801. <summary>
  10802. <para>Gets or sets the XML element name given to the serialized array.</para>
  10803. </summary>
  10804. </member>
  10805. <member name="P:System.Xml.Serialization.XmlArrayAttribute.Namespace">
  10806. <summary>
  10807. <para> Gets or set the namespace of the XML element.</para>
  10808. </summary>
  10809. </member>
  10810. <member name="P:System.Xml.Serialization.XmlArrayAttribute.IsNullable">
  10811. <summary>
  10812. <para>Gets or sets a value indicating whether the <see cref="T:System.Xml.Serialization.XmlSerializer" /> should
  10813. serialize a member as an empty XML tag
  10814. with the <see langword="xsi:nil " /> attribute set to <see langword="true" />.</para>
  10815. </summary>
  10816. </member>
  10817. <member name="P:System.Xml.Serialization.XmlArrayAttribute.Form">
  10818. <summary>
  10819. <para>Gets or sets a value indicating whether the XML element
  10820. name generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is qualified or unqualified.</para>
  10821. </summary>
  10822. </member>
  10823. <member name="T:System.Xml.Serialization.XmlArrayItemAttribute">
  10824. <summary>
  10825. <para>Specifies the derived types that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> can place in a serialized array.</para>
  10826. </summary>
  10827. </member>
  10828. <member name="M:System.Xml.Serialization.XmlArrayItemAttribute.#ctor">
  10829. <summary>
  10830. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlArrayItemAttribute" /> class.</para>
  10831. </summary>
  10832. </member>
  10833. <member name="M:System.Xml.Serialization.XmlArrayItemAttribute.#ctor(System.String)">
  10834. <summary>
  10835. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlArrayItemAttribute" /> class;
  10836. specifies
  10837. the name of the XML element generated in the XML document.</para>
  10838. </summary>
  10839. <param name="elementName">The name of the XML element. </param>
  10840. </member>
  10841. <member name="M:System.Xml.Serialization.XmlArrayItemAttribute.#ctor(System.Type)">
  10842. <summary>
  10843. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlArrayItemAttribute" /> class;
  10844. specifies the <see cref="T:System.Type" /> that can be inserted into the serialized array.</para>
  10845. </summary>
  10846. <param name="type">The <see cref="T:System.Type" /> of the object to serialize.</param>
  10847. </member>
  10848. <member name="M:System.Xml.Serialization.XmlArrayItemAttribute.#ctor(System.String,System.Type)">
  10849. <summary>
  10850. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlArrayItemAttribute" /> class;
  10851. specifies the
  10852. name of the XML element generated in the XML document, and the
  10853. <see cref="T:System.Type" /> that can
  10854. be inserted into the generated XML document.</para>
  10855. </summary>
  10856. <param name="elementName">The name of the XML element.</param>
  10857. <param name=" type">The <see cref="T:System.Type" /> of the object to serialize. </param>
  10858. </member>
  10859. <member name="P:System.Xml.Serialization.XmlArrayItemAttribute.Type">
  10860. <summary>
  10861. <para> Gets or sets the type allowed in an array.</para>
  10862. </summary>
  10863. </member>
  10864. <member name="P:System.Xml.Serialization.XmlArrayItemAttribute.ElementName">
  10865. <summary>
  10866. <para> Gets or sets the name of the generated XML element. </para>
  10867. </summary>
  10868. </member>
  10869. <member name="P:System.Xml.Serialization.XmlArrayItemAttribute.Namespace">
  10870. <summary>
  10871. <para> Gets or sets
  10872. the namespace of the generated XML element.</para>
  10873. </summary>
  10874. </member>
  10875. <member name="P:System.Xml.Serialization.XmlArrayItemAttribute.NestingLevel">
  10876. <summary>
  10877. <para>Gets or sets the level in a hierarchy of XML elements
  10878. that the <see cref="T:System.Xml.Serialization.XmlArrayItemAttribute" /> affects.</para>
  10879. </summary>
  10880. </member>
  10881. <member name="P:System.Xml.Serialization.XmlArrayItemAttribute.DataType">
  10882. <summary>
  10883. <para>Gets or sets the XML data type of the generated XML element.</para>
  10884. </summary>
  10885. </member>
  10886. <member name="P:System.Xml.Serialization.XmlArrayItemAttribute.IsNullable">
  10887. <summary>
  10888. <para>Gets or sets a value indicating whether the <see cref="T:System.Xml.Serialization.XmlSerializer" /> should
  10889. serialize a member as an empty XML tag with the <see langword="xsi:nil " />attribute set to <see langword="true" />.</para>
  10890. </summary>
  10891. </member>
  10892. <member name="P:System.Xml.Serialization.XmlArrayItemAttribute.Form">
  10893. <summary>
  10894. <para>Gets or sets a value indicating whether the name of the generated XML element is
  10895. qualified.</para>
  10896. </summary>
  10897. </member>
  10898. <member name="T:System.Xml.Serialization.XmlArrayItemAttributes">
  10899. <summary>
  10900. <para>Represents a collection of <see cref="T:System.Xml.Serialization.XmlArrayItemAttribute" /> objects.</para>
  10901. </summary>
  10902. </member>
  10903. <member name="M:System.Xml.Serialization.XmlArrayItemAttributes.Add(System.Xml.Serialization.XmlArrayItemAttribute)">
  10904. <summary>
  10905. <para>Adds an <see cref="T:System.Xml.Serialization.XmlArrayItemAttribute" /> to the collection.</para>
  10906. </summary>
  10907. <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlArrayItemAttribute" /> to add to the collection.</param>
  10908. <returns>
  10909. <para>The index of the added item.</para>
  10910. </returns>
  10911. </member>
  10912. <member name="P:System.Xml.Serialization.XmlArrayItemAttributes.Item(System.Int32)">
  10913. <summary>
  10914. <para>Gets or sets the item at the specified index.</para>
  10915. </summary>
  10916. <param name="index">The zero-based index of the collection member to get or set.</param>
  10917. </member>
  10918. <member name="T:System.Xml.Serialization.XmlAttributeAttribute">
  10919. <summary>
  10920. <para>Specifies that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> should serialize the class member as an XML attribute.</para>
  10921. </summary>
  10922. </member>
  10923. <member name="M:System.Xml.Serialization.XmlAttributeAttribute.#ctor">
  10924. <summary>
  10925. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAttributeAttribute" /> class.</para>
  10926. </summary>
  10927. </member>
  10928. <member name="M:System.Xml.Serialization.XmlAttributeAttribute.#ctor(System.String)">
  10929. <summary>
  10930. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAttributeAttribute" />
  10931. class and specifies the name of the generated XML attribute.</para>
  10932. </summary>
  10933. <param name="attributeName">The name of the XML attribute that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates.</param>
  10934. </member>
  10935. <member name="P:System.Xml.Serialization.XmlAttributeAttribute.AttributeName">
  10936. <summary>
  10937. <para>Gets or sets the name of the XML attribute.</para>
  10938. </summary>
  10939. </member>
  10940. <member name="P:System.Xml.Serialization.XmlAttributeAttribute.Namespace">
  10941. <summary>
  10942. <para>Gets or sets the XML namespace of the XML attribute.</para>
  10943. </summary>
  10944. </member>
  10945. <member name="P:System.Xml.Serialization.XmlAttributeAttribute.DataType">
  10946. <summary>
  10947. <para>Gets or sets the XSD data type of the XML attribute
  10948. generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> .</para>
  10949. </summary>
  10950. </member>
  10951. <member name="P:System.Xml.Serialization.XmlAttributeAttribute.Form">
  10952. <summary>
  10953. <para>Gets or sets a value indicating whether the XML
  10954. attribute name generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is qualified.</para>
  10955. </summary>
  10956. </member>
  10957. <member name="T:System.Xml.Serialization.XmlAttributeOverrides">
  10958. <summary>
  10959. <para>Allows you to override property, field, and class attributes
  10960. when you use the <see cref="T:System.Xml.Serialization.XmlSerializer" />
  10961. to serialize or deserialize an object.</para>
  10962. </summary>
  10963. </member>
  10964. <member name="M:System.Xml.Serialization.XmlAttributeOverrides.Add(System.Type,System.Xml.Serialization.XmlAttributes)">
  10965. <summary>
  10966. <para>Adds an <see cref="T:System.Xml.Serialization.XmlAttributes" /> object to the
  10967. collection of <see cref="T:System.Xml.Serialization.XmlAttributes" /> objects. The <paramref name="type" /> parameter
  10968. specifies an object to be overridden by the <see cref="T:System.Xml.Serialization.XmlAttributes" /> object.</para>
  10969. </summary>
  10970. <param name="type">The <see cref="T:System.Type" /> of the object that will be overridden.</param>
  10971. <param name=" attributes">An <see cref="T:System.Xml.Serialization.XmlAttributes" /> object that represents the overriding attributes.</param>
  10972. </member>
  10973. <member name="M:System.Xml.Serialization.XmlAttributeOverrides.Add(System.Type,System.String,System.Xml.Serialization.XmlAttributes)">
  10974. <summary>
  10975. <para>Adds an <see cref="T:System.Xml.Serialization.XmlAttributes" /> object to the
  10976. collection of <see cref="T:System.Xml.Serialization.XmlAttributes" /> objects. The <paramref name="type" /> parameter
  10977. specifies an object to be overridden. The <paramref name="member " />parameter specifies
  10978. the name of a member that will be overridden.</para>
  10979. </summary>
  10980. <param name="type">The <see cref="T:System.Type" /> of the object to override.</param>
  10981. <param name=" member">The name of the member to override.</param>
  10982. <param name="attributes">An <see cref="T:System.Xml.Serialization.XmlAttributes" /> object that represents the overriding attributes.</param>
  10983. </member>
  10984. <member name="P:System.Xml.Serialization.XmlAttributeOverrides.Item(System.Type)">
  10985. <summary>
  10986. <para>Gets the object associated with the specified, base-class, type.</para>
  10987. </summary>
  10988. <param name="type">The base-class class <see cref="T:System.Type" /> that is associated with the collection of attributes you want to retrieve. </param>
  10989. </member>
  10990. <member name="P:System.Xml.Serialization.XmlAttributeOverrides.Item(System.Type,System.String)">
  10991. <summary>
  10992. <para>Gets the object associated with the specified (base-class) type. The
  10993. member parameter specifies the base-class member that is overridden.</para>
  10994. </summary>
  10995. <param name="type">The base-class class <see cref="T:System.Type" /> that is associated with the collection of attributes you want. </param>
  10996. <param name=" member">The name of the overridden member that specifies the <see cref="T:System.Xml.Serialization.XmlAttributes" /> to return.</param>
  10997. </member>
  10998. <member name="T:System.Xml.Serialization.XmlAttributes">
  10999. <summary>
  11000. <para>Represents a collection of attribute objects that control
  11001. how the <see cref="T:System.Xml.Serialization.XmlSerializer" />
  11002. serializes and deserializes an object.</para>
  11003. </summary>
  11004. </member>
  11005. <member name="M:System.Xml.Serialization.XmlAttributes.#ctor">
  11006. <summary>
  11007. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAttributes" /> class.</para>
  11008. </summary>
  11009. </member>
  11010. <member name="P:System.Xml.Serialization.XmlAttributes.XmlElements">
  11011. <summary>
  11012. <para> Gets or sets a collection of objects that specify how the
  11013. <see cref="T:System.Xml.Serialization.XmlSerializer" />
  11014. serializes a public field or read/write property as
  11015. an XML element.</para>
  11016. </summary>
  11017. </member>
  11018. <member name="P:System.Xml.Serialization.XmlAttributes.XmlAttribute">
  11019. <summary>
  11020. <para> Gets or sets an object that specifies how the
  11021. <see cref="T:System.Xml.Serialization.XmlSerializer" />
  11022. serializes a public field or public read/write property as an XML attribute.</para>
  11023. </summary>
  11024. </member>
  11025. <member name="P:System.Xml.Serialization.XmlAttributes.XmlEnum">
  11026. <summary>
  11027. <para> Gets or sets an object that
  11028. specifies how the <see cref="T:System.Xml.Serialization.XmlSerializer" />
  11029. serializes an enumeration member.</para>
  11030. </summary>
  11031. </member>
  11032. <member name="P:System.Xml.Serialization.XmlAttributes.XmlText">
  11033. <summary>
  11034. <para> Gets or sets an object that instructs the <see cref="T:System.Xml.Serialization.XmlSerializer" /> to serialize a
  11035. public field or public read/write property as XML
  11036. text.</para>
  11037. </summary>
  11038. </member>
  11039. <member name="P:System.Xml.Serialization.XmlAttributes.XmlArray">
  11040. <summary>
  11041. <para> Gets or sets an object that specifies how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes a public field
  11042. or read/write property that returns an array.</para>
  11043. </summary>
  11044. </member>
  11045. <member name="P:System.Xml.Serialization.XmlAttributes.XmlArrayItems">
  11046. <summary>
  11047. <para> Gets or sets a collection of objects that specify
  11048. how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes
  11049. items inserted into an array returned by a public field or read/write property.</para>
  11050. </summary>
  11051. </member>
  11052. <member name="P:System.Xml.Serialization.XmlAttributes.XmlDefaultValue">
  11053. <summary>
  11054. <para>Gets or sets the default value of an XML element or attribute.</para>
  11055. </summary>
  11056. </member>
  11057. <member name="P:System.Xml.Serialization.XmlAttributes.XmlIgnore">
  11058. <summary>
  11059. <para>Gets or sets a value that specifies whether or not the
  11060. <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes a public field or public read/write property.</para>
  11061. </summary>
  11062. </member>
  11063. <member name="P:System.Xml.Serialization.XmlAttributes.XmlType">
  11064. <summary>
  11065. <para>Gets or sets an object that specifies how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes a class to which
  11066. the <see cref="T:System.Xml.Serialization.XmlTypeAttribute" />
  11067. has been applied.</para>
  11068. </summary>
  11069. </member>
  11070. <member name="P:System.Xml.Serialization.XmlAttributes.XmlRoot">
  11071. <summary>
  11072. <para>Gets or sets an object that specifies how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes a class as an XML root element.</para>
  11073. </summary>
  11074. </member>
  11075. <member name="P:System.Xml.Serialization.XmlAttributes.XmlAnyElements">
  11076. <summary>
  11077. <para>Gets the collection of <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> objects to override.</para>
  11078. </summary>
  11079. </member>
  11080. <member name="P:System.Xml.Serialization.XmlAttributes.XmlAnyAttribute">
  11081. <summary>
  11082. <para>Gets or sets the <see cref="T:System.Xml.Serialization.XmlAnyAttributeAttribute" /> to override.</para>
  11083. </summary>
  11084. </member>
  11085. <member name="P:System.Xml.Serialization.XmlAttributes.XmlChoiceIdentifier">
  11086. <summary>
  11087. <para> Gets or sets an object that allows you
  11088. to disambiguate between a set of choices.</para>
  11089. </summary>
  11090. </member>
  11091. <member name="T:System.Xml.Serialization.XmlChoiceIdentifierAttribute">
  11092. <summary>
  11093. <para>Specifies that the member can be further disambiguated
  11094. by using an enumeration.</para>
  11095. </summary>
  11096. </member>
  11097. <member name="M:System.Xml.Serialization.XmlChoiceIdentifierAttribute.#ctor">
  11098. <summary>
  11099. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlChoiceIdentifierAttribute" /> class.</para>
  11100. </summary>
  11101. </member>
  11102. <member name="M:System.Xml.Serialization.XmlChoiceIdentifierAttribute.#ctor(System.String)">
  11103. <summary>
  11104. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlChoiceIdentifierAttribute" /> class.</para>
  11105. </summary>
  11106. <param name="name">The member name that returns the enumeration used to disambiguate a choice.</param>
  11107. </member>
  11108. <member name="P:System.Xml.Serialization.XmlChoiceIdentifierAttribute.MemberName">
  11109. <summary>
  11110. <para>Gets or sets the name of the field that returns the
  11111. enumeration to use when disambiguating types.</para>
  11112. </summary>
  11113. </member>
  11114. <member name="M:System.Xml.Serialization.XmlCodeExporter.#ctor(System.CodeDom.CodeNamespace)">
  11115. <summary>
  11116. <para>[To be supplied.]</para>
  11117. </summary>
  11118. </member>
  11119. <member name="M:System.Xml.Serialization.XmlCodeExporter.#ctor(System.CodeDom.CodeNamespace,System.CodeDom.CodeCompileUnit)">
  11120. </member>
  11121. <member name="M:System.Xml.Serialization.XmlCodeExporter.ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping)">
  11122. <summary>
  11123. <para>[To be supplied.]</para>
  11124. </summary>
  11125. </member>
  11126. <member name="M:System.Xml.Serialization.XmlCodeExporter.ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping)">
  11127. <summary>
  11128. <para>[To be supplied.]</para>
  11129. </summary>
  11130. </member>
  11131. <member name="M:System.Xml.Serialization.XmlCodeExporter.AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection,System.Xml.Serialization.XmlTypeMapping,System.String)">
  11132. <summary>
  11133. <para>[To be supplied.]</para>
  11134. </summary>
  11135. </member>
  11136. <member name="M:System.Xml.Serialization.XmlCodeExporter.AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection,System.Xml.Serialization.XmlMemberMapping,System.String,System.Boolean)">
  11137. <summary>
  11138. <para>[To be supplied.]</para>
  11139. </summary>
  11140. </member>
  11141. <member name="M:System.Xml.Serialization.XmlCodeExporter.AddMappingMetadata(System.CodeDom.CodeAttributeDeclarationCollection,System.Xml.Serialization.XmlMemberMapping,System.String)">
  11142. <summary>
  11143. <para>[To be supplied.]</para>
  11144. </summary>
  11145. </member>
  11146. <member name="P:System.Xml.Serialization.XmlCodeExporter.IncludeMetadata">
  11147. <summary>
  11148. <para>[To be supplied.]</para>
  11149. </summary>
  11150. </member>
  11151. <member name="T:System.Xml.Serialization.XmlElementAttribute">
  11152. <summary>
  11153. <para> Indicates that a public field or property represents an XML element when the
  11154. <see cref="T:System.Xml.Serialization.XmlSerializer" />
  11155. serializes or deserializes the containing object.</para>
  11156. </summary>
  11157. </member>
  11158. <member name="M:System.Xml.Serialization.XmlElementAttribute.#ctor">
  11159. <summary>
  11160. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> class.</para>
  11161. </summary>
  11162. </member>
  11163. <member name="M:System.Xml.Serialization.XmlElementAttribute.#ctor(System.String)">
  11164. <summary>
  11165. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> class and
  11166. specifies the name of the XML element.</para>
  11167. </summary>
  11168. <param name="elementName">The XML element name of the serialized member.</param>
  11169. </member>
  11170. <member name="M:System.Xml.Serialization.XmlElementAttribute.#ctor(System.Type)">
  11171. <summary>
  11172. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> class
  11173. and specifies a type for the member to which the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> is applied,
  11174. which is used by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> when serializing or deserializing a containing object.</para>
  11175. </summary>
  11176. <param name="type">The <see cref="T:System.Type" /> of an object derived from the member's type.</param>
  11177. </member>
  11178. <member name="M:System.Xml.Serialization.XmlElementAttribute.#ctor(System.String,System.Type)">
  11179. <summary>
  11180. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> ;
  11181. specifies the name of the XML element and a derived type for the member to which
  11182. the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> is applied,
  11183. which is used when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes a containing object.</para>
  11184. </summary>
  11185. <param name="elementName">The XML element name of the serialized member. </param>
  11186. <param name="type">The <see cref="T:System.Type" /> of an object derived from the member's type. </param>
  11187. </member>
  11188. <member name="P:System.Xml.Serialization.XmlElementAttribute.Type">
  11189. <summary>
  11190. <para>Gets or sets the object type used to represent the XML
  11191. element.</para>
  11192. </summary>
  11193. </member>
  11194. <member name="P:System.Xml.Serialization.XmlElementAttribute.ElementName">
  11195. <summary>
  11196. <para> Gets or sets the
  11197. name of the generated XML element.</para>
  11198. </summary>
  11199. </member>
  11200. <member name="P:System.Xml.Serialization.XmlElementAttribute.Namespace">
  11201. <summary>
  11202. <para> Gets or sets the namespace assigned
  11203. to the XML element that results when the class is serialized.</para>
  11204. </summary>
  11205. </member>
  11206. <member name="P:System.Xml.Serialization.XmlElementAttribute.DataType">
  11207. <summary>
  11208. <para> Gets or sets the XML Schema definition (XSD)
  11209. data type of the XMl element generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" />.</para>
  11210. </summary>
  11211. </member>
  11212. <member name="P:System.Xml.Serialization.XmlElementAttribute.IsNullable">
  11213. <summary>
  11214. <para>Gets or sets a value indicating whether the <see cref="T:System.Xml.Serialization.XmlSerializer" /> should serialize a member that is set
  11215. to <see langword="null " />as
  11216. an empty tag with the <see langword="xsi:nil " />attribute set to
  11217. <see langword="true" />.</para>
  11218. </summary>
  11219. </member>
  11220. <member name="P:System.Xml.Serialization.XmlElementAttribute.Form">
  11221. <summary>
  11222. <para>Gets or sets a value indicating whether the element is qualified.</para>
  11223. </summary>
  11224. </member>
  11225. <member name="T:System.Xml.Serialization.XmlElementAttributes">
  11226. <summary>
  11227. <para>Represents a collection of <see cref="T:System.Xml.Serialization.XmlElementAttribute" />,
  11228. which the <see cref="T:System.Xml.Serialization.XmlSerializer" /> uses to
  11229. override the default way it serializes a class.</para>
  11230. </summary>
  11231. </member>
  11232. <member name="M:System.Xml.Serialization.XmlElementAttributes.Add(System.Xml.Serialization.XmlElementAttribute)">
  11233. <summary>
  11234. <para>Adds an <see cref="T:System.Xml.Serialization.XmlElementAttribute" />to the collection.</para>
  11235. </summary>
  11236. <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> to add.</param>
  11237. <returns>
  11238. <para>The zero-based index of the newly added item.</para>
  11239. </returns>
  11240. </member>
  11241. <member name="P:System.Xml.Serialization.XmlElementAttributes.Item(System.Int32)">
  11242. <summary>
  11243. <para>Gets or sets an <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> from the collection.</para>
  11244. </summary>
  11245. <param name="index">The zero-based index of the collection member to get or set.</param>
  11246. </member>
  11247. <member name="T:System.Xml.Serialization.XmlEnumAttribute">
  11248. <summary>
  11249. <para> Controls how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes an enumeration
  11250. member.</para>
  11251. </summary>
  11252. </member>
  11253. <member name="M:System.Xml.Serialization.XmlEnumAttribute.#ctor">
  11254. <summary>
  11255. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlEnumAttribute" /> class.</para>
  11256. </summary>
  11257. </member>
  11258. <member name="M:System.Xml.Serialization.XmlEnumAttribute.#ctor(System.String)">
  11259. <summary>
  11260. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlEnumAttribute" /> class, and specifies the XML value
  11261. that the <see cref="T:System.Xml.Serialization.XmlSerializer" />
  11262. generates or recognizes (when it
  11263. serializes or deserializes the enumeration, respectively).</para>
  11264. </summary>
  11265. <param name="name">The overriding name of the enumeration member.</param>
  11266. </member>
  11267. <member name="P:System.Xml.Serialization.XmlEnumAttribute.Name">
  11268. <summary>
  11269. <para>Gets or sets the value generated in an XML-document
  11270. instance when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes an enumeration, or the
  11271. value recognized when it deserializes the enumeration member.</para>
  11272. </summary>
  11273. </member>
  11274. <member name="T:System.Xml.Serialization.XmlIgnoreAttribute">
  11275. <summary>
  11276. <para> Instructs the <see cref="M:System.Xml.Serialization.XmlSerializer.Serialize(System.IO.TextWriter,System.Object)" /> method of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> not to serialize the public field or
  11277. public read/write property value.</para>
  11278. </summary>
  11279. </member>
  11280. <member name="M:System.Xml.Serialization.XmlIgnoreAttribute.#ctor">
  11281. <summary>
  11282. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlIgnoreAttribute" /> class.</para>
  11283. </summary>
  11284. </member>
  11285. <member name="T:System.Xml.Serialization.XmlIncludeAttribute">
  11286. <summary>
  11287. <para>Allows the <see cref="T:System.Xml.Serialization.XmlSerializer" /> to recognize a type when
  11288. it serializes or deserializes an object.</para>
  11289. </summary>
  11290. </member>
  11291. <member name="M:System.Xml.Serialization.XmlIncludeAttribute.#ctor(System.Type)">
  11292. <summary>
  11293. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlIncludeAttribute" />
  11294. class.</para>
  11295. </summary>
  11296. <param name="type">The <see cref="T:System.Type" /> of the object to include.</param>
  11297. </member>
  11298. <member name="P:System.Xml.Serialization.XmlIncludeAttribute.Type">
  11299. <summary>
  11300. <para> Gets or sets the type of the object to include.</para>
  11301. </summary>
  11302. </member>
  11303. <member name="P:System.Xml.Serialization.XmlMemberMapping.Any">
  11304. <summary>
  11305. <para>[To be supplied.]</para>
  11306. </summary>
  11307. </member>
  11308. <member name="P:System.Xml.Serialization.XmlMemberMapping.ElementName">
  11309. <summary>
  11310. <para>[To be supplied.]</para>
  11311. </summary>
  11312. </member>
  11313. <member name="P:System.Xml.Serialization.XmlMemberMapping.Namespace">
  11314. <summary>
  11315. <para>[To be supplied.]</para>
  11316. </summary>
  11317. </member>
  11318. <member name="P:System.Xml.Serialization.XmlMemberMapping.MemberName">
  11319. <summary>
  11320. <para>[To be supplied.]</para>
  11321. </summary>
  11322. </member>
  11323. <member name="P:System.Xml.Serialization.XmlMemberMapping.TypeName">
  11324. <summary>
  11325. <para>[To be supplied.]</para>
  11326. </summary>
  11327. </member>
  11328. <member name="P:System.Xml.Serialization.XmlMemberMapping.TypeNamespace">
  11329. <summary>
  11330. <para>[To be supplied.]</para>
  11331. </summary>
  11332. </member>
  11333. <member name="P:System.Xml.Serialization.XmlMemberMapping.TypeFullName">
  11334. <summary>
  11335. <para>[To be supplied.]</para>
  11336. </summary>
  11337. </member>
  11338. <member name="P:System.Xml.Serialization.XmlMembersMapping.ElementName">
  11339. <summary>
  11340. <para>[To be supplied.]</para>
  11341. </summary>
  11342. </member>
  11343. <member name="P:System.Xml.Serialization.XmlMembersMapping.Namespace">
  11344. <summary>
  11345. <para>[To be supplied.]</para>
  11346. </summary>
  11347. </member>
  11348. <member name="P:System.Xml.Serialization.XmlMembersMapping.TypeName">
  11349. </member>
  11350. <member name="P:System.Xml.Serialization.XmlMembersMapping.TypeNamespace">
  11351. </member>
  11352. <member name="P:System.Xml.Serialization.XmlMembersMapping.Item(System.Int32)">
  11353. <summary>
  11354. <para>[To be supplied.]</para>
  11355. </summary>
  11356. </member>
  11357. <member name="P:System.Xml.Serialization.XmlMembersMapping.Count">
  11358. <summary>
  11359. <para>[To be supplied.]</para>
  11360. </summary>
  11361. </member>
  11362. <member name="M:System.Xml.Serialization.XmlReflectionImporter.#ctor">
  11363. <summary>
  11364. <para>[To be supplied.]</para>
  11365. </summary>
  11366. </member>
  11367. <member name="M:System.Xml.Serialization.XmlReflectionImporter.#ctor(System.String)">
  11368. <summary>
  11369. <para>[To be supplied.]</para>
  11370. </summary>
  11371. </member>
  11372. <member name="M:System.Xml.Serialization.XmlReflectionImporter.#ctor(System.Xml.Serialization.XmlAttributeOverrides)">
  11373. <summary>
  11374. <para>[To be supplied.]</para>
  11375. </summary>
  11376. </member>
  11377. <member name="M:System.Xml.Serialization.XmlReflectionImporter.#ctor(System.Xml.Serialization.XmlAttributeOverrides,System.String)">
  11378. <summary>
  11379. <para>[To be supplied.]</para>
  11380. </summary>
  11381. </member>
  11382. <member name="M:System.Xml.Serialization.XmlReflectionImporter.IncludeTypes(System.Reflection.ICustomAttributeProvider)">
  11383. <summary>
  11384. <para>[To be supplied.]</para>
  11385. </summary>
  11386. </member>
  11387. <member name="M:System.Xml.Serialization.XmlReflectionImporter.IncludeType(System.Type)">
  11388. <summary>
  11389. <para>[To be supplied.]</para>
  11390. </summary>
  11391. </member>
  11392. <member name="M:System.Xml.Serialization.XmlReflectionImporter.ImportTypeMapping(System.Type)">
  11393. <summary>
  11394. <para>[To be supplied.]</para>
  11395. </summary>
  11396. </member>
  11397. <member name="M:System.Xml.Serialization.XmlReflectionImporter.ImportTypeMapping(System.Type,System.String)">
  11398. <summary>
  11399. <para>[To be supplied.]</para>
  11400. </summary>
  11401. </member>
  11402. <member name="M:System.Xml.Serialization.XmlReflectionImporter.ImportTypeMapping(System.Type,System.Xml.Serialization.XmlRootAttribute)">
  11403. <summary>
  11404. <para>[To be supplied.]</para>
  11405. </summary>
  11406. </member>
  11407. <member name="M:System.Xml.Serialization.XmlReflectionImporter.ImportTypeMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String)">
  11408. <summary>
  11409. <para>[To be supplied.]</para>
  11410. </summary>
  11411. </member>
  11412. <member name="M:System.Xml.Serialization.XmlReflectionImporter.ImportMembersMapping(System.String,System.String,System.Xml.Serialization.XmlReflectionMember[],System.Boolean)">
  11413. <summary>
  11414. <para>[To be supplied.]</para>
  11415. </summary>
  11416. </member>
  11417. <member name="P:System.Xml.Serialization.XmlReflectionMember.MemberType">
  11418. <summary>
  11419. <para>[To be supplied.]</para>
  11420. </summary>
  11421. </member>
  11422. <member name="P:System.Xml.Serialization.XmlReflectionMember.XmlAttributes">
  11423. <summary>
  11424. <para>[To be supplied.]</para>
  11425. </summary>
  11426. </member>
  11427. <member name="P:System.Xml.Serialization.XmlReflectionMember.SoapAttributes">
  11428. <summary>
  11429. <para>[To be supplied.]</para>
  11430. </summary>
  11431. </member>
  11432. <member name="P:System.Xml.Serialization.XmlReflectionMember.MemberName">
  11433. <summary>
  11434. <para>[To be supplied.]</para>
  11435. </summary>
  11436. </member>
  11437. <member name="P:System.Xml.Serialization.XmlReflectionMember.IsReturnValue">
  11438. <summary>
  11439. <para>[To be supplied.]</para>
  11440. </summary>
  11441. </member>
  11442. <member name="P:System.Xml.Serialization.XmlReflectionMember.OverrideIsNullable">
  11443. </member>
  11444. <member name="T:System.Xml.Serialization.XmlRootAttribute">
  11445. <summary>
  11446. <para> Identifies a class, structure, enumeration, or interface as the root (or top-level) element of an XML-document
  11447. instance.</para>
  11448. </summary>
  11449. </member>
  11450. <member name="M:System.Xml.Serialization.XmlRootAttribute.#ctor">
  11451. <summary>
  11452. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlRootAttribute" /> class.</para>
  11453. </summary>
  11454. </member>
  11455. <member name="M:System.Xml.Serialization.XmlRootAttribute.#ctor(System.String)">
  11456. <summary>
  11457. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlRootAttribute" /> class, and specifies the name of the
  11458. XML root element.</para>
  11459. </summary>
  11460. <param name="elementName">The name of the XML root element.</param>
  11461. </member>
  11462. <member name="P:System.Xml.Serialization.XmlRootAttribute.ElementName">
  11463. <summary>
  11464. <para>Gets or sets the name of the XML element that is
  11465. generated and recognized by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class's
  11466. <see cref="M:System.Xml.Serialization.XmlSerializer.Serialize(System.IO.TextWriter,System.Object)" /> and <see cref="M:System.Xml.Serialization.XmlSerializer.Deserialize(System.IO.Stream)" /> methods,
  11467. respectively.</para>
  11468. </summary>
  11469. </member>
  11470. <member name="P:System.Xml.Serialization.XmlRootAttribute.Namespace">
  11471. <summary>
  11472. <para> Gets or sets the namespace for the
  11473. XML root element.</para>
  11474. </summary>
  11475. </member>
  11476. <member name="P:System.Xml.Serialization.XmlRootAttribute.DataType">
  11477. <summary>
  11478. <para>Gets or sets the XSD data type of the XML root element.</para>
  11479. </summary>
  11480. </member>
  11481. <member name="P:System.Xml.Serialization.XmlRootAttribute.IsNullable">
  11482. <summary>
  11483. <para>Gets or sets a value indicating whether the <see cref="T:System.Xml.Serialization.XmlSerializer" /> should serialize a member that is set
  11484. to <see langword="null " />into the <see langword="xsi:nil " />attribute set to
  11485. <see langword="true" />.</para>
  11486. </summary>
  11487. </member>
  11488. <member name="P:System.Xml.Serialization.XmlRootAttribute.Form">
  11489. <summary>
  11490. <para>Gets or sets a value indicating whether the name of the XML
  11491. root element is qualified.</para>
  11492. </summary>
  11493. </member>
  11494. <member name="M:System.Xml.Serialization.XmlSchemaExporter.#ctor(System.Xml.Serialization.XmlSchemas)">
  11495. <summary>
  11496. <para>[To be supplied.]</para>
  11497. </summary>
  11498. </member>
  11499. <member name="M:System.Xml.Serialization.XmlSchemaExporter.ExportTypeMapping(System.Xml.Serialization.XmlTypeMapping)">
  11500. <summary>
  11501. <para>[To be supplied.]</para>
  11502. </summary>
  11503. </member>
  11504. <member name="M:System.Xml.Serialization.XmlSchemaExporter.ExportTypeMapping(System.Xml.Serialization.XmlMembersMapping)">
  11505. </member>
  11506. <member name="M:System.Xml.Serialization.XmlSchemaExporter.ExportMembersMapping(System.Xml.Serialization.XmlMembersMapping)">
  11507. <summary>
  11508. <para>[To be supplied.]</para>
  11509. </summary>
  11510. </member>
  11511. <member name="M:System.Xml.Serialization.XmlSchemaExporter.ExportAnyType(System.String)">
  11512. </member>
  11513. <member name="M:System.Xml.Serialization.XmlSchemaImporter.#ctor(System.Xml.Serialization.XmlSchemas)">
  11514. <summary>
  11515. <para>[To be supplied.]</para>
  11516. </summary>
  11517. </member>
  11518. <member name="M:System.Xml.Serialization.XmlSchemaImporter.#ctor(System.Xml.Serialization.XmlSchemas,System.Xml.Serialization.CodeIdentifiers)">
  11519. <summary>
  11520. <para>[To be supplied.]</para>
  11521. </summary>
  11522. </member>
  11523. <member name="M:System.Xml.Serialization.XmlSchemaImporter.ImportDerivedTypeMapping(System.Xml.XmlQualifiedName,System.Type)">
  11524. <summary>
  11525. <para>[To be supplied.]</para>
  11526. </summary>
  11527. </member>
  11528. <member name="M:System.Xml.Serialization.XmlSchemaImporter.ImportDerivedTypeMapping(System.Xml.XmlQualifiedName,System.Type,System.Boolean)">
  11529. </member>
  11530. <member name="M:System.Xml.Serialization.XmlSchemaImporter.ImportTypeMapping(System.Xml.XmlQualifiedName)">
  11531. <summary>
  11532. <para>[To be supplied.]</para>
  11533. </summary>
  11534. </member>
  11535. <member name="M:System.Xml.Serialization.XmlSchemaImporter.ImportMembersMapping(System.Xml.XmlQualifiedName)">
  11536. <summary>
  11537. <para>[To be supplied.]</para>
  11538. </summary>
  11539. </member>
  11540. <member name="M:System.Xml.Serialization.XmlSchemaImporter.ImportAnyType(System.Xml.XmlQualifiedName,System.String)">
  11541. </member>
  11542. <member name="M:System.Xml.Serialization.XmlSchemaImporter.ImportMembersMapping(System.Xml.XmlQualifiedName[])">
  11543. <summary>
  11544. <para>[To be supplied.]</para>
  11545. </summary>
  11546. </member>
  11547. <member name="M:System.Xml.Serialization.XmlSchemaImporter.ImportMembersMapping(System.Xml.XmlQualifiedName[],System.Type,System.Boolean)">
  11548. </member>
  11549. <member name="M:System.Xml.Serialization.XmlSchemas.Add(System.Xml.Schema.XmlSchema)">
  11550. <summary>
  11551. <para>[To be supplied.]</para>
  11552. </summary>
  11553. </member>
  11554. <member name="M:System.Xml.Serialization.XmlSchemas.Add(System.Xml.Serialization.XmlSchemas)">
  11555. <summary>
  11556. <para>[To be supplied.]</para>
  11557. </summary>
  11558. </member>
  11559. <member name="M:System.Xml.Serialization.XmlSchemas.Insert(System.Int32,System.Xml.Schema.XmlSchema)">
  11560. <summary>
  11561. <para>[To be supplied.]</para>
  11562. </summary>
  11563. </member>
  11564. <member name="M:System.Xml.Serialization.XmlSchemas.IndexOf(System.Xml.Schema.XmlSchema)">
  11565. <summary>
  11566. <para>[To be supplied.]</para>
  11567. </summary>
  11568. </member>
  11569. <member name="M:System.Xml.Serialization.XmlSchemas.Contains(System.Xml.Schema.XmlSchema)">
  11570. <summary>
  11571. <para>[To be supplied.]</para>
  11572. </summary>
  11573. </member>
  11574. <member name="M:System.Xml.Serialization.XmlSchemas.Remove(System.Xml.Schema.XmlSchema)">
  11575. <summary>
  11576. <para>[To be supplied.]</para>
  11577. </summary>
  11578. </member>
  11579. <member name="M:System.Xml.Serialization.XmlSchemas.CopyTo(System.Xml.Schema.XmlSchema[],System.Int32)">
  11580. <summary>
  11581. <para>[To be supplied.]</para>
  11582. </summary>
  11583. </member>
  11584. <member name="M:System.Xml.Serialization.XmlSchemas.OnInsert(System.Int32,System.Object)">
  11585. <summary>
  11586. <para>[To be supplied.]</para>
  11587. </summary>
  11588. </member>
  11589. <member name="M:System.Xml.Serialization.XmlSchemas.OnRemove(System.Int32,System.Object)">
  11590. <summary>
  11591. <para>[To be supplied.]</para>
  11592. </summary>
  11593. </member>
  11594. <member name="M:System.Xml.Serialization.XmlSchemas.OnClear">
  11595. <summary>
  11596. <para>[To be supplied.]</para>
  11597. </summary>
  11598. </member>
  11599. <member name="M:System.Xml.Serialization.XmlSchemas.OnSet(System.Int32,System.Object,System.Object)">
  11600. <summary>
  11601. <para>[To be supplied.]</para>
  11602. </summary>
  11603. </member>
  11604. <member name="M:System.Xml.Serialization.XmlSchemas.Find(System.Xml.XmlQualifiedName,System.Type)">
  11605. <summary>
  11606. <para>[To be supplied.]</para>
  11607. </summary>
  11608. </member>
  11609. <member name="M:System.Xml.Serialization.XmlSchemas.IsDataSet(System.Xml.Schema.XmlSchema)">
  11610. <summary>
  11611. <para>[To be supplied.]</para>
  11612. </summary>
  11613. </member>
  11614. <member name="P:System.Xml.Serialization.XmlSchemas.Item(System.Int32)">
  11615. <summary>
  11616. <para>[To be supplied.]</para>
  11617. </summary>
  11618. </member>
  11619. <member name="P:System.Xml.Serialization.XmlSchemas.Item(System.String)">
  11620. <summary>
  11621. <para>[To be supplied.]</para>
  11622. </summary>
  11623. </member>
  11624. <member name="M:System.Xml.Serialization.XmlSerializationReader.InitIDs">
  11625. <summary>
  11626. <para>[To be supplied.]</para>
  11627. </summary>
  11628. </member>
  11629. <member name="M:System.Xml.Serialization.XmlSerializationReader.GetXsiType">
  11630. <summary>
  11631. <para>[To be supplied.]</para>
  11632. </summary>
  11633. </member>
  11634. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadTypedPrimitive(System.Xml.XmlQualifiedName)">
  11635. <summary>
  11636. <para>[To be supplied.]</para>
  11637. </summary>
  11638. </member>
  11639. <member name="M:System.Xml.Serialization.XmlSerializationReader.IsXmlnsAttribute(System.String)">
  11640. <summary>
  11641. <para>[To be supplied.]</para>
  11642. </summary>
  11643. </member>
  11644. <member name="M:System.Xml.Serialization.XmlSerializationReader.ParseWsdlArrayType(System.Xml.XmlAttribute)">
  11645. <summary>
  11646. <para>[To be supplied.]</para>
  11647. </summary>
  11648. </member>
  11649. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadNull">
  11650. <summary>
  11651. <para>[To be supplied.]</para>
  11652. </summary>
  11653. </member>
  11654. <member name="M:System.Xml.Serialization.XmlSerializationReader.GetNullAttr">
  11655. <summary>
  11656. <para>[To be supplied.]</para>
  11657. </summary>
  11658. </member>
  11659. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadNullableString">
  11660. <summary>
  11661. <para>[To be supplied.]</para>
  11662. </summary>
  11663. </member>
  11664. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadNullableQualifiedName">
  11665. <summary>
  11666. <para>[To be supplied.]</para>
  11667. </summary>
  11668. </member>
  11669. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadElementQualifiedName">
  11670. <summary>
  11671. <para>[To be supplied.]</para>
  11672. </summary>
  11673. </member>
  11674. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadXmlNode(System.Boolean)">
  11675. <summary>
  11676. <para>[To be supplied.]</para>
  11677. </summary>
  11678. </member>
  11679. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToByteArrayBase64(System.String)">
  11680. <summary>
  11681. <para>[To be supplied.]</para>
  11682. </summary>
  11683. </member>
  11684. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToByteArrayBase64(System.Boolean)">
  11685. </member>
  11686. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToByteArrayHex(System.String)">
  11687. <summary>
  11688. <para>[To be supplied.]</para>
  11689. </summary>
  11690. </member>
  11691. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToByteArrayHex(System.Boolean)">
  11692. </member>
  11693. <member name="M:System.Xml.Serialization.XmlSerializationReader.GetArrayLength(System.String,System.String)">
  11694. <summary>
  11695. <para>[To be supplied.]</para>
  11696. </summary>
  11697. </member>
  11698. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToDateTime(System.String)">
  11699. <summary>
  11700. <para>[To be supplied.]</para>
  11701. </summary>
  11702. </member>
  11703. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToDate(System.String)">
  11704. <summary>
  11705. <para>[To be supplied.]</para>
  11706. </summary>
  11707. </member>
  11708. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToTime(System.String)">
  11709. <summary>
  11710. <para>[To be supplied.]</para>
  11711. </summary>
  11712. </member>
  11713. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToChar(System.String)">
  11714. <summary>
  11715. <para>[To be supplied.]</para>
  11716. </summary>
  11717. </member>
  11718. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToEnum(System.String,System.Collections.Hashtable,System.String)">
  11719. <summary>
  11720. <para>[To be supplied.]</para>
  11721. </summary>
  11722. </member>
  11723. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToXmlName(System.String)">
  11724. </member>
  11725. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNCName(System.String)">
  11726. </member>
  11727. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNmToken(System.String)">
  11728. </member>
  11729. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNmTokens(System.String)">
  11730. </member>
  11731. <member name="M:System.Xml.Serialization.XmlSerializationReader.ToXmlQualifiedName(System.String)">
  11732. <summary>
  11733. <para>[To be supplied.]</para>
  11734. </summary>
  11735. </member>
  11736. <member name="M:System.Xml.Serialization.XmlSerializationReader.UnknownAttribute(System.Object,System.Xml.XmlAttribute)">
  11737. <summary>
  11738. <para>[To be supplied.]</para>
  11739. </summary>
  11740. </member>
  11741. <member name="M:System.Xml.Serialization.XmlSerializationReader.UnknownElement(System.Object,System.Xml.XmlElement)">
  11742. </member>
  11743. <member name="M:System.Xml.Serialization.XmlSerializationReader.UnknownNode(System.Object)">
  11744. <summary>
  11745. <para>[To be supplied.]</para>
  11746. </summary>
  11747. </member>
  11748. <member name="M:System.Xml.Serialization.XmlSerializationReader.UnreferencedObject(System.String,System.Object)">
  11749. </member>
  11750. <member name="M:System.Xml.Serialization.XmlSerializationReader.CreateUnknownTypeException(System.Xml.XmlQualifiedName)">
  11751. <summary>
  11752. <para>[To be supplied.]</para>
  11753. </summary>
  11754. </member>
  11755. <member name="M:System.Xml.Serialization.XmlSerializationReader.CreateReadOnlyCollectionException(System.String)">
  11756. <summary>
  11757. <para>[To be supplied.]</para>
  11758. </summary>
  11759. </member>
  11760. <member name="M:System.Xml.Serialization.XmlSerializationReader.CreateAbstractTypeException(System.String,System.String)">
  11761. <summary>
  11762. <para>[To be supplied.]</para>
  11763. </summary>
  11764. </member>
  11765. <member name="M:System.Xml.Serialization.XmlSerializationReader.CreateUnknownNodeException">
  11766. <summary>
  11767. <para>[To be supplied.]</para>
  11768. </summary>
  11769. </member>
  11770. <member name="M:System.Xml.Serialization.XmlSerializationReader.CreateUnknownConstantException(System.String,System.Type)">
  11771. <summary>
  11772. <para>[To be supplied.]</para>
  11773. </summary>
  11774. </member>
  11775. <member name="M:System.Xml.Serialization.XmlSerializationReader.EnsureArrayIndex(System.Array,System.Int32,System.Type)">
  11776. <summary>
  11777. <para>[To be supplied.]</para>
  11778. </summary>
  11779. </member>
  11780. <member name="M:System.Xml.Serialization.XmlSerializationReader.ShrinkArray(System.Array,System.Int32,System.Type,System.Boolean)">
  11781. <summary>
  11782. <para>[To be supplied.]</para>
  11783. </summary>
  11784. </member>
  11785. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadString(System.String)">
  11786. <summary>
  11787. <para>[To be supplied.]</para>
  11788. </summary>
  11789. </member>
  11790. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadSerializable(System.Xml.Serialization.IXmlSerializable)">
  11791. <summary>
  11792. <para>[To be supplied.]</para>
  11793. </summary>
  11794. </member>
  11795. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadReference(System.String@)">
  11796. <summary>
  11797. <para>[To be supplied.]</para>
  11798. </summary>
  11799. </member>
  11800. <member name="M:System.Xml.Serialization.XmlSerializationReader.AddTarget(System.String,System.Object)">
  11801. <summary>
  11802. <para>[To be supplied.]</para>
  11803. </summary>
  11804. </member>
  11805. <member name="M:System.Xml.Serialization.XmlSerializationReader.AddFixup(System.Xml.Serialization.XmlSerializationReader.Fixup)">
  11806. <summary>
  11807. <para>[To be supplied.]</para>
  11808. </summary>
  11809. </member>
  11810. <member name="M:System.Xml.Serialization.XmlSerializationReader.AddFixup(System.Xml.Serialization.XmlSerializationReader.CollectionFixup)">
  11811. <summary>
  11812. <para>[To be supplied.]</para>
  11813. </summary>
  11814. </member>
  11815. <member name="M:System.Xml.Serialization.XmlSerializationReader.GetTarget(System.String)">
  11816. <summary>
  11817. <para>[To be supplied.]</para>
  11818. </summary>
  11819. </member>
  11820. <member name="M:System.Xml.Serialization.XmlSerializationReader.Referenced(System.Object)">
  11821. </member>
  11822. <member name="M:System.Xml.Serialization.XmlSerializationReader.FixupArrayRefs(System.Object)">
  11823. <summary>
  11824. <para>[To be supplied.]</para>
  11825. </summary>
  11826. </member>
  11827. <member name="M:System.Xml.Serialization.XmlSerializationReader.InitCallbacks">
  11828. <summary>
  11829. <para>[To be supplied.]</para>
  11830. </summary>
  11831. </member>
  11832. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadReferencedElements">
  11833. <summary>
  11834. <para>[To be supplied.]</para>
  11835. </summary>
  11836. </member>
  11837. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadReferencedElement">
  11838. <summary>
  11839. <para>[To be supplied.]</para>
  11840. </summary>
  11841. </member>
  11842. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadReferencedElement(System.String,System.String)">
  11843. <summary>
  11844. <para>[To be supplied.]</para>
  11845. </summary>
  11846. </member>
  11847. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadReferencingElement(System.String@)">
  11848. <summary>
  11849. <para>[To be supplied.]</para>
  11850. </summary>
  11851. </member>
  11852. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadReferencingElement(System.String,System.String,System.String@)">
  11853. <summary>
  11854. <para>[To be supplied.]</para>
  11855. </summary>
  11856. </member>
  11857. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadReferencingElement(System.String,System.String,System.Boolean,System.String@)">
  11858. </member>
  11859. <member name="M:System.Xml.Serialization.XmlSerializationReader.AddReadCallback(System.String,System.String,System.Type,System.Xml.Serialization.XmlSerializationReadCallback)">
  11860. <summary>
  11861. <para>[To be supplied.]</para>
  11862. </summary>
  11863. </member>
  11864. <member name="M:System.Xml.Serialization.XmlSerializationReader.ReadEndElement">
  11865. <summary>
  11866. <para>[To be supplied.]</para>
  11867. </summary>
  11868. </member>
  11869. <member name="P:System.Xml.Serialization.XmlSerializationReader.Reader">
  11870. <summary>
  11871. <para>[To be supplied.]</para>
  11872. </summary>
  11873. </member>
  11874. <member name="P:System.Xml.Serialization.XmlSerializationReader.Document">
  11875. <summary>
  11876. <para>[To be supplied.]</para>
  11877. </summary>
  11878. </member>
  11879. <member name="F:System.Xml.Serialization.XmlSerializationReader.SoapArrayInfo.qname">
  11880. <summary>
  11881. <para>[To be supplied.]</para>
  11882. </summary>
  11883. </member>
  11884. <member name="F:System.Xml.Serialization.XmlSerializationReader.SoapArrayInfo.dimensions">
  11885. <summary>
  11886. <para>[To be supplied.]</para>
  11887. </summary>
  11888. </member>
  11889. <member name="F:System.Xml.Serialization.XmlSerializationReader.SoapArrayInfo.length">
  11890. <summary>
  11891. <para>[To be supplied.]</para>
  11892. </summary>
  11893. </member>
  11894. <member name="M:System.Xml.Serialization.XmlSerializationReader.Fixup.#ctor(System.Object,System.Xml.Serialization.XmlSerializationFixupCallback,System.Int32)">
  11895. <summary>
  11896. <para>[To be supplied.]</para>
  11897. </summary>
  11898. </member>
  11899. <member name="M:System.Xml.Serialization.XmlSerializationReader.Fixup.#ctor(System.Object,System.Xml.Serialization.XmlSerializationFixupCallback,System.String[])">
  11900. <summary>
  11901. <para>[To be supplied.]</para>
  11902. </summary>
  11903. </member>
  11904. <member name="P:System.Xml.Serialization.XmlSerializationReader.Fixup.Callback">
  11905. <summary>
  11906. <para>[To be supplied.]</para>
  11907. </summary>
  11908. </member>
  11909. <member name="P:System.Xml.Serialization.XmlSerializationReader.Fixup.Source">
  11910. <summary>
  11911. <para>[To be supplied.]</para>
  11912. </summary>
  11913. </member>
  11914. <member name="P:System.Xml.Serialization.XmlSerializationReader.Fixup.Ids">
  11915. <summary>
  11916. <para>[To be supplied.]</para>
  11917. </summary>
  11918. </member>
  11919. <member name="M:System.Xml.Serialization.XmlSerializationReader.CollectionFixup.#ctor(System.Object,System.Xml.Serialization.XmlSerializationCollectionFixupCallback,System.Object)">
  11920. <summary>
  11921. <para>[To be supplied.]</para>
  11922. </summary>
  11923. </member>
  11924. <member name="P:System.Xml.Serialization.XmlSerializationReader.CollectionFixup.Callback">
  11925. <summary>
  11926. <para>[To be supplied.]</para>
  11927. </summary>
  11928. </member>
  11929. <member name="P:System.Xml.Serialization.XmlSerializationReader.CollectionFixup.Collection">
  11930. <summary>
  11931. <para>[To be supplied.]</para>
  11932. </summary>
  11933. </member>
  11934. <member name="P:System.Xml.Serialization.XmlSerializationReader.CollectionFixup.CollectionItems">
  11935. <summary>
  11936. <para>[To be supplied.]</para>
  11937. </summary>
  11938. </member>
  11939. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromByteArrayBase64(System.Byte[])">
  11940. </member>
  11941. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromByteArrayHex(System.Byte[])">
  11942. </member>
  11943. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromDateTime(System.DateTime)">
  11944. </member>
  11945. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromDate(System.DateTime)">
  11946. </member>
  11947. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromTime(System.DateTime)">
  11948. </member>
  11949. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromChar(System.Char)">
  11950. </member>
  11951. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromEnum(System.Int64,System.String[],System.Int64[])">
  11952. </member>
  11953. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromXmlName(System.String)">
  11954. </member>
  11955. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromXmlNCName(System.String)">
  11956. </member>
  11957. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromXmlNmToken(System.String)">
  11958. </member>
  11959. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromXmlNmTokens(System.String)">
  11960. </member>
  11961. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteXsiType(System.String,System.String)">
  11962. <summary>
  11963. <para>[To be supplied.]</para>
  11964. </summary>
  11965. </member>
  11966. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteTypedPrimitive(System.String,System.String,System.Object,System.Boolean)">
  11967. <summary>
  11968. <para>[To be supplied.]</para>
  11969. </summary>
  11970. </member>
  11971. <member name="M:System.Xml.Serialization.XmlSerializationWriter.FromXmlQualifiedName(System.Xml.XmlQualifiedName)">
  11972. <summary>
  11973. <para>[To be supplied.]</para>
  11974. </summary>
  11975. </member>
  11976. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteStartElement(System.String)">
  11977. <summary>
  11978. <para>[To be supplied.]</para>
  11979. </summary>
  11980. </member>
  11981. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteStartElement(System.String,System.String)">
  11982. <summary>
  11983. <para>[To be supplied.]</para>
  11984. </summary>
  11985. </member>
  11986. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteStartElement(System.String,System.String,System.Boolean)">
  11987. </member>
  11988. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteStartElement(System.String,System.String,System.Object)">
  11989. </member>
  11990. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteStartElement(System.String,System.String,System.Object,System.Boolean)">
  11991. </member>
  11992. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullTagEncoded(System.String)">
  11993. </member>
  11994. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullTagEncoded(System.String,System.String)">
  11995. </member>
  11996. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullTagLiteral(System.String)">
  11997. </member>
  11998. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullTagLiteral(System.String,System.String)">
  11999. <summary>
  12000. <para>[To be supplied.]</para>
  12001. </summary>
  12002. </member>
  12003. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteEmptyTag(System.String)">
  12004. <summary>
  12005. <para>[To be supplied.]</para>
  12006. </summary>
  12007. </member>
  12008. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteEmptyTag(System.String,System.String)">
  12009. </member>
  12010. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteEndElement">
  12011. </member>
  12012. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteEndElement(System.Object)">
  12013. </member>
  12014. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean)">
  12015. <summary>
  12016. <para>[To be supplied.]</para>
  12017. </summary>
  12018. </member>
  12019. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullableStringEncoded(System.String,System.String,System.String,System.Xml.XmlQualifiedName)">
  12020. </member>
  12021. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullableStringLiteral(System.String,System.String,System.String)">
  12022. </member>
  12023. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullableStringEncodedRaw(System.String,System.String,System.String,System.Xml.XmlQualifiedName)">
  12024. </member>
  12025. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullableStringEncodedRaw(System.String,System.String,System.Byte[],System.Xml.XmlQualifiedName)">
  12026. </member>
  12027. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullableStringLiteralRaw(System.String,System.String,System.String)">
  12028. </member>
  12029. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullableStringLiteralRaw(System.String,System.String,System.Byte[])">
  12030. </member>
  12031. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullableQualifiedNameEncoded(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)">
  12032. </member>
  12033. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteNullableQualifiedNameLiteral(System.String,System.String,System.Xml.XmlQualifiedName)">
  12034. </member>
  12035. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementEncoded(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean)">
  12036. </member>
  12037. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementLiteral(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean)">
  12038. </member>
  12039. <member name="M:System.Xml.Serialization.XmlSerializationWriter.CreateUnknownTypeException(System.Object)">
  12040. <summary>
  12041. <para>[To be supplied.]</para>
  12042. </summary>
  12043. </member>
  12044. <member name="M:System.Xml.Serialization.XmlSerializationWriter.CreateUnknownTypeException(System.Type)">
  12045. <summary>
  12046. <para>[To be supplied.]</para>
  12047. </summary>
  12048. </member>
  12049. <member name="M:System.Xml.Serialization.XmlSerializationWriter.CreateMismatchChoiceException(System.String,System.String,System.String)">
  12050. </member>
  12051. <member name="M:System.Xml.Serialization.XmlSerializationWriter.CreateUnknownAnyElementException(System.String,System.String)">
  12052. </member>
  12053. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteReferencingElement(System.String,System.String,System.Object)">
  12054. <summary>
  12055. <para>[To be supplied.]</para>
  12056. </summary>
  12057. </member>
  12058. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteReferencingElement(System.String,System.String,System.Object,System.Boolean)">
  12059. </member>
  12060. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteId(System.Object)">
  12061. <summary>
  12062. <para>[To be supplied.]</para>
  12063. </summary>
  12064. </member>
  12065. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteXmlAttribute(System.Xml.XmlNode)">
  12066. </member>
  12067. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteAttribute(System.String,System.String,System.String)">
  12068. <summary>
  12069. <para>[To be supplied.]</para>
  12070. </summary>
  12071. </member>
  12072. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteAttribute(System.String,System.String,System.Byte[])">
  12073. </member>
  12074. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteAttribute(System.String,System.String)">
  12075. <summary>
  12076. <para>[To be supplied.]</para>
  12077. </summary>
  12078. </member>
  12079. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteAttribute(System.String,System.Byte[])">
  12080. </member>
  12081. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteAttribute(System.String,System.String,System.String,System.String)">
  12082. <summary>
  12083. <para>[To be supplied.]</para>
  12084. </summary>
  12085. </member>
  12086. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteValue(System.String)">
  12087. </member>
  12088. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteValue(System.Byte[])">
  12089. </member>
  12090. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteStartDocument">
  12091. <summary>
  12092. <para>[To be supplied.]</para>
  12093. </summary>
  12094. </member>
  12095. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementString(System.String,System.String)">
  12096. <summary>
  12097. <para>[To be supplied.]</para>
  12098. </summary>
  12099. </member>
  12100. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementString(System.String,System.String,System.String)">
  12101. <summary>
  12102. <para>[To be supplied.]</para>
  12103. </summary>
  12104. </member>
  12105. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementString(System.String,System.String,System.Xml.XmlQualifiedName)">
  12106. </member>
  12107. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementString(System.String,System.String,System.String,System.Xml.XmlQualifiedName)">
  12108. </member>
  12109. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementStringRaw(System.String,System.String)">
  12110. </member>
  12111. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementStringRaw(System.String,System.Byte[])">
  12112. </member>
  12113. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementStringRaw(System.String,System.String,System.String)">
  12114. </member>
  12115. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementStringRaw(System.String,System.String,System.Byte[])">
  12116. </member>
  12117. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementStringRaw(System.String,System.String,System.Xml.XmlQualifiedName)">
  12118. </member>
  12119. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementStringRaw(System.String,System.Byte[],System.Xml.XmlQualifiedName)">
  12120. </member>
  12121. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementStringRaw(System.String,System.String,System.String,System.Xml.XmlQualifiedName)">
  12122. </member>
  12123. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementStringRaw(System.String,System.String,System.Byte[],System.Xml.XmlQualifiedName)">
  12124. </member>
  12125. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementQualifiedName(System.String,System.Xml.XmlQualifiedName)">
  12126. <summary>
  12127. <para>[To be supplied.]</para>
  12128. </summary>
  12129. </member>
  12130. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementQualifiedName(System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)">
  12131. </member>
  12132. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName)">
  12133. </member>
  12134. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)">
  12135. </member>
  12136. <member name="M:System.Xml.Serialization.XmlSerializationWriter.AddWriteCallback(System.Type,System.String,System.String,System.Xml.Serialization.XmlSerializationWriteCallback)">
  12137. <summary>
  12138. <para>[To be supplied.]</para>
  12139. </summary>
  12140. </member>
  12141. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WritePotentiallyReferencingElement(System.String,System.String,System.Object)">
  12142. <summary>
  12143. <para>[To be supplied.]</para>
  12144. </summary>
  12145. </member>
  12146. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WritePotentiallyReferencingElement(System.String,System.String,System.Object,System.Type)">
  12147. <summary>
  12148. <para>[To be supplied.]</para>
  12149. </summary>
  12150. </member>
  12151. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WritePotentiallyReferencingElement(System.String,System.String,System.Object,System.Type,System.Boolean)">
  12152. </member>
  12153. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WritePotentiallyReferencingElement(System.String,System.String,System.Object,System.Type,System.Boolean,System.Boolean)">
  12154. </member>
  12155. <member name="M:System.Xml.Serialization.XmlSerializationWriter.InitCallbacks">
  12156. <summary>
  12157. <para>[To be supplied.]</para>
  12158. </summary>
  12159. </member>
  12160. <member name="M:System.Xml.Serialization.XmlSerializationWriter.WriteReferencedElements">
  12161. <summary>
  12162. <para>[To be supplied.]</para>
  12163. </summary>
  12164. </member>
  12165. <member name="M:System.Xml.Serialization.XmlSerializationWriter.TopLevelElement">
  12166. </member>
  12167. <member name="P:System.Xml.Serialization.XmlSerializationWriter.Writer">
  12168. <summary>
  12169. <para>[To be supplied.]</para>
  12170. </summary>
  12171. </member>
  12172. <member name="P:System.Xml.Serialization.XmlSerializationWriter.Namespaces">
  12173. <summary>
  12174. <para>[To be supplied.]</para>
  12175. </summary>
  12176. </member>
  12177. <member name="T:System.Xml.Serialization.XmlSerializer">
  12178. <summary>
  12179. <para>Serializes and deserializes objects into and from
  12180. XML documents. The <see cref="T:System.Xml.Serialization.XmlSerializer" /> enables you to control how objects are
  12181. encoded into XML.</para>
  12182. </summary>
  12183. </member>
  12184. <member name="M:System.Xml.Serialization.XmlSerializer.#ctor(System.Type,System.Xml.Serialization.XmlAttributeOverrides,System.Type[],System.Xml.Serialization.XmlRootAttribute,System.String)">
  12185. <summary>
  12186. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class that can serialize objects of
  12187. type <see cref="T:System.Object" /> into XML
  12188. document instances, and vice versa. Each object to be serialized can itself
  12189. contain instances of classes, which this overload can override with other classes. This overload
  12190. also specifies the default namespace for all the
  12191. XML elements, and the class to use as the XML root element.</para>
  12192. </summary>
  12193. <param name="type">The type of the object that this <see cref="T:System.Xml.Serialization.XmlSerializer" /> can serialize. </param>
  12194. <param name=" overrides">An <see cref="T:System.Xml.Serialization.XmlAttributeOverrides" /> .</param>
  12195. <param name=" extraTypes">A <see cref="T:System.Type" /> array of additional object types to serialize. </param>
  12196. <param name=" root">An <see cref="T:System.Xml.Serialization.XmlRootAttribute" /> that defines the XML root element properties.</param>
  12197. <param name=" defaultNamespace">The default namespace of all XML elements in the XML document.</param>
  12198. </member>
  12199. <member name="M:System.Xml.Serialization.XmlSerializer.#ctor(System.Type,System.String)">
  12200. <summary>
  12201. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class that can serialize objects of the specified type into
  12202. XML documents, and vice versa. Specifies the default
  12203. namespace for all the XML elements.</para>
  12204. </summary>
  12205. <param name="type">The type of the object that this <see cref="T:System.Xml.Serialization.XmlSerializer" /> can serialize. </param>
  12206. <param name="defaultNamespace">The default namespace to use for all the XML elements.</param>
  12207. </member>
  12208. <member name="M:System.Xml.Serialization.XmlSerializer.#ctor(System.Type,System.Xml.Serialization.XmlRootAttribute)">
  12209. <summary>
  12210. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class that can serialize objects of
  12211. the specified type into XML documents, and vice versa. Specifies the
  12212. class to use as the XML root element.</para>
  12213. </summary>
  12214. <param name="type">The type of the object that this <see cref="T:System.Xml.Serialization.XmlSerializer" /> can serialize. </param>
  12215. <param name="root">An <see cref="T:System.Xml.Serialization.XmlRootAttribute" /> that represents the XML root element.</param>
  12216. </member>
  12217. <member name="M:System.Xml.Serialization.XmlSerializer.#ctor(System.Type,System.Type[])">
  12218. <summary>
  12219. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class that can serialize objects of
  12220. the specified type into XML documents, and vice versa. If a property or
  12221. field returns an array, the <paramref name="extraTypes" />
  12222. parameter specifies objects
  12223. that can be inserted into the array.</para>
  12224. </summary>
  12225. <param name="type">The type of the object that this <see cref="T:System.Xml.Serialization.XmlSerializer" /> can serialize.</param>
  12226. <param name="extraTypes">A <see cref="T:System.Type" /> array of additional object types to serialize.</param>
  12227. </member>
  12228. <member name="M:System.Xml.Serialization.XmlSerializer.#ctor(System.Type,System.Xml.Serialization.XmlAttributeOverrides)">
  12229. <summary>
  12230. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class that can serialize objects of
  12231. the specified type into XML documents, and vice versa. Each object to be
  12232. serialized can itself contain instances of classes, which this overload can override
  12233. with other classes.</para>
  12234. </summary>
  12235. <param name="type">The type of the object to serialize.</param>
  12236. <param name="overrides">An <see cref="T:System.Xml.Serialization.XmlAttributeOverrides" /> .</param>
  12237. </member>
  12238. <member name="M:System.Xml.Serialization.XmlSerializer.#ctor(System.Xml.Serialization.XmlTypeMapping)">
  12239. <summary>
  12240. <para>Initializes an instance of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class using an object
  12241. that maps one type to another.</para>
  12242. </summary>
  12243. <param name="xmlTypeMapping">An <see cref="T:System.Xml.Serialization.XmlTypeMapping" /> that maps one type to another. </param>
  12244. </member>
  12245. <member name="M:System.Xml.Serialization.XmlSerializer.#ctor(System.Type)">
  12246. <summary>
  12247. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class that can serialize objects of
  12248. the specified type into XML documents, and vice versa.</para>
  12249. </summary>
  12250. <param name="type">The type of the object that this <see cref="T:System.Xml.Serialization.XmlSerializer" /> can serialize.</param>
  12251. </member>
  12252. <member name="M:System.Xml.Serialization.XmlSerializer.Serialize(System.IO.TextWriter,System.Object)">
  12253. <summary>
  12254. <para>Serializes the specified <see cref="T:System.Object" /> and writes the XML document to a file using
  12255. the specified <see cref="T:System.IO.TextWriter" />.</para>
  12256. </summary>
  12257. <param name="textWriter">The <see cref="T:System.IO.TextWriter" /> used to write the XML document.</param>
  12258. <param name="o">The <see cref="T:System.Object" /> to serialize.</param>
  12259. </member>
  12260. <member name="M:System.Xml.Serialization.XmlSerializer.Serialize(System.IO.TextWriter,System.Object,System.Xml.Serialization.XmlSerializerNamespaces)">
  12261. <summary>
  12262. <para>Serializes the specified <see cref="T:System.Object" /> and writes the XML document to a file using
  12263. the specified <see cref="T:System.IO.TextWriter" /> , referencing the specified namespaces.</para>
  12264. </summary>
  12265. <param name="textWriter">The <see cref="T:System.IO.TextWriter" /> used to write the XML document.</param>
  12266. <param name="o">The <see cref="T:System.Object" /> to serialize.</param>
  12267. <param name="namespaces">The <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> containing namespaces for the generated XML document. </param>
  12268. </member>
  12269. <member name="M:System.Xml.Serialization.XmlSerializer.Serialize(System.IO.Stream,System.Object)">
  12270. <summary>
  12271. <para>Serializes the specified <see cref="T:System.Object" /> and writes the XML document to a file using
  12272. the specified <see cref="T:System.IO.Stream" />.</para>
  12273. </summary>
  12274. <param name="stream">The <see cref="T:System.IO.Stream" /> used to write the XML document.</param>
  12275. <param name="o">The <see cref="T:System.Object" /> to serialize.</param>
  12276. </member>
  12277. <member name="M:System.Xml.Serialization.XmlSerializer.Serialize(System.IO.Stream,System.Object,System.Xml.Serialization.XmlSerializerNamespaces)">
  12278. <summary>
  12279. <para>Serializes the specified <see cref="T:System.Object" /> and writes the XML document to a file using
  12280. the specified <see cref="T:System.IO.Stream" />, referencing the specified namespaces.</para>
  12281. </summary>
  12282. <param name="stream">The <see cref="T:System.IO.Stream" /> used to write the XML document.</param>
  12283. <param name="o">The <see cref="T:System.Object" /> to serialize.</param>
  12284. <param name="namespaces">The <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> referenced by the object. </param>
  12285. </member>
  12286. <member name="M:System.Xml.Serialization.XmlSerializer.Serialize(System.Xml.XmlWriter,System.Object)">
  12287. <summary>
  12288. <para>Serializes the specified <see cref="T:System.Object" /> and writes the XML document to a file using
  12289. the specified <see cref="T:System.Xml.XmlWriter" />.</para>
  12290. </summary>
  12291. <param name="xmlWriter">The <see cref="T:System.xml.XmlWriter" /> used to write the XML document.</param>
  12292. <param name="o">The <see cref="T:System.Object" /> to serialize.</param>
  12293. </member>
  12294. <member name="M:System.Xml.Serialization.XmlSerializer.Serialize(System.Xml.XmlWriter,System.Object,System.Xml.Serialization.XmlSerializerNamespaces)">
  12295. <summary>
  12296. <para>Serializes the specified <see cref="T:System.Object" /> and writes the XML document to a file using
  12297. the specified <see cref="T:System.Xml.XmlWriter" /> , referencing the specified namespaces.</para>
  12298. </summary>
  12299. <param name="xmlWriter">The <see cref="T:System.xml.XmlWriter" /> used to write the XML document.</param>
  12300. <param name=" o">The <see cref="T:System.Object" /> to serialize.</param>
  12301. <param name=" namespaces">The <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> referenced by the object. </param>
  12302. </member>
  12303. <member name="M:System.Xml.Serialization.XmlSerializer.Deserialize(System.IO.Stream)">
  12304. <summary>
  12305. <para>Deserializes the XML document contained by the specified <see cref="T:System.IO.Stream" />.</para>
  12306. </summary>
  12307. <param name="stream">The <see cref="T:System.IO.Stream" /> containing the XML document to deserialize.</param>
  12308. <returns>
  12309. <para>The <see cref="T:System.Object" />
  12310. being deserialized.</para>
  12311. </returns>
  12312. </member>
  12313. <member name="M:System.Xml.Serialization.XmlSerializer.Deserialize(System.IO.TextReader)">
  12314. <summary>
  12315. <para>Deserializes the XML document contained by the specified <see cref="T:System.IO.TextReader" />.</para>
  12316. </summary>
  12317. <param name="textReader">The <see cref="T:System.IO.TextReader" /> containing the XML document to deserialize.</param>
  12318. <returns>
  12319. <para>The <see cref="T:System.Object" />
  12320. being deserialized.</para>
  12321. </returns>
  12322. </member>
  12323. <member name="M:System.Xml.Serialization.XmlSerializer.Deserialize(System.Xml.XmlReader)">
  12324. <summary>
  12325. <para>Deserializes the XML document contained by the specified <see cref="T:System.xml.XmlReader" />.</para>
  12326. </summary>
  12327. <param name="xmlReader">The <see cref="T:System.xml.XmlReader" /> containing the XML document to deserialize.</param>
  12328. <returns>
  12329. <para>The <see cref="T:System.Object" />
  12330. being deserialized.</para>
  12331. </returns>
  12332. </member>
  12333. <member name="M:System.Xml.Serialization.XmlSerializer.CanDeserialize(System.Xml.XmlReader)">
  12334. <summary>
  12335. <para>Gets a value indicating whether this <see cref="T:System.Xml.Serialization.XmlSerializer" /> can deserialize a specified
  12336. XML document.</para>
  12337. </summary>
  12338. <param name="xmlReader">An <see cref="T:System.Xml.XmlReader" /> that points to the document to deserialize.</param>
  12339. <returns>
  12340. <para>
  12341. <see langword="true" /> if an
  12342. this <see cref="T:System.Xml.Serialization.XmlSerializer" /> can deserialize the object which
  12343. the <see cref="T:System.Xml.XmlReader" /> points to; otherwise,
  12344. <see langword="false" />.</para>
  12345. </returns>
  12346. </member>
  12347. <member name="M:System.Xml.Serialization.XmlSerializer.FromTypes(System.Type[])">
  12348. <summary>
  12349. <para>Returns an array of <see cref="T:System.Xml.Serialization.XmlSerializer" /> objects created from an array of
  12350. types.</para>
  12351. </summary>
  12352. <param name="types">An array of <see cref="T:System.Type" /> objects.</param>
  12353. <returns>
  12354. <para>An array of <see cref="T:System.Xml.Serialization.XmlSerializer" /> objects.</para>
  12355. </returns>
  12356. </member>
  12357. <member name="E:System.Xml.Serialization.XmlSerializer.UnknownNode">
  12358. <summary>
  12359. <para>Occurs when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> encounters an XML node of unknown type during deserialization.</para>
  12360. </summary>
  12361. </member>
  12362. <member name="E:System.Xml.Serialization.XmlSerializer.UnknownAttribute">
  12363. <summary>
  12364. <para>Occurs when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> encounters an XML attribute of unknown
  12365. type during deserialization.</para>
  12366. </summary>
  12367. </member>
  12368. <member name="E:System.Xml.Serialization.XmlSerializer.UnknownElement">
  12369. <summary>
  12370. <para>Occurs when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> encounters an XML element of unknown
  12371. type during deserialization.</para>
  12372. </summary>
  12373. </member>
  12374. <member name="E:System.Xml.Serialization.XmlSerializer.UnreferencedObject">
  12375. <summary>
  12376. <para>Occurs during deserialization of a SOAP-encoded XML
  12377. stream, when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> encounters a recognized type that is
  12378. not used (unreferenced).</para>
  12379. </summary>
  12380. </member>
  12381. <member name="T:System.Xml.Serialization.XmlSerializerNamespaces">
  12382. <summary>
  12383. <para> Contains the XML namespaces and prefixes that the
  12384. <see cref="T:System.Xml.Serialization.XmlSerializer" /> uses to generate qualified names in an XML-document
  12385. instance.</para>
  12386. </summary>
  12387. </member>
  12388. <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.#ctor">
  12389. <summary>
  12390. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> class.</para>
  12391. </summary>
  12392. </member>
  12393. <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.#ctor(System.Xml.XmlQualifiedName[])">
  12394. <summary>
  12395. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> class.</para>
  12396. </summary>
  12397. <param name="namespaces">An array of <see cref="T:System.Xml.XmlQualifiedName" /> objects.</param>
  12398. </member>
  12399. <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.Add(System.String,System.String)">
  12400. <summary>
  12401. <para> Adds a prefix-namespace pair to an <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> object.</para>
  12402. </summary>
  12403. <param name="prefix">The prefix associated with an XML namespace.</param>
  12404. <param name=" ns">An XML namespace.</param>
  12405. </member>
  12406. <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.ToArray">
  12407. <summary>
  12408. <para>Gets the array of prefix-namespace pairs in an <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> object.</para>
  12409. </summary>
  12410. <returns>
  12411. <para>An array of <see cref="T:System.Xml.XmlQualifiedName" /> objects that are used as qualified names in an
  12412. XML document.</para>
  12413. </returns>
  12414. </member>
  12415. <member name="P:System.Xml.Serialization.XmlSerializerNamespaces.Count">
  12416. <summary>
  12417. <para>Gets the number of prefix-namespace pairs in the collection.</para>
  12418. </summary>
  12419. </member>
  12420. <member name="T:System.Xml.Serialization.XmlTextAttribute">
  12421. <summary>
  12422. <para>Indicates to the <see cref="T:System.Xml.Serialization.XmlSerializer" /> that the member should be treated as
  12423. XML text when the containing class is serialized or deserialized.</para>
  12424. </summary>
  12425. </member>
  12426. <member name="M:System.Xml.Serialization.XmlTextAttribute.#ctor">
  12427. <summary>
  12428. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlTextAttribute" /> class.</para>
  12429. </summary>
  12430. </member>
  12431. <member name="M:System.Xml.Serialization.XmlTextAttribute.#ctor(System.Type)">
  12432. <summary>
  12433. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlTextAttribute" /> class.</para>
  12434. </summary>
  12435. <param name="type">The <see cref="T:System.Type" /> of the member to be serialized.</param>
  12436. </member>
  12437. <member name="P:System.Xml.Serialization.XmlTextAttribute.Type">
  12438. <summary>
  12439. <para>Gets or sets the type of the member.</para>
  12440. </summary>
  12441. </member>
  12442. <member name="P:System.Xml.Serialization.XmlTextAttribute.DataType">
  12443. <summary>
  12444. <para> Gets or sets the XML Schema definition language (XSD) data type of the text
  12445. generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" />.</para>
  12446. </summary>
  12447. </member>
  12448. <member name="T:System.Xml.Serialization.XmlTypeAttribute">
  12449. <summary>
  12450. <para>Controls the XML schema generated when the attribute
  12451. target is serialized by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> .</para>
  12452. </summary>
  12453. </member>
  12454. <member name="M:System.Xml.Serialization.XmlTypeAttribute.#ctor">
  12455. <summary>
  12456. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlTypeAttribute" /> class.</para>
  12457. </summary>
  12458. </member>
  12459. <member name="M:System.Xml.Serialization.XmlTypeAttribute.#ctor(System.String)">
  12460. <summary>
  12461. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlTypeAttribute" /> class, specifying the
  12462. name of the XML type.</para>
  12463. </summary>
  12464. <param name="typeName">The name of the XML type that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates when it serializes the class instance (and recognizes when it deserializes the class instance).</param>
  12465. </member>
  12466. <member name="P:System.Xml.Serialization.XmlTypeAttribute.IncludeInSchema">
  12467. <summary>
  12468. <para> Gets or sets a value indicating whether to include
  12469. the type in XML schema documents.</para>
  12470. </summary>
  12471. </member>
  12472. <member name="P:System.Xml.Serialization.XmlTypeAttribute.TypeName">
  12473. <summary>
  12474. <para> Gets or sets the name of the XML type.</para>
  12475. </summary>
  12476. </member>
  12477. <member name="P:System.Xml.Serialization.XmlTypeAttribute.Namespace">
  12478. <summary>
  12479. <para>Gets or sets the namespace of the XML type.</para>
  12480. </summary>
  12481. </member>
  12482. <member name="T:System.Xml.Serialization.XmlTypeMapping">
  12483. <summary>
  12484. <para>Contains a mapping of one type to another.</para>
  12485. </summary>
  12486. </member>
  12487. <member name="P:System.Xml.Serialization.XmlTypeMapping.ElementName">
  12488. <summary>
  12489. <para>Gets the XML element name of the mapped object.</para>
  12490. </summary>
  12491. </member>
  12492. <member name="P:System.Xml.Serialization.XmlTypeMapping.Namespace">
  12493. <summary>
  12494. <para>Gets the XML namespace of the mapped object.</para>
  12495. </summary>
  12496. </member>
  12497. <member name="P:System.Xml.Serialization.XmlTypeMapping.TypeName">
  12498. <summary>
  12499. <para>Gets the type name of the mapped object.</para>
  12500. </summary>
  12501. </member>
  12502. <member name="P:System.Xml.Serialization.XmlTypeMapping.TypeFullName">
  12503. <summary>
  12504. <para>The fully qualified type name, including the namespace
  12505. (or namespaces) and type.</para>
  12506. </summary>
  12507. </member>
  12508. <member name="T:System.Xml.Serialization.XmlAttributeEventHandler">
  12509. <summary>
  12510. <para>Represents the method that will handle the <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownAttribute" /></para>
  12511. </summary>
  12512. <param name=" sender">The source of the event.</param>
  12513. <param name="e">An <see cref="T:System.Xml.Serialization.XmlAttributeEventArgs" /> that contains the event data.</param>
  12514. </member>
  12515. <member name="T:System.Xml.Serialization.XmlAttributeEventArgs">
  12516. <summary>
  12517. <para>Provides data for the <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownAttribute" /> event.</para>
  12518. </summary>
  12519. </member>
  12520. <member name="P:System.Xml.Serialization.XmlAttributeEventArgs.ObjectBeingDeserialized">
  12521. <summary>
  12522. <para> Gets the object being deserialized.</para>
  12523. </summary>
  12524. </member>
  12525. <member name="P:System.Xml.Serialization.XmlAttributeEventArgs.Attr">
  12526. <summary>
  12527. <para>Gets an object that represents the unknown XML attribute.</para>
  12528. </summary>
  12529. </member>
  12530. <member name="P:System.Xml.Serialization.XmlAttributeEventArgs.LineNumber">
  12531. <summary>
  12532. <para>Gets the line number of the unknown XML attribute.</para>
  12533. </summary>
  12534. </member>
  12535. <member name="P:System.Xml.Serialization.XmlAttributeEventArgs.LinePosition">
  12536. <summary>
  12537. <para>Gets the position in the line of the unknown XML attribute.</para>
  12538. </summary>
  12539. </member>
  12540. <member name="T:System.Xml.Serialization.XmlElementEventHandler">
  12541. <summary>
  12542. <para>Represents the method that will handle the <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownElement" /> event of an <see cref="T:System.Xml.Serialization.XmlSerializer" />
  12543. .</para>
  12544. </summary>
  12545. </member>
  12546. <member name="T:System.Xml.Serialization.XmlElementEventArgs">
  12547. <summary>
  12548. <para>Provides data for the <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownElement" /> event.</para>
  12549. </summary>
  12550. </member>
  12551. <member name="P:System.Xml.Serialization.XmlElementEventArgs.ObjectBeingDeserialized">
  12552. <summary>
  12553. <para>Gets the object the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is deserializing.</para>
  12554. </summary>
  12555. </member>
  12556. <member name="P:System.Xml.Serialization.XmlElementEventArgs.Element">
  12557. <summary>
  12558. <para>Gets the object that represents the unknown XML element.</para>
  12559. </summary>
  12560. </member>
  12561. <member name="P:System.Xml.Serialization.XmlElementEventArgs.LineNumber">
  12562. <summary>
  12563. <para>Gets the line number where the unknown element was
  12564. encountered if the XML reader is an <see cref="T:System.Xml.XmlTextReader" /> .</para>
  12565. </summary>
  12566. </member>
  12567. <member name="P:System.Xml.Serialization.XmlElementEventArgs.LinePosition">
  12568. <summary>
  12569. <para>Gets the place in the line where the unknown element
  12570. occurs if the XML reader is an <see cref="T:System.Xml.XmlTextReader" /> .</para>
  12571. </summary>
  12572. </member>
  12573. <member name="T:System.Xml.Serialization.XmlNodeEventHandler">
  12574. <summary>
  12575. <para>Represents the method that will handle the <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownNode" /> event of an <see cref="T:System.Xml.Serialization.XmlSerializer" />
  12576. .</para>
  12577. </summary>
  12578. <param name="sender">The source of the event.</param>
  12579. <param name=" e">An <see cref="T:System.Xml.Serialization.XmlNodeEventArgs" /> that contains the event data.</param>
  12580. </member>
  12581. <member name="T:System.Xml.Serialization.XmlNodeEventArgs">
  12582. <summary>
  12583. <para>Provides data for the <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownNode" /> event.</para>
  12584. </summary>
  12585. </member>
  12586. <member name="P:System.Xml.Serialization.XmlNodeEventArgs.ObjectBeingDeserialized">
  12587. <summary>
  12588. <para> Gets the object being deserialized.</para>
  12589. </summary>
  12590. </member>
  12591. <member name="P:System.Xml.Serialization.XmlNodeEventArgs.NodeType">
  12592. <summary>
  12593. <para>Gets the type of the XML node being deserialized.</para>
  12594. </summary>
  12595. </member>
  12596. <member name="P:System.Xml.Serialization.XmlNodeEventArgs.Name">
  12597. <summary>
  12598. <para>Gets the name of the XML node being deserialized.</para>
  12599. </summary>
  12600. </member>
  12601. <member name="P:System.Xml.Serialization.XmlNodeEventArgs.LocalName">
  12602. <summary>
  12603. <para>Gets the XML local name of the XML node being deserialized.</para>
  12604. </summary>
  12605. </member>
  12606. <member name="P:System.Xml.Serialization.XmlNodeEventArgs.NamespaceURI">
  12607. <summary>
  12608. <para>Gets the namespace URI that is associated with the XML node being deserialized.</para>
  12609. </summary>
  12610. </member>
  12611. <member name="P:System.Xml.Serialization.XmlNodeEventArgs.Text">
  12612. <summary>
  12613. <para>Gets the text of the XML node being deserialized.</para>
  12614. </summary>
  12615. </member>
  12616. <member name="P:System.Xml.Serialization.XmlNodeEventArgs.LineNumber">
  12617. <summary>
  12618. <para>Gets the line number of the unknown XML node.</para>
  12619. </summary>
  12620. </member>
  12621. <member name="P:System.Xml.Serialization.XmlNodeEventArgs.LinePosition">
  12622. <summary>
  12623. <para>Gets the position in the line of the unknown XML node.</para>
  12624. </summary>
  12625. </member>
  12626. <member name="T:System.Xml.Serialization.UnreferencedObjectEventHandler">
  12627. <summary>
  12628. <para>Represents the method that will handle the <see cref="E:System.Xml.Serialization.XmlSerializer.UnreferencedObject" /> event of an <see cref="T:System.Xml.Serialization.XmlSerializer" /> .</para>
  12629. </summary>
  12630. <param name="sender">The source of the event.</param>
  12631. <param name=" e">An <see cref="T:System.Xml.Serialization.UnreferencedObjectEventArgs" /> that contains the event data.</param>
  12632. </member>
  12633. <member name="T:System.Xml.Serialization.UnreferencedObjectEventArgs">
  12634. <summary>
  12635. <para>Provides data for the known, but unreferenced, object
  12636. found in an encoded SOAP XML stream during deserialization.</para>
  12637. </summary>
  12638. </member>
  12639. <member name="M:System.Xml.Serialization.UnreferencedObjectEventArgs.#ctor(System.Object,System.String)">
  12640. <summary>
  12641. <para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.UnreferencedObjectEventArgs" /> class.</para>
  12642. </summary>
  12643. <param name="o">The unreferenced object.</param>
  12644. <param name=" id">A unique string used to identify the unreferenced object.</param>
  12645. <returns>
  12646. <para>An <see cref="T:System.Xml.Serialization.UnreferencedObjectEventArgs" /> that contains
  12647. information about the unreferenced object.</para>
  12648. </returns>
  12649. </member>
  12650. <member name="P:System.Xml.Serialization.UnreferencedObjectEventArgs.UnreferencedObject">
  12651. <summary>
  12652. <para>Gets the deserialized, but unreferenced, object.</para>
  12653. </summary>
  12654. </member>
  12655. <member name="P:System.Xml.Serialization.UnreferencedObjectEventArgs.UnreferencedId">
  12656. <summary>
  12657. <para>Gets the ID of the object.</para>
  12658. </summary>
  12659. </member>
  12660. </members>
  12661. </doc>