summaryrefslogtreecommitdiff
path: root/.packages/microsoft.netcore.app.ref/3.0.0/ref/netcoreapp3.0/System.Xml.ReaderWriter.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.netcore.app.ref/3.0.0/ref/netcoreapp3.0/System.Xml.ReaderWriter.xml')
-rwxr-xr-x.packages/microsoft.netcore.app.ref/3.0.0/ref/netcoreapp3.0/System.Xml.ReaderWriter.xml11443
1 files changed, 11443 insertions, 0 deletions
diff --git a/.packages/microsoft.netcore.app.ref/3.0.0/ref/netcoreapp3.0/System.Xml.ReaderWriter.xml b/.packages/microsoft.netcore.app.ref/3.0.0/ref/netcoreapp3.0/System.Xml.ReaderWriter.xml
new file mode 100755
index 0000000000..aef80daebf
--- /dev/null
+++ b/.packages/microsoft.netcore.app.ref/3.0.0/ref/netcoreapp3.0/System.Xml.ReaderWriter.xml
@@ -0,0 +1,11443 @@
+<?xml version="1.0" encoding="utf-8"?>
+<doc>
+ <assembly>
+ <name>System.Xml.ReaderWriter</name>
+ </assembly>
+ <members>
+ <member name="T:System.Xml.ConformanceLevel">
+ <summary>Specifies the amount of input or output checking that <see cref="T:System.Xml.XmlReader" /> and <see cref="T:System.Xml.XmlWriter" /> objects perform.</summary>
+ </member>
+ <member name="F:System.Xml.ConformanceLevel.Auto">
+ <summary>The <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.Xml.XmlWriter" /> object automatically detects whether document-level or fragment-level checking should be performed, and does the appropriate checking. If you're wrapping another <see cref="T:System.Xml.XmlReader" /> or <see cref="T:System.Xml.XmlWriter" /> object, the outer object doesn't do any additional conformance checking. Conformance checking is left up to the underlying object.
+ See the <see cref="P:System.Xml.XmlReaderSettings.ConformanceLevel" /> and <see cref="P:System.Xml.XmlWriterSettings.ConformanceLevel" /> properties for details on how the compliance level is determined.</summary>
+ </member>
+ <member name="F:System.Xml.ConformanceLevel.Document">
+ <summary>The XML data complies with the rules for a well-formed XML 1.0 document, as defined by the W3C. This level of checking ensures that the stream being read or written can be consumed by any processor as an XML 1.0 document.</summary>
+ </member>
+ <member name="F:System.Xml.ConformanceLevel.Fragment">
+ <summary>The XML data is a well-formed XML fragment, as defined by the W3C. This conformance level represents an XML document that might not have a root element but is otherwise well-formed. This level of checking ensures that the stream being read or written can be consumed by any processor as an XML 1.0 external parsed entity].</summary>
+ </member>
+ <member name="T:System.Xml.DtdProcessing">
+ <summary>Specifies the options for processing DTDs. The <see cref="T:System.Xml.DtdProcessing" /> enumeration is used by the <see cref="T:System.Xml.XmlReaderSettings" /> class.</summary>
+ </member>
+ <member name="F:System.Xml.DtdProcessing.Ignore">
+ <summary>Causes the DOCTYPE element to be ignored. No DTD processing occurs, and the DTD/DOCTYPE is lost on output.</summary>
+ </member>
+ <member name="F:System.Xml.DtdProcessing.Parse">
+ <summary>Used for parsing DTDs.</summary>
+ </member>
+ <member name="F:System.Xml.DtdProcessing.Prohibit">
+ <summary>Specifies that when a DTD is encountered, an <see cref="T:System.Xml.XmlException" /> is thrown with a message that states that DTDs are prohibited. This is the default behavior.</summary>
+ </member>
+ <member name="T:System.Xml.EntityHandling">
+ <summary>Specifies how the <see cref="T:System.Xml.XmlTextReader" /> or <see cref="T:System.Xml.XmlValidatingReader" /> handle entities.</summary>
+ </member>
+ <member name="F:System.Xml.EntityHandling.ExpandCharEntities">
+ <summary>Expands character entities and returns general entities as <see cref="F:System.Xml.XmlNodeType.EntityReference" /> nodes.
+You must call <see cref="Overload:System.Xml.XmlReader.ResolveEntity" /> to see what the general entities expand to. This enables you to optimize entity handling by only expanding the entity the first time it is used.
+When set to <see langword="ExpandCharEntities" />, a reader call to the <see cref="Overload:System.Xml.XmlReader.GetAttribute" /> method expands all entities (both general and character entities).</summary>
+ </member>
+ <member name="F:System.Xml.EntityHandling.ExpandEntities">
+ <summary>Expands all entities and returns the expanded nodes.
+<see cref="F:System.Xml.XmlNodeType.EntityReference" /> nodes are not returned. The entity text is expanded in place of the entity references.</summary>
+ </member>
+ <member name="T:System.Xml.Formatting">
+ <summary>Specifies formatting options for the <see cref="T:System.Xml.XmlTextWriter" />.</summary>
+ </member>
+ <member name="F:System.Xml.Formatting.Indented">
+ <summary>Causes child elements to be indented according to the <see cref="P:System.Xml.XmlTextWriter.Indentation" /> and <see cref="P:System.Xml.XmlTextWriter.IndentChar" /> settings.
+This option indents element content only; mixed content is not affected. For the XML 1.0 definitions of these terms, see the World Wide Web Consortium (W3C) documentation Element Content and Mixed Content.</summary>
+ </member>
+ <member name="F:System.Xml.Formatting.None">
+ <summary>No special formatting is applied. This is the default.</summary>
+ </member>
+ <member name="T:System.Xml.IApplicationResourceStreamResolver">
+ <summary>Represents an application resource stream resolver.</summary>
+ </member>
+ <member name="M:System.Xml.IApplicationResourceStreamResolver.GetApplicationResourceStream(System.Uri)">
+ <summary>Returns an application resource stream from the specified URI.</summary>
+ <param name="relativeUri">The relative URI.</param>
+ <returns>An application resource stream.</returns>
+ </member>
+ <member name="T:System.Xml.IHasXmlNode">
+ <summary>Enables a class to return an <see cref="T:System.Xml.XmlNode" /> from the current context or position.</summary>
+ </member>
+ <member name="M:System.Xml.IHasXmlNode.GetNode">
+ <summary>Returns the <see cref="T:System.Xml.XmlNode" /> for the current position.</summary>
+ <returns>The <see langword="XmlNode" /> for the current position.</returns>
+ </member>
+ <member name="T:System.Xml.IXmlLineInfo">
+ <summary>Provides an interface to enable a class to return line and position information.</summary>
+ </member>
+ <member name="M:System.Xml.IXmlLineInfo.HasLineInfo">
+ <summary>Gets a value indicating whether the class can return line information.</summary>
+ <returns>
+ <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" />.</returns>
+ </member>
+ <member name="P:System.Xml.IXmlLineInfo.LineNumber">
+ <summary>Gets the current line number.</summary>
+ <returns>The current line number or 0 if no line information is available (for example, <see cref="M:System.Xml.IXmlLineInfo.HasLineInfo" /> returns <see langword="false" />).</returns>
+ </member>
+ <member name="P:System.Xml.IXmlLineInfo.LinePosition">
+ <summary>Gets the current line position.</summary>
+ <returns>The current line position or 0 if no line information is available (for example, <see cref="M:System.Xml.IXmlLineInfo.HasLineInfo" /> returns <see langword="false" />).</returns>
+ </member>
+ <member name="T:System.Xml.IXmlNamespaceResolver">
+ <summary>Provides read-only access to a set of prefix and namespace mappings.</summary>
+ </member>
+ <member name="M:System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)">
+ <summary>Gets a collection of defined prefix-namespace mappings that are currently in scope.</summary>
+ <param name="scope">An <see cref="T:System.Xml.XmlNamespaceScope" /> value that specifies the type of namespace nodes to return.</param>
+ <returns>An <see cref="T:System.Collections.IDictionary" /> that contains the current in-scope namespaces.</returns>
+ </member>
+ <member name="M:System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)">
+ <summary>Gets the namespace URI mapped to the specified prefix.</summary>
+ <param name="prefix">The prefix whose namespace URI you wish to find.</param>
+ <returns>The namespace URI that is mapped to the prefix; <see langword="null" /> if the prefix is not mapped to a namespace URI.</returns>
+ </member>
+ <member name="M:System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)">
+ <summary>Gets the prefix that is mapped to the specified namespace URI.</summary>
+ <param name="namespaceName">The namespace URI whose prefix you wish to find.</param>
+ <returns>The prefix that is mapped to the namespace URI; <see langword="null" /> if the namespace URI is not mapped to a prefix.</returns>
+ </member>
+ <member name="T:System.Xml.NamespaceHandling">
+ <summary>Specifies whether to remove duplicate namespace declarations in the <see cref="T:System.Xml.XmlWriter" />.</summary>
+ </member>
+ <member name="F:System.Xml.NamespaceHandling.Default">
+ <summary>Specifies that duplicate namespace declarations will not be removed.</summary>
+ </member>
+ <member name="F:System.Xml.NamespaceHandling.OmitDuplicates">
+ <summary>Specifies that duplicate namespace declarations will be removed. For the duplicate namespace to be removed, the prefix and the namespace must match.</summary>
+ </member>
+ <member name="T:System.Xml.NameTable">
+ <summary>Implements a single-threaded <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ </member>
+ <member name="M:System.Xml.NameTable.#ctor">
+ <summary>Initializes a new instance of the <see langword="NameTable" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.NameTable.Add(System.Char[],System.Int32,System.Int32)">
+ <summary>Atomizes the specified string and adds it to the <see langword="NameTable" />.</summary>
+ <param name="key">The character array containing the string to add.</param>
+ <param name="start">The zero-based index into the array specifying the first character of the string.</param>
+ <param name="len">The number of characters in the string.</param>
+ <returns>The atomized string or the existing string if one already exists in the <see langword="NameTable" />. If <paramref name="len" /> is zero, String.Empty is returned.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">0 &gt; <paramref name="start" />
+ -or-
+ <paramref name="start" /> &gt;= <paramref name="key" />.Length
+ -or-
+ <paramref name="len" /> &gt;= <paramref name="key" />.Length
+ The above conditions do not cause an exception to be thrown if <paramref name="len" /> =0.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="len" /> &lt; 0.</exception>
+ </member>
+ <member name="M:System.Xml.NameTable.Add(System.String)">
+ <summary>Atomizes the specified string and adds it to the <see langword="NameTable" />.</summary>
+ <param name="key">The string to add.</param>
+ <returns>The atomized string or the existing string if it already exists in the <see langword="NameTable" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.NameTable.Get(System.Char[],System.Int32,System.Int32)">
+ <summary>Gets the atomized string containing the same characters as the specified range of characters in the given array.</summary>
+ <param name="key">The character array containing the name to find.</param>
+ <param name="start">The zero-based index into the array specifying the first character of the name.</param>
+ <param name="len">The number of characters in the name.</param>
+ <returns>The atomized string or <see langword="null" /> if the string has not already been atomized. If <paramref name="len" /> is zero, String.Empty is returned.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">0 &gt; <paramref name="start" />
+ -or-
+ <paramref name="start" /> &gt;= <paramref name="key" />.Length
+ -or-
+ <paramref name="len" /> &gt;= <paramref name="key" />.Length
+ The above conditions do not cause an exception to be thrown if <paramref name="len" /> =0.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="len" /> &lt; 0.</exception>
+ </member>
+ <member name="M:System.Xml.NameTable.Get(System.String)">
+ <summary>Gets the atomized string with the specified value.</summary>
+ <param name="value">The name to find.</param>
+ <returns>The atomized string object or <see langword="null" /> if the string has not already been atomized.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.Xml.NewLineHandling">
+ <summary>Specifies how to handle line breaks.</summary>
+ </member>
+ <member name="F:System.Xml.NewLineHandling.Entitize">
+ <summary>New line characters are entitized. This setting preserves all characters when the output is read by a normalizing <see cref="T:System.Xml.XmlReader" />.</summary>
+ </member>
+ <member name="F:System.Xml.NewLineHandling.None">
+ <summary>The new line characters are unchanged. The output is the same as the input.</summary>
+ </member>
+ <member name="F:System.Xml.NewLineHandling.Replace">
+ <summary>New line characters are replaced to match the character specified in the <see cref="P:System.Xml.XmlWriterSettings.NewLineChars" /> property.</summary>
+ </member>
+ <member name="T:System.Xml.ReadState">
+ <summary>Specifies the state of the reader.</summary>
+ </member>
+ <member name="F:System.Xml.ReadState.Closed">
+ <summary>The <see cref="M:System.Xml.XmlReader.Close" /> method has been called.</summary>
+ </member>
+ <member name="F:System.Xml.ReadState.EndOfFile">
+ <summary>The end of the file has been reached successfully.</summary>
+ </member>
+ <member name="F:System.Xml.ReadState.Error">
+ <summary>An error occurred that prevents the read operation from continuing.</summary>
+ </member>
+ <member name="F:System.Xml.ReadState.Initial">
+ <summary>The <see langword="Read" /> method has not been called.</summary>
+ </member>
+ <member name="F:System.Xml.ReadState.Interactive">
+ <summary>The <see langword="Read" /> method has been called. Additional methods may be called on the reader.</summary>
+ </member>
+ <member name="T:System.Xml.Resolvers.XmlKnownDtds">
+ <summary>The <see cref="T:System.Xml.Resolvers.XmlKnownDtds" /> enumeration is used by the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> and defines which well-known DTDs that the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> recognizes.</summary>
+ </member>
+ <member name="F:System.Xml.Resolvers.XmlKnownDtds.All">
+ <summary>Specifies that the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> will recognize all currently supported DTDs. This is the default behavior.</summary>
+ </member>
+ <member name="F:System.Xml.Resolvers.XmlKnownDtds.None">
+ <summary>Specifies that the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> will not recognize any of the predefined DTDs.</summary>
+ </member>
+ <member name="F:System.Xml.Resolvers.XmlKnownDtds.Rss091">
+ <summary>Specifies that the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> will recognize DTDs and entities that are defined in RSS 0.91.</summary>
+ </member>
+ <member name="F:System.Xml.Resolvers.XmlKnownDtds.Xhtml10">
+ <summary>Specifies that the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> will recognize DTDs and entities that are defined in XHTML 1.0.</summary>
+ </member>
+ <member name="T:System.Xml.Resolvers.XmlPreloadedResolver">
+ <summary>Represents a class that is used to prepopulate the cache with DTDs or XML streams.</summary>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.#ctor(System.Xml.Resolvers.XmlKnownDtds)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> class with the specified preloaded well-known DTDs.</summary>
+ <param name="preloadedDtds">The well-known DTDs that should be prepopulated into the cache.</param>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.#ctor(System.Xml.XmlResolver)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> class with the specified fallback resolver.</summary>
+ <param name="fallbackResolver">The <see langword="XmlResolver" />, <see langword="XmlXapResolver" />, or your own resolver.</param>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.#ctor(System.Xml.XmlResolver,System.Xml.Resolvers.XmlKnownDtds)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> class with the specified fallback resolver and preloaded well-known DTDs.</summary>
+ <param name="fallbackResolver">The <see langword="XmlResolver" />, <see langword="XmlXapResolver" />, or your own resolver.</param>
+ <param name="preloadedDtds">The well-known DTDs that should be prepopulated into the cache.</param>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.#ctor(System.Xml.XmlResolver,System.Xml.Resolvers.XmlKnownDtds,System.Collections.Generic.IEqualityComparer{System.Uri})">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> class with the specified fallback resolver, preloaded well-known DTDs, and URI equality comparer.</summary>
+ <param name="fallbackResolver">The <see langword="XmlResolver" />, <see langword="XmlXapResolver" />, or your own resolver.</param>
+ <param name="preloadedDtds">The well-known DTDs that should be prepopulated into cache.</param>
+ <param name="uriComparer">The implementation of the <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> generic interface to use when you compare URIs.</param>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.Add(System.Uri,System.Byte[])">
+ <summary>Adds a byte array to the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store and maps it to a URI. If the store already contains a mapping for the same URI, the existing mapping is overridden.</summary>
+ <param name="uri">The URI of the data that is being added to the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store.</param>
+ <param name="value">A byte array with the data that corresponds to the provided URI.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> or <paramref name="value" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.Add(System.Uri,System.Byte[],System.Int32,System.Int32)">
+ <summary>Adds a byte array to the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store and maps it to a URI. If the store already contains a mapping for the same URI, the existing mapping is overridden.</summary>
+ <param name="uri">The URI of the data that is being added to the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store.</param>
+ <param name="value">A byte array with the data that corresponds to the provided URI.</param>
+ <param name="offset">The offset in the provided byte array where the data starts.</param>
+ <param name="count">The number of bytes to read from the byte array, starting at the provided offset.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> or <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is less than 0.
+-or-
+The length of the <paramref name="value" /> minus <paramref name="offset" /> is less than <paramref name="count." /></exception>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.Add(System.Uri,System.IO.Stream)">
+ <summary>Adds a <see cref="T:System.IO.Stream" /> to the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store and maps it to a URI. If the store already contains a mapping for the same URI, the existing mapping is overridden.</summary>
+ <param name="uri">The URI of the data that is being added to the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store.</param>
+ <param name="value">A <see cref="T:System.IO.Stream" /> with the data that corresponds to the provided URI.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> or <paramref name="value" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.Add(System.Uri,System.String)">
+ <summary>Adds a string with preloaded data to the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store and maps it to a URI. If the store already contains a mapping for the same URI, the existing mapping is overridden.</summary>
+ <param name="uri">The URI of the data that is being added to the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store.</param>
+ <param name="value">A <see langword="String" /> with the data that corresponds to the provided URI.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> or <paramref name="value" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Xml.Resolvers.XmlPreloadedResolver.Credentials">
+ <summary>Sets the credentials that are used to authenticate the underlying <see cref="T:System.Net.WebRequest" />.</summary>
+ <returns>The credentials that are used to authenticate the underlying web request.</returns>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.GetEntity(System.Uri,System.String,System.Type)">
+ <summary>Maps a URI to an object that contains the actual resource.</summary>
+ <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)" />.</param>
+ <param name="role">The current version of the .NET Framework for Silverlight does not use this parameter when resolving URIs. This parameter is provided for future extensibility purposes. For example, this parameter can be mapped to the xlink:role and used as an implementation-specific argument in other scenarios.</param>
+ <param name="ofObjectToReturn">The type of object to return. The <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> supports <see cref="T:System.IO.Stream" /> objects and <see cref="T:System.IO.TextReader" /> objects for URIs that were added as <see langword="String" />. If the requested type is not supported by the resolver, an exception will be thrown. Use the <see cref="M:System.Xml.Resolvers.XmlPreloadedResolver.SupportsType(System.Uri,System.Type)" /> method to determine whether a certain <see langword="Type" /> is supported by this resolver.</param>
+ <returns>A <see cref="T:System.IO.Stream" /> or <see cref="T:System.IO.TextReader" /> object that corresponds to the actual source.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="absoluteUri" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.XmlException">Cannot resolve URI passed in <paramref name="absoluteUri" />.
+ -or-
+ <paramref name="ofObjectToReturn" /> is not of a supported type.</exception>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.GetEntityAsync(System.Uri,System.String,System.Type)">
+ <summary>Asynchronously maps a URI to an object that contains the actual resource.</summary>
+ <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)" />.</param>
+ <param name="role">The current version of the .NET Framework for Silverlight does not use this parameter when resolving URIs. This parameter is provided for future extensibility purposes. For example, this parameter can be mapped to the xlink:role and used as an implementation-specific argument in other scenarios.</param>
+ <param name="ofObjectToReturn">The type of object to return. The <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> supports <see cref="T:System.IO.Stream" /> objects and <see cref="T:System.IO.TextReader" /> objects for URIs that were added as <see langword="String" />. If the requested type is not supported by the resolver, an exception will be thrown. Use the <see cref="M:System.Xml.Resolvers.XmlPreloadedResolver.SupportsType(System.Uri,System.Type)" /> method to determine whether a certain <see langword="Type" /> is supported by this resolver.</param>
+ <returns>A <see cref="T:System.IO.Stream" /> or <see cref="T:System.IO.TextReader" /> object that corresponds to the actual source.</returns>
+ </member>
+ <member name="P:System.Xml.Resolvers.XmlPreloadedResolver.PreloadedUris">
+ <summary>Gets a collection of preloaded URIs.</summary>
+ <returns>The collection of preloaded URIs.</returns>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.Remove(System.Uri)">
+ <summary>Removes the data that corresponds to the URI from the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" />.</summary>
+ <param name="uri">The URI of the data that should be removed from the <see cref="T:System.Xml.Resolvers.XmlPreloadedResolver" /> store.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.ResolveUri(System.Uri,System.String)">
+ <summary>Resolves the absolute URI from the base and relative URIs.</summary>
+ <param name="baseUri">The base URI used to resolve the relative URI.</param>
+ <param name="relativeUri">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.</param>
+ <returns>The <see cref="T:System.Uri" /> representing the absolute URI or <see langword="null" /> if the relative URI cannot be resolved.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Resolvers.XmlPreloadedResolver.SupportsType(System.Uri,System.Type)">
+ <summary>Determines whether the resolver supports other <see cref="T:System.Type" />s than just <see cref="T:System.IO.Stream" />.</summary>
+ <param name="absoluteUri">The absolute URI to check.</param>
+ <param name="type">The <see cref="T:System.Type" /> to return.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Type" /> is supported; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.Xml.Schema.IXmlSchemaInfo">
+ <summary>Defines the post-schema-validation infoset of a validated XML node.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.IXmlSchemaInfo.IsDefault">
+ <summary>Gets a value indicating if this validated XML node was set as the result of a default being applied during XML Schema Definition Language (XSD) schema validation.</summary>
+ <returns>
+ <see langword="true" /> if this validated XML node was set as the result of a default being applied during schema validation; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.IXmlSchemaInfo.IsNil">
+ <summary>Gets a value indicating if the value for this validated XML node is nil.</summary>
+ <returns>
+ <see langword="true" /> if the value for this validated XML node is nil; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.IXmlSchemaInfo.MemberType">
+ <summary>Gets the dynamic schema type for this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> object that represents the dynamic schema type for this validated XML node.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.IXmlSchemaInfo.SchemaAttribute">
+ <summary>Gets the compiled <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> that corresponds to this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> that corresponds to this validated XML node.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.IXmlSchemaInfo.SchemaElement">
+ <summary>Gets the compiled <see cref="T:System.Xml.Schema.XmlSchemaElement" /> that corresponds to this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaElement" /> that corresponds to this validated XML node.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.IXmlSchemaInfo.SchemaType">
+ <summary>Gets the static XML Schema Definition Language (XSD) schema type of this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaType" /> of this validated XML node.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.IXmlSchemaInfo.Validity">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaValidity" /> value of this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaValidity" /> value of this validated XML node.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.ValidationEventArgs">
+ <summary>Returns detailed information related to the <see langword="ValidationEventHandler" />.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.ValidationEventArgs.Exception">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaException" /> associated with the validation event.</summary>
+ <returns>The <see langword="XmlSchemaException" /> associated with the validation event.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.ValidationEventArgs.Message">
+ <summary>Gets the text description corresponding to the validation event.</summary>
+ <returns>The text description.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.ValidationEventArgs.Severity">
+ <summary>Gets the severity of the validation event.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSeverityType" /> value representing the severity of the validation event.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.ValidationEventHandler">
+ <summary>Represents the callback method that will handle XML schema validation events and the <see cref="T:System.Xml.Schema.ValidationEventArgs" />.</summary>
+ <param name="sender">The source of the event.
+ Note Determine the type of a sender before using it in your code. You cannot assume that the sender is an instance of a particular type. The sender is also not guaranteed to not be null. Always surround your casts with failure handling logic.</param>
+ <param name="e">The event data.</param>
+ </member>
+ <member name="T:System.Xml.Schema.XmlAtomicValue">
+ <summary>Represents the typed value of a validated XML element or attribute. The <see cref="T:System.Xml.Schema.XmlAtomicValue" /> class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlAtomicValue.Clone">
+ <summary>Returns a copy of this <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object copy of this <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.IsNode">
+ <summary>Gets a value indicating whether the validated XML element or attribute is an XPath node or an atomic value.</summary>
+ <returns>
+ <see langword="true" /> if the validated XML element or attribute is an XPath node; <see langword="false" /> if the validated XML element or attribute is an atomic value.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlAtomicValue.System#ICloneable#Clone">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlAtomicValue.Clone" />.</summary>
+ <returns>A copy of this <see cref="T:System.Xml.Schema.XmlAtomicValue" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlAtomicValue.ToString">
+ <summary>Gets the <see langword="string" /> value of the validated XML element or attribute.</summary>
+ <returns>The <see langword="string" /> value of the validated XML element or attribute.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.TypedValue">
+ <summary>Gets the current validated XML element or attribute as a boxed object of the most appropriate Microsoft .NET Framework type according to its schema type.</summary>
+ <returns>The current validated XML element or attribute as a boxed object of the most appropriate .NET Framework type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.Value">
+ <summary>Gets the <see langword="string" /> value of the validated XML element or attribute.</summary>
+ <returns>The <see langword="string" /> value of the validated XML element or attribute.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlAtomicValue.ValueAs(System.Type,System.Xml.IXmlNamespaceResolver)">
+ <summary>Returns the validated XML element or attribute's value as the type specified using the <see cref="T:System.Xml.IXmlNamespaceResolver" /> object specified to resolve namespace prefixes.</summary>
+ <param name="type">The type to return the validated XML element or attribute's value as.</param>
+ <param name="nsResolver">The <see cref="T:System.Xml.IXmlNamespaceResolver" /> object used to resolve namespace prefixes.</param>
+ <returns>The value of the validated XML element or attribute as the type requested.</returns>
+ <exception cref="T:System.FormatException">The validated XML element or attribute's value is not in the correct format for the target type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.ValueAsBoolean">
+ <summary>Gets the validated XML element or attribute's value as a <see cref="T:System.Boolean" />.</summary>
+ <returns>The validated XML element or attribute's value as a <see cref="T:System.Boolean" />.</returns>
+ <exception cref="T:System.FormatException">The validated XML element or attribute's value is not in the correct format for the <see cref="T:System.Boolean" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Boolean" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.ValueAsDateTime">
+ <summary>Gets the validated XML element or attribute's value as a <see cref="T:System.DateTime" />.</summary>
+ <returns>The validated XML element or attribute's value as a <see cref="T:System.DateTime" />.</returns>
+ <exception cref="T:System.FormatException">The validated XML element or attribute's value is not in the correct format for the <see cref="T:System.DateTime" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.DateTime" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.ValueAsDouble">
+ <summary>Gets the validated XML element or attribute's value as a <see cref="T:System.Double" />.</summary>
+ <returns>The validated XML element or attribute's value as a <see cref="T:System.Double" />.</returns>
+ <exception cref="T:System.FormatException">The validated XML element or attribute's value is not in the correct format for the <see cref="T:System.Double" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Double" /> is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.ValueAsInt">
+ <summary>Gets the validated XML element or attribute's value as an <see cref="T:System.Int32" />.</summary>
+ <returns>The validated XML element or attribute's value as an <see cref="T:System.Int32" />.</returns>
+ <exception cref="T:System.FormatException">The validated XML element or attribute's value is not in the correct format for the <see cref="T:System.Int32" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Int32" /> is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.ValueAsLong">
+ <summary>Gets the validated XML element or attribute's value as an <see cref="T:System.Int64" />.</summary>
+ <returns>The validated XML element or attribute's value as an <see cref="T:System.Int64" />.</returns>
+ <exception cref="T:System.FormatException">The validated XML element or attribute's value is not in the correct format for the <see cref="T:System.Int64" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Int64" /> is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.ValueType">
+ <summary>Gets the Microsoft .NET Framework type of the validated XML element or attribute.</summary>
+ <returns>The .NET Framework type of the validated XML element or attribute. The default value is <see cref="T:System.String" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlAtomicValue.XmlType">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaType" /> for the validated XML element or attribute.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaType" /> for the validated XML element or attribute.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchema">
+ <summary>An in-memory representation of an XML Schema, as specified in the World Wide Web Consortium (W3C) XML Schema Part 1: Structures and XML Schema Part 2: Datatypes].</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchema" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.AttributeFormDefault">
+ <summary>Gets or sets the form for attributes declared in the target namespace of the schema.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaForm" /> value that indicates if attributes from the target namespace are required to be qualified with the namespace prefix. The default is <see cref="F:System.Xml.Schema.XmlSchemaForm.None" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.AttributeGroups">
+ <summary>Gets the post-schema-compilation value of all the global attribute groups in the schema.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> collection of all the global attribute groups in the schema.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.Attributes">
+ <summary>Gets the post-schema-compilation value for all the attributes in the schema.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> collection of all the attributes in the schema.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.BlockDefault">
+ <summary>Gets or sets the <see langword="blockDefault" /> attribute which sets the default value of the <see langword="block" /> attribute on element and complex types in the <see langword="targetNamespace" /> of the schema.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaDerivationMethod" /> value representing the different methods for preventing derivation. The default value is <see langword="XmlSchemaDerivationMethod.None" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Compile(System.Xml.Schema.ValidationEventHandler)">
+ <summary>Compiles the XML Schema Object Model (SOM) into schema information for validation. Used to check the syntactic and semantic structure of the programmatically built SOM. Semantic validation checking is performed during compilation.</summary>
+ <param name="validationEventHandler">The validation event handler that receives information about XML Schema validation errors.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.XmlResolver)">
+ <summary>Compiles the XML Schema Object Model (SOM) into schema information for validation. Used to check the syntactic and semantic structure of the programmatically built SOM. Semantic validation checking is performed during compilation.</summary>
+ <param name="validationEventHandler">The validation event handler that receives information about the XML Schema validation errors.</param>
+ <param name="resolver">The <see langword="XmlResolver" /> used to resolve namespaces referenced in <see langword="include" /> and <see langword="import" /> elements.</param>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.ElementFormDefault">
+ <summary>Gets or sets the form for elements declared in the target namespace of the schema.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaForm" /> value that indicates if elements from the target namespace are required to be qualified with the namespace prefix. The default is <see cref="F:System.Xml.Schema.XmlSchemaForm.None" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.Elements">
+ <summary>Gets the post-schema-compilation value for all the elements in the schema.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> collection of all the elements in the schema.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.FinalDefault">
+ <summary>Gets or sets the <see langword="finalDefault" /> attribute which sets the default value of the <see langword="final" /> attribute on elements and complex types in the target namespace of the schema.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaDerivationMethod" /> value representing the different methods for preventing derivation. The default value is <see langword="XmlSchemaDerivationMethod.None" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.Groups">
+ <summary>Gets the post-schema-compilation value of all the groups in the schema.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> collection of all the groups in the schema.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.Id">
+ <summary>Gets or sets the string ID.</summary>
+ <returns>The ID of the string. The default value is <see langword="String.Empty" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.Includes">
+ <summary>Gets the collection of included and imported schemas.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectCollection" /> of the included and imported schemas.</returns>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchema.InstanceNamespace">
+ <summary>The XML schema instance namespace. This field is constant.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.IsCompiled">
+ <summary>Indicates if the schema has been compiled.</summary>
+ <returns>
+ <see langword="true" /> if schema has been compiled, otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.Items">
+ <summary>Gets the collection of schema elements in the schema and is used to add new element types at the <see langword="schema" /> element level.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectCollection" /> of schema elements in the schema.</returns>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchema.Namespace">
+ <summary>The XML schema namespace. This field is constant.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.Notations">
+ <summary>Gets the post-schema-compilation value for all notations in the schema.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> collection of all notations in the schema.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Read(System.IO.Stream,System.Xml.Schema.ValidationEventHandler)">
+ <summary>Reads an XML Schema from the supplied stream.</summary>
+ <param name="stream">The supplied data stream.</param>
+ <param name="validationEventHandler">The validation event handler that receives information about XML Schema syntax errors.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> object representing the XML Schema.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">An <see cref="T:System.Xml.Schema.XmlSchemaException" /> is raised if no <see cref="T:System.Xml.Schema.ValidationEventHandler" /> is specified.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Read(System.IO.TextReader,System.Xml.Schema.ValidationEventHandler)">
+ <summary>Reads an XML Schema from the supplied <see cref="T:System.IO.TextReader" />.</summary>
+ <param name="reader">The <see langword="TextReader" /> containing the XML Schema to read.</param>
+ <param name="validationEventHandler">The validation event handler that receives information about the XML Schema syntax errors.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> object representing the XML Schema.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">An <see cref="T:System.Xml.Schema.XmlSchemaException" /> is raised if no <see cref="T:System.Xml.Schema.ValidationEventHandler" /> is specified.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Read(System.Xml.XmlReader,System.Xml.Schema.ValidationEventHandler)">
+ <summary>Reads an XML Schema from the supplied <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="reader">The <see langword="XmlReader" /> containing the XML Schema to read.</param>
+ <param name="validationEventHandler">The validation event handler that receives information about the XML Schema syntax errors.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> object representing the XML Schema.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">An <see cref="T:System.Xml.Schema.XmlSchemaException" /> is raised if no <see cref="T:System.Xml.Schema.ValidationEventHandler" /> is specified.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.SchemaTypes">
+ <summary>Gets the post-schema-compilation value of all schema types in the schema.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectCollection" /> of all schema types in the schema.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.TargetNamespace">
+ <summary>Gets or sets the Uniform Resource Identifier (URI) of the schema target namespace.</summary>
+ <returns>The schema target namespace.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.UnhandledAttributes">
+ <summary>Gets or sets the qualified attributes which do not belong to the schema target namespace.</summary>
+ <returns>An array of qualified <see cref="T:System.Xml.XmlAttribute" /> objects that do not belong to the schema target namespace.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchema.Version">
+ <summary>Gets or sets the version of the schema.</summary>
+ <returns>The version of the schema. The default value is <see langword="String.Empty" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Write(System.IO.Stream)">
+ <summary>Writes the XML Schema to the supplied data stream.</summary>
+ <param name="stream">The supplied data stream.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Write(System.IO.Stream,System.Xml.XmlNamespaceManager)">
+ <summary>Writes the XML Schema to the supplied <see cref="T:System.IO.Stream" /> using the <see cref="T:System.Xml.XmlNamespaceManager" /> specified.</summary>
+ <param name="stream">The supplied data stream.</param>
+ <param name="namespaceManager">The <see cref="T:System.Xml.XmlNamespaceManager" />.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Write(System.IO.TextWriter)">
+ <summary>Writes the XML Schema to the supplied <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write to.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Write(System.IO.TextWriter,System.Xml.XmlNamespaceManager)">
+ <summary>Writes the XML Schema to the supplied <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter" /> to write to.</param>
+ <param name="namespaceManager">The <see cref="T:System.Xml.XmlNamespaceManager" />.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Write(System.Xml.XmlWriter)">
+ <summary>Writes the XML Schema to the supplied <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to write to.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="writer" /> parameter is null.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchema.Write(System.Xml.XmlWriter,System.Xml.XmlNamespaceManager)">
+ <summary>Writes the XML Schema to the supplied <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to write to.</param>
+ <param name="namespaceManager">The <see cref="T:System.Xml.XmlNamespaceManager" />.</param>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAll">
+ <summary>Represents the World Wide Web Consortium (W3C) <see langword="all" /> element (compositor).</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAll.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAll" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAll.Items">
+ <summary>Gets the collection of <see langword="XmlSchemaElement" /> elements contained within the <see langword="all" /> compositor.</summary>
+ <returns>The collection of elements contained in <see langword="XmlSchemaAll" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAnnotated">
+ <summary>The base class for any element that can contain annotation elements.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAnnotated.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAnnotated" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAnnotated.Annotation">
+ <summary>Gets or sets the <see langword="annotation" /> property.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaAnnotation" /> representing the <see langword="annotation" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAnnotated.Id">
+ <summary>Gets or sets the string id.</summary>
+ <returns>The string id. The default is <see langword="String.Empty" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAnnotated.UnhandledAttributes">
+ <summary>Gets or sets the qualified attributes that do not belong to the current schema's target namespace.</summary>
+ <returns>An array of qualified <see cref="T:System.Xml.XmlAttribute" /> objects that do not belong to the schema's target namespace.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAnnotation">
+ <summary>Represents the World Wide Web Consortium (W3C) <see langword="annotation" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAnnotation.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAnnotation" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAnnotation.Id">
+ <summary>Gets or sets the string id.</summary>
+ <returns>The string id. The default is <see langword="String.Empty" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAnnotation.Items">
+ <summary>Gets the <see langword="Items" /> collection that is used to store the <see langword="appinfo" /> and <see langword="documentation" /> child elements.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaObjectCollection" /> of <see langword="appinfo" /> and <see langword="documentation" /> child elements.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAnnotation.UnhandledAttributes">
+ <summary>Gets or sets the qualified attributes that do not belong to the schema's target namespace.</summary>
+ <returns>An array of <see cref="T:System.Xml.XmlAttribute" /> objects that do not belong to the schema's target namespace.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAny">
+ <summary>Represents the World Wide Web Consortium (W3C) <see langword="any" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAny.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAny" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAny.Namespace">
+ <summary>Gets or sets the namespaces containing the elements that can be used.</summary>
+ <returns>Namespaces for elements that are available for use. The default is <see langword="##any" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAny.ProcessContents">
+ <summary>Gets or sets information about how an application or XML processor should handle the validation of XML documents for the elements specified by the <see langword="any" /> element.</summary>
+ <returns>One of the <see cref="T:System.Xml.Schema.XmlSchemaContentProcessing" /> values. If no <see langword="processContents" /> attribute is specified, the default is <see langword="Strict" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAnyAttribute">
+ <summary>Represents the World Wide Web Consortium (W3C) <see langword="anyAttribute" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAnyAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAnyAttribute.Namespace">
+ <summary>Gets or sets the namespaces containing the attributes that can be used.</summary>
+ <returns>Namespaces for attributes that are available for use. The default is <see langword="##any" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAnyAttribute.ProcessContents">
+ <summary>Gets or sets information about how an application or XML processor should handle the validation of XML documents for the attributes specified by the <see langword="anyAttribute" /> element.</summary>
+ <returns>One of the <see cref="T:System.Xml.Schema.XmlSchemaContentProcessing" /> values. If no <see langword="processContents" /> attribute is specified, the default is <see langword="Strict" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAppInfo">
+ <summary>Represents the World Wide Web Consortium (W3C) <see langword="appinfo" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAppInfo.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAppInfo" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAppInfo.Markup">
+ <summary>Gets or sets an array of <see cref="T:System.Xml.XmlNode" /> objects that represents the <see langword="appinfo" /> child nodes.</summary>
+ <returns>An array of <see cref="T:System.Xml.XmlNode" /> objects that represents the <see langword="appinfo" /> child nodes.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAppInfo.Source">
+ <summary>Gets or sets the source of the application information.</summary>
+ <returns>A Uniform Resource Identifier (URI) reference. The default is <see langword="String.Empty" />. Optional.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAttribute">
+ <summary>Represents the <see langword="attribute" /> element from the XML Schema as specified by the World Wide Web Consortium (W3C). Attributes provide additional information for other document elements. The attribute tag is nested between the tags of a document's element for the schema. The XML document displays attributes as named items in the opening tag of an element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.AttributeSchemaType">
+ <summary>Gets an <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> object representing the type of the attribute based on the <see cref="P:System.Xml.Schema.XmlSchemaAttribute.SchemaType" /> or <see cref="P:System.Xml.Schema.XmlSchemaAttribute.SchemaTypeName" /> of the attribute.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.AttributeType">
+ <summary>Gets the common language runtime (CLR) object based on the <see cref="P:System.Xml.Schema.XmlSchemaAttribute.SchemaType" /> or <see cref="P:System.Xml.Schema.XmlSchemaAttribute.SchemaTypeName" /> of the attribute that holds the post-compilation value of the <see langword="AttributeType" /> property.</summary>
+ <returns>The common runtime library (CLR) object that holds the post-compilation value of the <see langword="AttributeType" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.DefaultValue">
+ <summary>Gets or sets the default value for the attribute.</summary>
+ <returns>The default value for the attribute. The default is a null reference. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.FixedValue">
+ <summary>Gets or sets the fixed value for the attribute.</summary>
+ <returns>The fixed value for the attribute. The default is null. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.Form">
+ <summary>Gets or sets the form for the attribute.</summary>
+ <returns>One of the <see cref="T:System.Xml.Schema.XmlSchemaForm" /> values. The default is the value of the <see cref="P:System.Xml.Schema.XmlSchema.AttributeFormDefault" /> of the schema element containing the attribute. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.Name">
+ <summary>Gets or sets the name of the attribute.</summary>
+ <returns>The name of the attribute.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.QualifiedName">
+ <summary>Gets the qualified name for the attribute.</summary>
+ <returns>The post-compilation value of the <see langword="QualifiedName" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.RefName">
+ <summary>Gets or sets the name of an attribute declared in this schema (or another schema indicated by the specified namespace).</summary>
+ <returns>The name of the attribute declared.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.SchemaType">
+ <summary>Gets or sets the attribute type to a simple type.</summary>
+ <returns>The simple type defined in this schema.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.SchemaTypeName">
+ <summary>Gets or sets the name of the simple type defined in this schema (or another schema indicated by the specified namespace).</summary>
+ <returns>The name of the simple type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttribute.Use">
+ <summary>Gets or sets information about how the attribute is used.</summary>
+ <returns>One of the following values: None, Prohibited, Optional, or Required. The default is Optional. Optional.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAttributeGroup">
+ <summary>Represents the <see langword="attributeGroup" /> element from the XML Schema as specified by the World Wide Web Consortium (W3C). AttributesGroups provides a mechanism to group a set of attribute declarations so that they can be incorporated as a group into complex type definitions.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAttributeGroup.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroup" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttributeGroup.AnyAttribute">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the attribute group.</summary>
+ <returns>The World Wide Web Consortium (W3C) <see langword="anyAttribute" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttributeGroup.Attributes">
+ <summary>Gets the collection of attributes for the attribute group. Contains <see langword="XmlSchemaAttribute" /> and <see langword="XmlSchemaAttributeGroupRef" /> elements.</summary>
+ <returns>The collection of attributes for the attribute group.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttributeGroup.Name">
+ <summary>Gets or sets the name of the attribute group.</summary>
+ <returns>The name of the attribute group.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttributeGroup.QualifiedName">
+ <summary>Gets the qualified name of the attribute group.</summary>
+ <returns>The qualified name of the attribute group.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttributeGroup.RedefinedAttributeGroup">
+ <summary>Gets the redefined attribute group property from the XML Schema.</summary>
+ <returns>The redefined attribute group property.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaAttributeGroupRef">
+ <summary>Represents the <see langword="attributeGroup" /> element with the <see langword="ref" /> attribute from the XML Schema as specified by the World Wide Web Consortium (W3C). AttributesGroupRef is the reference for an attributeGroup, name property contains the attribute group being referenced.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaAttributeGroupRef.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaAttributeGroupRef.RefName">
+ <summary>Gets or sets the name of the referenced <see langword="attributeGroup" /> element.</summary>
+ <returns>The name of the referenced attribute group. The value must be a QName.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaChoice">
+ <summary>Represents the <see langword="choice" /> element (compositor) from the XML Schema as specified by the World Wide Web Consortium (W3C). The <see langword="choice" /> allows only one of its children to appear in an instance.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaChoice.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaChoice" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaChoice.Items">
+ <summary>Gets the collection of the elements contained with the compositor (<see langword="choice" />): <see langword="XmlSchemaElement" />, <see langword="XmlSchemaGroupRef" />, <see langword="XmlSchemaChoice" />, <see langword="XmlSchemaSequence" />, or <see langword="XmlSchemaAny" />.</summary>
+ <returns>The collection of elements contained within <see langword="XmlSchemaChoice" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaCollection">
+ <summary>Contains a cache of XML Schema definition language (XSD) and XML-Data Reduced (XDR) schemas. The <see cref="T:System.Xml.Schema.XmlSchemaCollection" /> class is obsolete. Use <see cref="T:System.Xml.Schema.XmlSchemaSet" /> instead.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.#ctor">
+ <summary>Initializes a new instance of the <see langword="XmlSchemaCollection" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.#ctor(System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see langword="XmlSchemaCollection" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />. The <see langword="XmlNameTable" /> is used when loading schemas.</summary>
+ <param name="nametable">The <see langword="XmlNameTable" /> to use.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.String,System.String)">
+ <summary>Adds the schema located by the given URL into the schema collection.</summary>
+ <param name="ns">The namespace URI associated with the schema. For XML Schemas, this will typically be the <see langword="targetNamespace" />.</param>
+ <param name="uri">The URL that specifies the schema to load.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> added to the schema collection; <see langword="null" /> if the schema being added is an XDR schema or if there are compilation errors in the schema.</returns>
+ <exception cref="T:System.Xml.XmlException">The schema is not a valid schema.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.String,System.Xml.XmlReader)">
+ <summary>Adds the schema contained in the <see cref="T:System.Xml.XmlReader" /> to the schema collection.</summary>
+ <param name="ns">The namespace URI associated with the schema. For XML Schemas, this will typically be the <see langword="targetNamespace" />.</param>
+ <param name="reader">
+ <see cref="T:System.Xml.XmlReader" /> containing the schema to add.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> added to the schema collection; <see langword="null" /> if the schema being added is an XDR schema or if there are compilation errors in the schema.</returns>
+ <exception cref="T:System.Xml.XmlException">The schema is not a valid schema.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.String,System.Xml.XmlReader,System.Xml.XmlResolver)">
+ <summary>Adds the schema contained in the <see cref="T:System.Xml.XmlReader" /> to the schema collection. The specified <see cref="T:System.Xml.XmlResolver" /> is used to resolve any external resources.</summary>
+ <param name="ns">The namespace URI associated with the schema. For XML Schemas, this will typically be the <see langword="targetNamespace" />.</param>
+ <param name="reader">
+ <see cref="T:System.Xml.XmlReader" /> containing the schema to add.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve namespaces referenced in <see langword="include" /> and <see langword="import" /> elements or <see langword="x-schema" /> attribute (XDR schemas). If this is <see langword="null" />, external references are not resolved.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> added to the schema collection; <see langword="null" /> if the schema being added is an XDR schema or if there are compilation errors in the schema.</returns>
+ <exception cref="T:System.Xml.XmlException">The schema is not a valid schema.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.Xml.Schema.XmlSchema)">
+ <summary>Adds the <see cref="T:System.Xml.Schema.XmlSchema" /> to the collection.</summary>
+ <param name="schema">The <see langword="XmlSchema" /> to add to the collection.</param>
+ <returns>The <see langword="XmlSchema" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.Xml.Schema.XmlSchema,System.Xml.XmlResolver)">
+ <summary>Adds the <see cref="T:System.Xml.Schema.XmlSchema" /> to the collection. The specified <see cref="T:System.Xml.XmlResolver" /> is used to resolve any external references.</summary>
+ <param name="schema">The <see langword="XmlSchema" /> to add to the collection.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve namespaces referenced in <see langword="include" /> and <see langword="import" /> elements. If this is <see langword="null" />, external references are not resolved.</param>
+ <returns>The <see langword="XmlSchema" /> added to the schema collection.</returns>
+ <exception cref="T:System.Xml.XmlException">The schema is not a valid schema.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.Add(System.Xml.Schema.XmlSchemaCollection)">
+ <summary>Adds all the namespaces defined in the given collection (including their associated schemas) to this collection.</summary>
+ <param name="schema">The <see langword="XmlSchemaCollection" /> you want to add to this collection.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.Contains(System.String)">
+ <summary>Gets a value indicating whether a schema with the specified namespace is in the collection.</summary>
+ <param name="ns">The namespace URI associated with the schema. For XML Schemas, this will typically be the target namespace.</param>
+ <returns>
+ <see langword="true" /> if a schema with the specified namespace is in the collection; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.Contains(System.Xml.Schema.XmlSchema)">
+ <summary>Gets a value indicating whether the <see langword="targetNamespace" /> of the specified <see cref="T:System.Xml.Schema.XmlSchema" /> is in the collection.</summary>
+ <param name="schema">The <see langword="XmlSchema" /> object.</param>
+ <returns>
+ <see langword="true" /> if there is a schema in the collection with the same <see langword="targetNamespace" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.CopyTo(System.Xml.Schema.XmlSchema[],System.Int32)">
+ <summary>Copies all the <see langword="XmlSchema" /> objects from this collection into the given array starting at the given index.</summary>
+ <param name="array">The array to copy the objects to.</param>
+ <param name="index">The index in <paramref name="array" /> where copying will begin.</param>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCollection.Count">
+ <summary>Gets the number of namespaces defined in this collection.</summary>
+ <returns>The number of namespaces defined in this collection.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.GetEnumerator">
+ <summary>Provides support for the "for each" style iteration over the collection of schemas.</summary>
+ <returns>An enumerator for iterating over all schemas in the current collection.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCollection.Item(System.String)">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchema" /> associated with the given namespace URI.</summary>
+ <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>
+ <returns>The <see langword="XmlSchema" /> associated with the namespace URI; <see langword="null" /> if there is no loaded schema associated with the given namespace or if the namespace is associated with an XDR schema.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCollection.NameTable">
+ <summary>Gets the default <see langword="XmlNameTable" /> used by the <see langword="XmlSchemaCollection" /> when loading new schemas.</summary>
+ <returns>An <see langword="XmlNameTable" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlSchemaCollection.CopyTo(System.Xml.Schema.XmlSchema[],System.Int32)" />.</summary>
+ <param name="array">The array to copy the objects to.</param>
+ <param name="index">The index in <paramref name="array" /> where copying will begin.</param>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCollection.System#Collections#ICollection#Count">
+ <summary>For a description of this member, see <see cref="P:System.Xml.Schema.XmlSchemaCollection.Count" />.</summary>
+ <returns>The count of the items in the collection.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCollection.System#Collections#ICollection#IsSynchronized">
+ <summary>For a description of this member, see <see cref="P:System.Xml.Schema.XmlSchemaCollection.System#Collections#ICollection#IsSynchronized" />.</summary>
+ <returns>
+ <see langword="true" /> if the collection is synchronized; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCollection.System#Collections#ICollection#SyncRoot">
+ <summary>For a description of this member, see <see cref="P:System.Xml.Schema.XmlSchemaCollection.System#Collections#ICollection#SyncRoot" />.</summary>
+ <returns>A <see cref="P:System.Collections.ICollection.SyncRoot" /> object that can be used to synchronize access to the collection.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollection.System#Collections#IEnumerable#GetEnumerator">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlSchemaCollection.GetEnumerator" />.</summary>
+ <returns>The <see cref="T:System.Collections.IEnumerator" /> for the collection.</returns>
+ </member>
+ <member name="E:System.Xml.Schema.XmlSchemaCollection.ValidationEventHandler">
+ <summary>Sets an event handler for receiving information about the XDR and XML schema validation errors.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaCollectionEnumerator">
+ <summary>Supports a simple iteration over a collection. This class cannot be inherited.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCollectionEnumerator.Current">
+ <summary>Gets the current <see cref="T:System.Xml.Schema.XmlSchema" /> in the collection.</summary>
+ <returns>The current <see langword="XmlSchema" /> in the collection.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollectionEnumerator.MoveNext">
+ <summary>Advances the enumerator to the next schema in the collection.</summary>
+ <returns>
+ <see langword="true" /> if the move was successful; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCollectionEnumerator.System#Collections#IEnumerator#Current">
+ <summary>For a description of this member, see <see cref="P:System.Xml.Schema.XmlSchemaCollectionEnumerator.Current" />.</summary>
+ <returns>The current node.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollectionEnumerator.System#Collections#IEnumerator#MoveNext">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlSchemaCollectionEnumerator.MoveNext" />.</summary>
+ <returns>The next node.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCollectionEnumerator.System#Collections#IEnumerator#Reset">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlSchemaCollectionEnumerator.System#Collections#IEnumerator#Reset" />.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaCompilationSettings">
+ <summary>Provides schema compilation options for the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> class This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaCompilationSettings.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaCompilationSettings" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaCompilationSettings.EnableUpaCheck">
+ <summary>Gets or sets a value indicating whether the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> should check for Unique Particle Attribution (UPA) violations.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> should check for Unique Particle Attribution (UPA) violations; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaComplexContent">
+ <summary>Represents the <see langword="complexContent" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class represents the complex content model for complex types. It contains extensions or restrictions on a complex type that has either only elements or mixed content.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaComplexContent.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaComplexContent" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContent.Content">
+ <summary>Gets or sets the content.</summary>
+ <returns>One of either the <see cref="T:System.Xml.Schema.XmlSchemaComplexContentRestriction" /> or <see cref="T:System.Xml.Schema.XmlSchemaComplexContentExtension" /> classes.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContent.IsMixed">
+ <summary>Gets or sets information that determines if the type has a mixed content model.</summary>
+ <returns>If this property is <see langword="true" />, character data is allowed to appear between the child elements of the complex type (mixed content model). The default is <see langword="false" />. Optional.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaComplexContentExtension">
+ <summary>Represents the <see langword="extension" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class is for complex types with complex content model derived by extension. It extends the complex type by adding attributes or elements.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaComplexContentExtension.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaComplexContentExtension" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContentExtension.AnyAttribute">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the complex content model.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the complex content model.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContentExtension.Attributes">
+ <summary>Gets the collection of attributes for the complex content. Contains <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> and <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" /> elements.</summary>
+ <returns>The collection of attributes for the complex content.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContentExtension.BaseTypeName">
+ <summary>Gets or sets the name of the complex type from which this type is derived by extension.</summary>
+ <returns>The name of the complex type from which this type is derived by extension.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContentExtension.Particle">
+ <summary>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" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> classes.</summary>
+ <returns>One of the <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> classes.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaComplexContentRestriction">
+ <summary>Represents the <see langword="restriction" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class is for complex types with a complex content model derived by restriction. It restricts the contents of the complex type to a subset of the inherited complex type.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaComplexContentRestriction.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaComplexContentRestriction" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContentRestriction.AnyAttribute">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the complex content model.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the complex content model.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContentRestriction.Attributes">
+ <summary>Gets the collection of attributes for the complex type. Contains the <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> and <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" /> elements.</summary>
+ <returns>The collection of attributes for the complex type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContentRestriction.BaseTypeName">
+ <summary>Gets or sets the name of a complex type from which this type is derived by restriction.</summary>
+ <returns>The name of the complex type from which this type is derived by restriction.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexContentRestriction.Particle">
+ <summary>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" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> classes.</summary>
+ <returns>One of the <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> classes.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaComplexType">
+ <summary>Represents the <see langword="complexType" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class defines a complex type that determines the set of attributes and content of an element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaComplexType.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaComplexType" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.AnyAttribute">
+ <summary>Gets or sets the value for the <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the complex type.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> component of the complex type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.Attributes">
+ <summary>Gets the collection of attributes for the complex type.</summary>
+ <returns>Contains <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> and <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" /> classes.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.AttributeUses">
+ <summary>Gets the collection of all the complied attributes of this complex type and its base types.</summary>
+ <returns>The collection of all the attributes from this complex type and its base types. The post-compilation value of the <see langword="AttributeUses" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.AttributeWildcard">
+ <summary>Gets the post-compilation value for <see langword="anyAttribute" /> for this complex type and its base type(s).</summary>
+ <returns>The post-compilation value of the <see langword="anyAttribute" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.Block">
+ <summary>Gets or sets the <see langword="block" /> attribute.</summary>
+ <returns>The <see langword="block" /> attribute prevents a complex type from being used in the specified type of derivation. The default is <see langword="XmlSchemaDerivationMethod.None" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.BlockResolved">
+ <summary>Gets the value after the type has been compiled to the post-schema-validation information set (infoset). This value indicates how the type is enforced when <see langword="xsi:type" /> is used in the instance document.</summary>
+ <returns>The post-schema-validated infoset value. The default is <see langword="BlockDefault" /> value on the <see langword="schema" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.ContentModel">
+ <summary>Gets or sets the post-compilation <see cref="T:System.Xml.Schema.XmlSchemaContentModel" /> of this complex type.</summary>
+ <returns>The content model type that is one of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleContent" /> or <see cref="T:System.Xml.Schema.XmlSchemaComplexContent" /> classes.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.ContentType">
+ <summary>Gets the content model of the complex type which holds the post-compilation value.</summary>
+ <returns>The post-compilation value of the content model for the complex type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.ContentTypeParticle">
+ <summary>Gets the particle that holds the post-compilation value of the <see cref="P:System.Xml.Schema.XmlSchemaComplexType.ContentType" /> particle.</summary>
+ <returns>The particle for the content type. The post-compilation value of the <see cref="P:System.Xml.Schema.XmlSchemaComplexType.ContentType" /> particle.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.IsAbstract">
+ <summary>Gets or sets the information that determines if the <see langword="complexType" /> element can be used in the instance document.</summary>
+ <returns>If <see langword="true" />, an element cannot use this <see langword="complexType" /> element directly and must use a complex type that is derived from this <see langword="complexType" /> element. The default is <see langword="false" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.IsMixed">
+ <summary>Gets or sets information that determines if the complex type has a mixed content model (markup within the content).</summary>
+ <returns>
+ <see langword="true" />, if character data can appear between child elements of this complex type; otherwise, <see langword="false" />. The default is <see langword="false" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaComplexType.Particle">
+ <summary>Gets or sets the compositor type as one of the <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, <see cref="T:System.Xml.Schema.XmlSchemaAll" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> classes.</summary>
+ <returns>The compositor type.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaContent">
+ <summary>An abstract class for schema content.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaContent.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaContent" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaContentModel">
+ <summary>Specifies the order and structure of the child elements of a type.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaContentModel.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaContentModel" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaContentModel.Content">
+ <summary>Gets or sets the content of the type.</summary>
+ <returns>Provides the content of the type.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaContentProcessing">
+ <summary>Provides information about the validation mode of <see langword="any" /> and <see langword="anyAttribute" /> element replacements.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaContentProcessing.Lax">
+ <summary>If the associated schema is found, the document items will be validated. No errors will be thrown otherwise.
+If the item is not validated, the XML processor attempts to notify the client through a validation event handler with <see cref="P:System.Xml.Schema.ValidationEventArgs.Severity" /> = <see langword="XmlSeverityType.Warning" />. If a validation event handler has not been set up, no information is returned when the warning is produced.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaContentProcessing.None">
+ <summary>Document items are not validated.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaContentProcessing.Skip">
+ <summary>Document items must consist of well-formed XML and are not validated by the schema.
+The XML processor attempts to notify the client through a validation event handler with <see cref="P:System.Xml.Schema.ValidationEventArgs.Severity" /> = <see langword="XmlSeverityType.Warning" /> that no validation took place for the given item. If a validation event handler has not been set up, no information is returned when the warning is produced.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaContentProcessing.Strict">
+ <summary>The schema processor must find a schema associated with the indicated namespace to validate the document items.
+If the processor cannot find a schema or if the items are not valid, the XML processor attempts to notify the client through a validation event handler with <see cref="P:System.Xml.Schema.ValidationEventArgs.Severity" /> = <see langword="XmlSeverityType.Warning" />. If a validation error occurs and a validation event handler is not provided, an exception is thrown.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaContentType">
+ <summary>Enumerations for the content model of the complex type. This represents the content in the post-schema-validation information set (infoset).</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaContentType.ElementOnly">
+ <summary>Element-only content.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaContentType.Empty">
+ <summary>Empty content.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaContentType.Mixed">
+ <summary>Mixed content.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaContentType.TextOnly">
+ <summary>Text-only content.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaDatatype">
+ <summary>The <see cref="T:System.Xml.Schema.XmlSchemaDatatype" /> class is an abstract class for mapping XML Schema definition language (XSD) types to Common Language Runtime (CLR) types.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaDatatype.ChangeType(System.Object,System.Type)">
+ <summary>Converts the value specified, whose type is one of the valid Common Language Runtime (CLR) representations of the XML schema type represented by the <see cref="T:System.Xml.Schema.XmlSchemaDatatype" />, to the CLR type specified.</summary>
+ <param name="value">The input value to convert to the specified type.</param>
+ <param name="targetType">The target type to convert the input value to.</param>
+ <returns>The converted input value.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Object" /> or <see cref="T:System.Type" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidCastException">The type represented by the <see cref="T:System.Xml.Schema.XmlSchemaDatatype" /> does not support a conversion from type of the value specified to the type specified.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaDatatype.ChangeType(System.Object,System.Type,System.Xml.IXmlNamespaceResolver)">
+ <summary>Converts the value specified, whose type is one of the valid Common Language Runtime (CLR) representations of the XML schema type represented by the <see cref="T:System.Xml.Schema.XmlSchemaDatatype" />, to the CLR type specified using the <see cref="T:System.Xml.IXmlNamespaceResolver" /> if the <see cref="T:System.Xml.Schema.XmlSchemaDatatype" /> represents the xs:QName type or a type derived from it.</summary>
+ <param name="value">The input value to convert to the specified type.</param>
+ <param name="targetType">The target type to convert the input value to.</param>
+ <param name="namespaceResolver">An <see cref="T:System.Xml.IXmlNamespaceResolver" /> used for resolving namespace prefixes. This is only of use if the <see cref="T:System.Xml.Schema.XmlSchemaDatatype" /> represents the xs:QName type or a type derived from it.</param>
+ <returns>The converted input value.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Object" /> or <see cref="T:System.Type" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidCastException">The type represented by the <see cref="T:System.Xml.Schema.XmlSchemaDatatype" /> does not support a conversion from type of the value specified to the type specified.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaDatatype.IsDerivedFrom(System.Xml.Schema.XmlSchemaDatatype)">
+ <summary>The <see cref="M:System.Xml.Schema.XmlSchemaDatatype.IsDerivedFrom(System.Xml.Schema.XmlSchemaDatatype)" /> method always returns <see langword="false" />.</summary>
+ <param name="datatype">The <see cref="T:System.Xml.Schema.XmlSchemaDatatype" />.</param>
+ <returns>Always returns <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaDatatype.ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver)">
+ <summary>When overridden in a derived class, validates the <see langword="string" /> specified against a built-in or user-defined simple type.</summary>
+ <param name="s">The <see langword="string" /> to validate against the simple type.</param>
+ <param name="nameTable">The <see cref="T:System.Xml.XmlNameTable" /> to use for atomization while parsing the <see langword="string" /> if this <see cref="T:System.Xml.Schema.XmlSchemaDatatype" /> object represents the xs:NCName type.</param>
+ <param name="nsmgr">The <see cref="T:System.Xml.IXmlNamespaceResolver" /> object to use while parsing the <see langword="string" /> if this <see cref="T:System.Xml.Schema.XmlSchemaDatatype" /> object represents the xs:QName type.</param>
+ <returns>An <see cref="T:System.Object" /> that can be cast safely to the type returned by the <see cref="P:System.Xml.Schema.XmlSchemaDatatype.ValueType" /> property.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The input value is not a valid instance of this W3C XML Schema type.</exception>
+ <exception cref="T:System.ArgumentNullException">The value to parse cannot be <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaDatatype.TokenizedType">
+ <summary>When overridden in a derived class, gets the type for the <see langword="string" /> as specified in the World Wide Web Consortium (W3C) XML 1.0 specification.</summary>
+ <returns>An <see cref="T:System.Xml.XmlTokenizedType" /> value for the <see langword="string" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaDatatype.TypeCode">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlTypeCode" /> value for the simple type.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlTypeCode" /> value for the simple type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaDatatype.ValueType">
+ <summary>When overridden in a derived class, gets the Common Language Runtime (CLR) type of the item.</summary>
+ <returns>The Common Language Runtime (CLR) type of the item.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaDatatype.Variety">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaDatatypeVariety" /> value for the simple type.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaDatatypeVariety" /> value for the simple type.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaDatatypeVariety">
+ <summary>Specifies the W3C XML schema data type variety of the type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDatatypeVariety.Atomic">
+ <summary>A W3C XML schema atomic type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDatatypeVariety.List">
+ <summary>A W3C XML schema list type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDatatypeVariety.Union">
+ <summary>A W3C XML schema union type.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaDerivationMethod">
+ <summary>Provides different methods for preventing derivation.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.All">
+ <summary>
+ <see langword="#all" />. Refers to all derivation methods.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Empty">
+ <summary>Override default derivation method to allow any derivation.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Extension">
+ <summary>Refers to derivations by <see langword="Extension" />.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.List">
+ <summary>Refers to derivations by <see langword="List" />.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.None">
+ <summary>Accepts the default derivation method.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Restriction">
+ <summary>Refers to derivations by <see langword="Restriction" />.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Substitution">
+ <summary>Refers to derivations by <see langword="Substitution" />.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaDerivationMethod.Union">
+ <summary>Refers to derivations by <see langword="Union" />.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaDocumentation">
+ <summary>Represents the <see langword="documentation" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class specifies information to be read or used by humans within an <see langword="annotation" />.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaDocumentation.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaDocumentation" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaDocumentation.Language">
+ <summary>Gets or sets the <see langword="xml:lang" /> attribute. This serves as an indicator of the language used in the contents.</summary>
+ <returns>The <see langword="xml:lang" /> attribute. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaDocumentation.Markup">
+ <summary>Gets or sets an array of <see langword="XmlNodes" /> that represents the documentation child nodes.</summary>
+ <returns>The array that represents the documentation child nodes.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaDocumentation.Source">
+ <summary>Gets or sets the Uniform Resource Identifier (URI) source of the information.</summary>
+ <returns>A URI reference. The default is <see langword="String.Empty" />. Optional.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaElement">
+ <summary>Represents the <see langword="element" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class is the base class for all particle types and is used to describe an element in an XML document.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaElement.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaElement" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.Block">
+ <summary>Gets or sets a <see langword="Block" /> derivation.</summary>
+ <returns>The attribute used to block a type derivation. Default value is <see langword="XmlSchemaDerivationMethod.None" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.BlockResolved">
+ <summary>Gets the post-compilation value of the <see langword="Block" /> property.</summary>
+ <returns>The post-compilation value of the <see langword="Block" /> property. The default is the <see langword="BlockDefault" /> value on the <see langword="schema" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.Constraints">
+ <summary>Gets the collection of constraints on the element.</summary>
+ <returns>The collection of constraints.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.DefaultValue">
+ <summary>Gets or sets the default value of the element if its content is a simple type or content of the element is <see langword="textOnly" />.</summary>
+ <returns>The default value for the element. The default is a null reference. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.ElementSchemaType">
+ <summary>Gets an <see cref="T:System.Xml.Schema.XmlSchemaType" /> object representing the type of the element based on the <see cref="P:System.Xml.Schema.XmlSchemaElement.SchemaType" /> or <see cref="P:System.Xml.Schema.XmlSchemaElement.SchemaTypeName" /> values of the element.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaType" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.ElementType">
+ <summary>Gets a common language runtime (CLR) object based on the <see cref="T:System.Xml.Schema.XmlSchemaElement" /> or <see cref="T:System.Xml.Schema.XmlSchemaElement" /> of the element, which holds the post-compilation value of the <see langword="ElementType" /> property.</summary>
+ <returns>The common language runtime object. The post-compilation value of the <see langword="ElementType" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.Final">
+ <summary>Gets or sets the <see langword="Final" /> property to indicate that no further derivations are allowed.</summary>
+ <returns>The <see langword="Final" /> property. The default is <see langword="XmlSchemaDerivationMethod.None" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.FinalResolved">
+ <summary>Gets the post-compilation value of the <see langword="Final" /> property.</summary>
+ <returns>The post-compilation value of the <see langword="Final" /> property. Default value is the <see langword="FinalDefault" /> value on the <see langword="schema" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.FixedValue">
+ <summary>Gets or sets the fixed value.</summary>
+ <returns>The fixed value that is predetermined and unchangeable. The default is a null reference. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.Form">
+ <summary>Gets or sets the form for the element.</summary>
+ <returns>The form for the element. The default is the <see cref="P:System.Xml.Schema.XmlSchema.ElementFormDefault" /> value. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.IsAbstract">
+ <summary>Gets or sets information to indicate if the element can be used in an instance document.</summary>
+ <returns>If <see langword="true" />, the element cannot appear in the instance document. The default is <see langword="false" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.IsNillable">
+ <summary>Gets or sets information that indicates if <see langword="xsi:nil" /> can occur in the instance data. Indicates if an explicit nil value can be assigned to the element.</summary>
+ <returns>If nillable is <see langword="true" />, this enables an instance of the element to have the <see langword="nil" /> attribute set to <see langword="true" />. The <see langword="nil" /> attribute is defined as part of the XML Schema namespace for instances. The default is <see langword="false" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.Name">
+ <summary>Gets or sets the name of the element.</summary>
+ <returns>The name of the element. The default is <see langword="String.Empty" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.QualifiedName">
+ <summary>Gets the actual qualified name for the given element.</summary>
+ <returns>The qualified name of the element. The post-compilation value of the <see langword="QualifiedName" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.RefName">
+ <summary>Gets or sets the reference name of an element declared in this schema (or another schema indicated by the specified namespace).</summary>
+ <returns>The reference name of the element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.SchemaType">
+ <summary>Gets or sets the type of the element. This can either be a complex type or a simple type.</summary>
+ <returns>The type of the element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.SchemaTypeName">
+ <summary>Gets or sets the name of a built-in data type defined in this schema or another schema indicated by the specified namespace.</summary>
+ <returns>The name of the built-in data type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaElement.SubstitutionGroup">
+ <summary>Gets or sets the name of an element that is being substituted by this element.</summary>
+ <returns>The qualified name of an element that is being substituted by this element. Optional.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaEnumerationFacet">
+ <summary>Represents the <see langword="enumeration" /> facet from XML Schema as specified by the World Wide Web Consortium (W3C). This class specifies a list of valid values for a simpleType element. Declaration is contained within a <see langword="restriction" /> declaration.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaEnumerationFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaEnumerationFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaException">
+ <summary>Returns detailed information about the schema exception.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaException" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Constructs a new <see langword="XmlSchemaException" /> object with the given <see langword="SerializationInfo" /> and <see langword="StreamingContext" /> information that contains all the properties of the <see langword="XmlSchemaException" />.</summary>
+ <param name="info">SerializationInfo.</param>
+ <param name="context">StreamingContext.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaException" /> class with the exception message specified.</summary>
+ <param name="message">A <see langword="string" /> description of the error condition.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaException" /> class with the exception message and original <see cref="T:System.Exception" /> object that caused this exception specified.</summary>
+ <param name="message">A <see langword="string" /> description of the error condition.</param>
+ <param name="innerException">The original T:System.Exception object that caused this exception.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaException.#ctor(System.String,System.Exception,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaException" /> class with the exception message specified, and the original <see cref="T:System.Exception" /> object, line number, and line position of the XML that cause this exception specified.</summary>
+ <param name="message">A <see langword="string" /> description of the error condition.</param>
+ <param name="innerException">The original T:System.Exception object that caused this exception.</param>
+ <param name="lineNumber">The line number of the XML that caused this exception.</param>
+ <param name="linePosition">The line position of the XML that caused this exception.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Streams all the <see langword="XmlSchemaException" /> properties into the <see langword="SerializationInfo" /> class for the given <see langword="StreamingContext" />.</summary>
+ <param name="info">The <see langword="SerializationInfo" />.</param>
+ <param name="context">The <see langword="StreamingContext" /> information.</param>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaException.LineNumber">
+ <summary>Gets the line number indicating where the error occurred.</summary>
+ <returns>The line number indicating where the error occurred.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaException.LinePosition">
+ <summary>Gets the line position indicating where the error occurred.</summary>
+ <returns>The line position indicating where the error occurred.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaException.Message">
+ <summary>Gets the description of the error condition of this exception.</summary>
+ <returns>The description of the error condition of this exception.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaException.SourceSchemaObject">
+ <summary>The <see langword="XmlSchemaObject" /> that produced the <see langword="XmlSchemaException" />.</summary>
+ <returns>A valid object instance represents a structural validation error in the XML Schema Object Model (SOM).</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaException.SourceUri">
+ <summary>Gets the Uniform Resource Identifier (URI) location of the schema that caused the exception.</summary>
+ <returns>The URI location of the schema that caused the exception.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaExternal">
+ <summary>An abstract class. Provides information about the included schema.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaExternal.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaExternal" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaExternal.Id">
+ <summary>Gets or sets the string id.</summary>
+ <returns>The string id. The default is <see langword="String.Empty" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaExternal.Schema">
+ <summary>Gets or sets the <see langword="XmlSchema" /> for the referenced schema.</summary>
+ <returns>The <see langword="XmlSchema" /> for the referenced schema.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaExternal.SchemaLocation">
+ <summary>Gets or sets the Uniform Resource Identifier (URI) location for the schema, which tells the schema processor where the schema physically resides.</summary>
+ <returns>The URI location for the schema. Optional for imported schemas.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaExternal.UnhandledAttributes">
+ <summary>Gets or sets the qualified attributes, which do not belong to the schema target namespace.</summary>
+ <returns>Qualified attributes that belong to another target namespace.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaFacet">
+ <summary>Abstract class for all facets that are used when simple types are derived by restriction.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaFacet" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaFacet.IsFixed">
+ <summary>Gets or sets information that indicates that this facet is fixed.</summary>
+ <returns>If <see langword="true" />, value is fixed; otherwise, <see langword="false" />. The default is <see langword="false" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaFacet.Value">
+ <summary>Gets or sets the <see langword="value" /> attribute of the facet.</summary>
+ <returns>The value attribute.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaForm">
+ <summary>Indicates if attributes or elements need to be qualified with a namespace prefix.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaForm.None">
+ <summary>Element and attribute form is not specified in the schema.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaForm.Qualified">
+ <summary>Elements and attributes must be qualified with a namespace prefix.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaForm.Unqualified">
+ <summary>Elements and attributes are not required to be qualified with a namespace prefix.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaFractionDigitsFacet">
+ <summary>Specifies a restriction on the number of digits that can be entered for the fraction value of a simpleType element. The value of fractionDigits must be a positive integer. Represents the World Wide Web Consortium (W3C) <see langword="fractionDigits" /> facet.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaFractionDigitsFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaFractionDigitsFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaGroup">
+ <summary>Represents the <see langword="group" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class defines groups at the <see langword="schema" /> level that are referenced from the complex types. It groups a set of element declarations so that they can be incorporated as a group into complex type definitions.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaGroup.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaGroup" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaGroup.Name">
+ <summary>Gets or sets the name of the schema group.</summary>
+ <returns>The name of the schema group.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaGroup.Particle">
+ <summary>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" /> classes.</summary>
+ <returns>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.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaGroup.QualifiedName">
+ <summary>Gets the qualified name of the schema group.</summary>
+ <returns>An <see cref="T:System.Xml.XmlQualifiedName" /> object representing the qualified name of the schema group.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaGroupBase">
+ <summary>An abstract class for <see cref="T:System.Xml.Schema.XmlSchemaAll" />, <see cref="T:System.Xml.Schema.XmlSchemaChoice" />, or <see cref="T:System.Xml.Schema.XmlSchemaSequence" />.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaGroupBase.Items">
+ <summary>This collection is used to add new elements to the compositor.</summary>
+ <returns>An <see langword="XmlSchemaObjectCollection" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaGroupRef">
+ <summary>Represents the <see langword="group" /> element with <see langword="ref" /> attribute from the XML Schema as specified by the World Wide Web Consortium (W3C). This class is used within complex types that reference a <see langword="group" /> defined at the <see langword="schema" /> level.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaGroupRef.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaGroupRef" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaGroupRef.Particle">
+ <summary>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 value of the <see langword="Particle" /> property.</summary>
+ <returns>The post-compilation value of the <see langword="Particle" /> property, which is 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.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaGroupRef.RefName">
+ <summary>Gets or sets the name of a group defined in this schema (or another schema indicated by the specified namespace).</summary>
+ <returns>The name of a group defined in this schema.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaIdentityConstraint">
+ <summary>Class for the identity constraints: <see langword="key" />, <see langword="keyref" />, and <see langword="unique" /> elements.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaIdentityConstraint.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaIdentityConstraint" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaIdentityConstraint.Fields">
+ <summary>Gets the collection of fields that apply as children for the XML Path Language (XPath) expression selector.</summary>
+ <returns>The collection of fields.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaIdentityConstraint.Name">
+ <summary>Gets or sets the name of the identity constraint.</summary>
+ <returns>The name of the identity constraint.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaIdentityConstraint.QualifiedName">
+ <summary>Gets the qualified name of the identity constraint, which holds the post-compilation value of the <see langword="QualifiedName" /> property.</summary>
+ <returns>The post-compilation value of the <see langword="QualifiedName" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaIdentityConstraint.Selector">
+ <summary>Gets or sets the XPath expression <see langword="selector" /> element.</summary>
+ <returns>The XPath expression <see langword="selector" /> element.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaImport">
+ <summary>Represents the <see langword="import" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class is used to import schema components from other schemas.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaImport.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaImport" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaImport.Annotation">
+ <summary>Gets or sets the <see langword="annotation" /> property.</summary>
+ <returns>The annotation.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaImport.Namespace">
+ <summary>Gets or sets the target namespace for the imported schema as a Uniform Resource Identifier (URI) reference.</summary>
+ <returns>The target namespace for the imported schema as a URI reference. Optional.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaInclude">
+ <summary>Represents the <see langword="include" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class is used to include declarations and definitions from an external schema. The included declarations and definitions are then available for processing in the containing schema.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInclude.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInclude" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInclude.Annotation">
+ <summary>Gets or sets the <see langword="annotation" /> property.</summary>
+ <returns>The annotation.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaInference">
+ <summary>Infers an XML Schema Definition Language (XSD) schema from an XML document. The <see cref="T:System.Xml.Schema.XmlSchemaInference" /> class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInference.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInference" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaInference.InferenceOption">
+ <summary>Affects occurrence and type information inferred by the <see cref="T:System.Xml.Schema.XmlSchemaInference" /> class for elements and attributes in an XML document.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaInference.InferenceOption.Relaxed">
+ <summary>Indicates that a less restrictive schema declaration should be inferred for a particular element or attribute.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaInference.InferenceOption.Restricted">
+ <summary>Indicates that a more restrictive schema declaration should be inferred for a particular element or attribute.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInference.InferSchema(System.Xml.XmlReader)">
+ <summary>Infers an XML Schema Definition Language (XSD) schema from the XML document contained in the <see cref="T:System.Xml.XmlReader" /> object specified.</summary>
+ <param name="instanceDocument">An <see cref="T:System.Xml.XmlReader" /> object containing the XML document to infer a schema from.</param>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object containing the inferred schemas.</returns>
+ <exception cref="T:System.Xml.XmlException">The XML document is not well-formed.</exception>
+ <exception cref="T:System.Xml.Schema.XmlSchemaInferenceException">The <see cref="T:System.Xml.XmlReader" /> object is not positioned on the root node or on an element. An error occurs during the schema inference process.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInference.InferSchema(System.Xml.XmlReader,System.Xml.Schema.XmlSchemaSet)">
+ <summary>Infers an XML Schema Definition Language (XSD) schema from the XML document contained in the <see cref="T:System.Xml.XmlReader" /> object specified, and refines the inferred schema using an existing schema in the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object specified with the same target namespace.</summary>
+ <param name="instanceDocument">An <see cref="T:System.Xml.XmlReader" /> object containing the XML document to infer a schema from.</param>
+ <param name="schemas">An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object containing an existing schema used to refine the inferred schema.</param>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object containing the inferred schemas.</returns>
+ <exception cref="T:System.Xml.XmlException">The XML document is not well-formed.</exception>
+ <exception cref="T:System.Xml.Schema.XmlSchemaInferenceException">The <see cref="T:System.Xml.XmlReader" /> object is not positioned on the root node or on an element. An error occurs during the schema inference process.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInference.Occurrence">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaInference.InferenceOption" /> value that affects schema occurrence declarations inferred from the XML document.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaInference.InferenceOption" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInference.TypeInference">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaInference.InferenceOption" /> value that affects types inferred from the XML document.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaInference.InferenceOption" /> object.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaInferenceException">
+ <summary>Returns information about errors encountered by the <see cref="T:System.Xml.Schema.XmlSchemaInference" /> class while inferring a schema from an XML document.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInferenceException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInferenceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects specified that contain all the properties of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" />.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInferenceException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> class with the error message specified.</summary>
+ <param name="message">A description of the error.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInferenceException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> class with the error message specified and the original <see cref="T:System.Exception" /> that caused the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> specified.</summary>
+ <param name="message">A description of the error.</param>
+ <param name="innerException">An <see cref="T:System.Exception" /> object containing the original exception that caused the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" />.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInferenceException.#ctor(System.String,System.Exception,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> class with the error message specified, the original <see cref="T:System.Exception" /> that caused the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> specified, and the line number and line position of the error in the XML document specified.</summary>
+ <param name="message">A description of the error.</param>
+ <param name="innerException">An <see cref="T:System.Exception" /> object containing the original exception that caused the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" />.</param>
+ <param name="lineNumber">The line number in the XML document that caused the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" />.</param>
+ <param name="linePosition">The line position in the XML document that caused the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" />.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInferenceException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Streams all the <see cref="T:System.Xml.Schema.XmlSchemaInferenceException" /> object properties into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object specified for the <see cref="T:System.Runtime.Serialization.StreamingContext" /> object specified.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaInfo">
+ <summary>Represents the post-schema-validation infoset of a validated XML node.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaInfo.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInfo.ContentType">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaContentType" /> object that corresponds to the content type of this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaContentType" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInfo.IsDefault">
+ <summary>Gets or sets a value indicating if this validated XML node was set as the result of a default being applied during XML Schema Definition Language (XSD) schema validation.</summary>
+ <returns>A <see langword="bool" /> value.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInfo.IsNil">
+ <summary>Gets or sets a value indicating if the value for this validated XML node is nil.</summary>
+ <returns>A <see langword="bool" /> value.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInfo.MemberType">
+ <summary>Gets or sets the dynamic schema type for this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInfo.SchemaAttribute">
+ <summary>Gets or sets the compiled <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> object that corresponds to this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInfo.SchemaElement">
+ <summary>Gets or sets the compiled <see cref="T:System.Xml.Schema.XmlSchemaElement" /> object that corresponds to this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaElement" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInfo.SchemaType">
+ <summary>Gets or sets the static XML Schema Definition Language (XSD) schema type of this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaType" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaInfo.Validity">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaValidity" /> value of this validated XML node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaValidity" /> value.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaKey">
+ <summary>This class represents the <see langword="key" /> element from XMLSchema as specified by the World Wide Web Consortium (W3C).</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaKey.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaKey" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaKeyref">
+ <summary>This class represents the <see langword="keyref" /> element from XMLSchema as specified by the World Wide Web Consortium (W3C).</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaKeyref.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaKeyref" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaKeyref.Refer">
+ <summary>Gets or sets the name of the key that this constraint refers to in another simple or complex type.</summary>
+ <returns>The QName of the key that this constraint refers to.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaLengthFacet">
+ <summary>Represents the <see langword="length" /> facet from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the length of a <see langword="simpleType" /> element on the data type.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaLengthFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaLengthFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaMaxExclusiveFacet">
+ <summary>Represents the <see langword="maxExclusive" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the maximum value of a <see langword="simpleType" /> element. The element value must be less than the value of the <see langword="maxExclusive" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaMaxExclusiveFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaMaxExclusiveFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaMaxInclusiveFacet">
+ <summary>Represents the <see langword="maxInclusive" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the maximum value of a <see langword="simpleType" /> element. The element value must be less than or equal to the value of the <see langword="maxInclusive" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaMaxInclusiveFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaMaxInclusiveFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaMaxLengthFacet">
+ <summary>Represents the <see langword="maxLength" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the maximum length of the data value of a <see langword="simpleType" /> element. The length must be less than the value of the <see langword="maxLength" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaMaxLengthFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaMaxLengthFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaMinExclusiveFacet">
+ <summary>Represents the <see langword="minExclusive" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the minimum value of a <see langword="simpleType" /> element. The element value must be greater than the value of the <see langword="minExclusive" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaMinExclusiveFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaMinExclusiveFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaMinInclusiveFacet">
+ <summary>Represents the <see langword="minInclusive" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the minimum value of a simpleType element. The element value must be greater than or equal to the value of the <see langword="minInclusive" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaMinInclusiveFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaMinInclusiveFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaMinLengthFacet">
+ <summary>Represents the <see langword="minLength" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the minimum length of the data value of a <see langword="simpleType" /> element. The length must be greater than the value of the <see langword="minLength" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaMinLengthFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaMinLengthFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaNotation">
+ <summary>Represents the <see langword="notation" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). An XML Schema <see langword="notation" /> declaration is a reconstruction of <see langword="XML 1.0 NOTATION" /> declarations. The purpose of notations is to describe the format of non-XML data within an XML document.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaNotation.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaNotation" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaNotation.Name">
+ <summary>Gets or sets the name of the notation.</summary>
+ <returns>The name of the notation.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaNotation.Public">
+ <summary>Gets or sets the <see langword="public" /> identifier.</summary>
+ <returns>The <see langword="public" /> identifier. The value must be a valid Uniform Resource Identifier (URI).</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaNotation.System">
+ <summary>Gets or sets the <see langword="system" /> identifier.</summary>
+ <returns>The <see langword="system" /> identifier. The value must be a valid URI.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaNumericFacet">
+ <summary>Abstract class for defining <see langword="numeric" /> facets. This class is the base class for numeric facet classes such as <see cref="T:System.Xml.Schema.XmlSchemaMinLengthFacet" /></summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaNumericFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaNumericFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaObject">
+ <summary>Represents the root class for the Xml schema object model hierarchy and serves as a base class for classes such as the <see cref="T:System.Xml.Schema.XmlSchema" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObject.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaObject" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObject.LineNumber">
+ <summary>Gets or sets the line number in the file to which the <see langword="schema" /> element refers.</summary>
+ <returns>The line number.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObject.LinePosition">
+ <summary>Gets or sets the line position in the file to which the <see langword="schema" /> element refers.</summary>
+ <returns>The line position.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObject.Namespaces">
+ <summary>Gets or sets the <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> to use with this schema object.</summary>
+ <returns>The <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> property for the schema object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObject.Parent">
+ <summary>Gets or sets the parent of this <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</summary>
+ <returns>The parent <see cref="T:System.Xml.Schema.XmlSchemaObject" /> of this <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObject.SourceUri">
+ <summary>Gets or sets the source location for the file that loaded the schema.</summary>
+ <returns>The source location (URI) for the file.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaObjectCollection">
+ <summary>A collection of <see cref="T:System.Xml.Schema.XmlSchemaObject" />s.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.#ctor">
+ <summary>Initializes a new instance of the <see langword="XmlSchemaObjectCollection" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.#ctor(System.Xml.Schema.XmlSchemaObject)">
+ <summary>Initializes a new instance of the <see langword="XmlSchemaObjectCollection" /> class that takes an <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</summary>
+ <param name="parent">The <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.Add(System.Xml.Schema.XmlSchemaObject)">
+ <summary>Adds an <see cref="T:System.Xml.Schema.XmlSchemaObject" /> to the <see langword="XmlSchemaObjectCollection" />.</summary>
+ <param name="item">The <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</param>
+ <returns>The index at which the item has been added.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="index" /> is greater than <see langword="Count" />.</exception>
+ <exception cref="T:System.InvalidCastException">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> parameter specified is not of type <see cref="T:System.Xml.Schema.XmlSchemaExternal" /> or its derived types <see cref="T:System.Xml.Schema.XmlSchemaImport" />, <see cref="T:System.Xml.Schema.XmlSchemaInclude" />, and <see cref="T:System.Xml.Schema.XmlSchemaRedefine" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.Contains(System.Xml.Schema.XmlSchemaObject)">
+ <summary>Indicates if the specified <see cref="T:System.Xml.Schema.XmlSchemaObject" /> is in the <see langword="XmlSchemaObjectCollection" />.</summary>
+ <param name="item">The <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</param>
+ <returns>
+ <see langword="true" /> if the specified qualified name is in the collection; otherwise, returns <see langword="false" />. If null is supplied, <see langword="false" /> is returned because there is no qualified name with a null name.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.CopyTo(System.Xml.Schema.XmlSchemaObject[],System.Int32)">
+ <summary>Copies all the <see cref="T:System.Xml.Schema.XmlSchemaObject" />s from the collection into the given array, starting at the given index.</summary>
+ <param name="array">The one-dimensional array that is the destination of the elements copied from the <see langword="XmlSchemaObjectCollection" />. The array must have zero-based indexing.</param>
+ <param name="index">The zero-based index in the array at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is a null reference (<see langword="Nothing" /> in Visual Basic).</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="array" /> is multi-dimensional.
+-or-
+ <paramref name="index" /> is equal to or greater than the length of <paramref name="array" />.
+-or-
+ The number of elements in the source <see cref="T:System.Xml.Schema.XmlSchemaObject" /> is greater than the available space from index to the end of the destination array.</exception>
+ <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Xml.Schema.XmlSchemaObject" /> cannot be cast automatically to the type of the destination array.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.GetEnumerator">
+ <summary>Returns an enumerator for iterating through the <see langword="XmlSchemaObjects" /> contained in the <see langword="XmlSchemaObjectCollection" />.</summary>
+ <returns>The iterator returns <see cref="T:System.Xml.Schema.XmlSchemaObjectEnumerator" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.IndexOf(System.Xml.Schema.XmlSchemaObject)">
+ <summary>Gets the collection index corresponding to the specified <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</summary>
+ <param name="item">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> whose index you want to return.</param>
+ <returns>The index corresponding to the specified <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.Insert(System.Int32,System.Xml.Schema.XmlSchemaObject)">
+ <summary>Inserts an <see cref="T:System.Xml.Schema.XmlSchemaObject" /> to the <see langword="XmlSchemaObjectCollection" />.</summary>
+ <param name="index">The zero-based index at which an item should be inserted.</param>
+ <param name="item">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> to insert.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="index" /> is greater than <see langword="Count" />.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObjectCollection.Item(System.Int32)">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaObject" /> at the specified index.</summary>
+ <param name="index">The index of the <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> at the specified index.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.OnClear">
+ <summary>
+ <see langword="OnClear" /> is invoked before the standard <see langword="Clear" /> behavior. For more information, see OnClear method for <see cref="T:System.Collections.CollectionBase" />.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.OnInsert(System.Int32,System.Object)">
+ <summary>
+ <see langword="OnInsert" /> is invoked before the standard <see langword="Insert" /> behavior. For more information, see <see langword="OnInsert" /> method <see cref="T:System.Collections.CollectionBase" />.</summary>
+ <param name="index">The index of <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</param>
+ <param name="item">The item.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.OnRemove(System.Int32,System.Object)">
+ <summary>
+ <see langword="OnRemove" /> is invoked before the standard <see langword="Remove" /> behavior. For more information, see the <see langword="OnRemove" /> method for <see cref="T:System.Collections.CollectionBase" />.</summary>
+ <param name="index">The index of <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</param>
+ <param name="item">The item.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.OnSet(System.Int32,System.Object,System.Object)">
+ <summary>
+ <see langword="OnSet" /> is invoked before the standard <see langword="Set" /> behavior. For more information, see the OnSet method for <see cref="T:System.Collections.CollectionBase" />.</summary>
+ <param name="index">The index of <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</param>
+ <param name="oldValue">The old value.</param>
+ <param name="newValue">The new value.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectCollection.Remove(System.Xml.Schema.XmlSchemaObject)">
+ <summary>Removes an <see cref="T:System.Xml.Schema.XmlSchemaObject" /> from the <see langword="XmlSchemaObjectCollection" />.</summary>
+ <param name="item">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> to remove.</param>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaObjectEnumerator">
+ <summary>Represents the enumerator for the <see cref="T:System.Xml.Schema.XmlSchemaObjectCollection" />.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObjectEnumerator.Current">
+ <summary>Gets the current <see cref="T:System.Xml.Schema.XmlSchemaObject" /> in the collection.</summary>
+ <returns>The current <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectEnumerator.MoveNext">
+ <summary>Moves to the next item in the collection.</summary>
+ <returns>
+ <see langword="false" /> at the end of the collection.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectEnumerator.Reset">
+ <summary>Resets the enumerator to the start of the collection.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObjectEnumerator.System#Collections#IEnumerator#Current">
+ <summary>For a description of this member, see <see cref="P:System.Xml.Schema.XmlSchemaObjectEnumerator.Current" />.</summary>
+ <returns>The current <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectEnumerator.System#Collections#IEnumerator#MoveNext">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlSchemaObjectEnumerator.MoveNext" />.</summary>
+ <returns>The next <see cref="T:System.Xml.Schema.XmlSchemaObject" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectEnumerator.System#Collections#IEnumerator#Reset">
+ <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlSchemaObjectEnumerator.Reset" />.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaObjectTable">
+ <summary>Provides the collections for contained elements in the <see cref="T:System.Xml.Schema.XmlSchema" /> class (for example, Attributes, AttributeGroups, Elements, and so on).</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectTable.Contains(System.Xml.XmlQualifiedName)">
+ <summary>Determines if the qualified name specified exists in the collection.</summary>
+ <param name="name">The <see cref="T:System.Xml.XmlQualifiedName" />.</param>
+ <returns>
+ <see langword="true" /> if the qualified name specified exists in the collection; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObjectTable.Count">
+ <summary>Gets the number of items contained in the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />.</summary>
+ <returns>The number of items contained in the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaObjectTable.GetEnumerator">
+ <summary>Returns an enumerator that can iterate through the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />.</summary>
+ <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> that can iterate through <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObjectTable.Item(System.Xml.XmlQualifiedName)">
+ <summary>Returns the element in the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> specified by qualified name.</summary>
+ <param name="name">The <see cref="T:System.Xml.XmlQualifiedName" /> of the element to return.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> of the element in the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> specified by qualified name.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObjectTable.Names">
+ <summary>Returns a collection of all the named elements in the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />.</summary>
+ <returns>A collection of all the named elements in the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaObjectTable.Values">
+ <summary>Returns a collection of all the values for all the elements in the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />.</summary>
+ <returns>A collection of all the values for all the elements in the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaParticle">
+ <summary>Abstract class for that is the base class for all particle types (e.g. <see cref="T:System.Xml.Schema.XmlSchemaAny" />).</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaParticle.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaParticle" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaParticle.MaxOccurs">
+ <summary>Gets or sets the maximum number of times the particle can occur.</summary>
+ <returns>The maximum number of times the particle can occur. The default is 1.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaParticle.MaxOccursString">
+ <summary>Gets or sets the number as a string value. Maximum number of times the particle can occur.</summary>
+ <returns>The number as a string value. <see langword="String.Empty" /> indicates that <see langword="MaxOccurs" /> is equal to the default value. The default is a null reference.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaParticle.MinOccurs">
+ <summary>Gets or sets the minimum number of times the particle can occur.</summary>
+ <returns>The minimum number of times the particle can occur. The default is 1.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaParticle.MinOccursString">
+ <summary>Gets or sets the number as a string value. The minimum number of times the particle can occur.</summary>
+ <returns>The number as a string value. <see langword="String.Empty" /> indicates that <see langword="MinOccurs" /> is equal to the default value. The default is a null reference.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaPatternFacet">
+ <summary>Represents the <see langword="pattern" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the value entered for a <see langword="simpleType" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaPatternFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaPatternFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaRedefine">
+ <summary>Represents the <see langword="redefine" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to allow simple and complex types, groups and attribute groups from external schema files to be redefined in the current schema. This class can also be used to provide versioning for the schema elements.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaRedefine.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaRedefine" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaRedefine.AttributeGroups">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> , for all attributes in the schema, which holds the post-compilation value of the <see langword="AttributeGroups" /> property.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> for all attributes in the schema. The post-compilation value of the <see langword="AttributeGroups" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaRedefine.Groups">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />, for all groups in the schema, which holds the post-compilation value of the <see langword="Groups" /> property.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> for all groups in the schema. The post-compilation value of the <see langword="Groups" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaRedefine.Items">
+ <summary>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" />.</summary>
+ <returns>The elements contained within the redefine element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaRedefine.SchemaTypes">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" />, for all simple and complex types in the schema, which holds the post-compilation value of the <see langword="SchemaTypes" /> property.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaObjectTable" /> for all schema types in the schema. The post-compilation value of the <see langword="SchemaTypes" /> property.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSequence">
+ <summary>Represents the <see langword="sequence" /> element (compositor) from the XML Schema as specified by the World Wide Web Consortium (W3C). The <see langword="sequence" /> requires the elements in the group to appear in the specified sequence within the containing element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSequence.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSequence" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSequence.Items">
+ <summary>The elements contained within the compositor. Collection 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" />.</summary>
+ <returns>The elements contained within the compositor.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSet">
+ <summary>Contains a cache of XML Schema definition language (XSD) schemas.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.#ctor(System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="nameTable">The <see cref="T:System.Xml.XmlNameTable" /> object to use.</param>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlNameTable" /> object passed as a parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Add(System.String,System.String)">
+ <summary>Adds the XML Schema definition language (XSD) schema at the URL specified to the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="targetNamespace">The schema <paramref name="targetNamespace" /> property, or <see langword="null" /> to use the <paramref name="targetNamespace" /> specified in the schema.</param>
+ <param name="schemaUri">The URL that specifies the schema to load.</param>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> object if the schema is valid. If the schema is not valid and a <see cref="T:System.Xml.Schema.ValidationEventHandler" /> is specified, then <see langword="null" /> is returned and the appropriate validation event is raised. Otherwise, an <see cref="T:System.Xml.Schema.XmlSchemaException" /> is thrown.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">The schema is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The URL passed as a parameter is <see langword="null" /> or <see cref="F:System.String.Empty" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Add(System.String,System.Xml.XmlReader)">
+ <summary>Adds the XML Schema definition language (XSD) schema contained in the <see cref="T:System.Xml.XmlReader" /> to the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="targetNamespace">The schema <paramref name="targetNamespace" /> property, or <see langword="null" /> to use the <paramref name="targetNamespace" /> specified in the schema.</param>
+ <param name="schemaDocument">The <see cref="T:System.Xml.XmlReader" /> object.</param>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> object if the schema is valid. If the schema is not valid and a <see cref="T:System.Xml.Schema.ValidationEventHandler" /> is specified, then <see langword="null" /> is returned and the appropriate validation event is raised. Otherwise, an <see cref="T:System.Xml.Schema.XmlSchemaException" /> is thrown.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">The schema is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlReader" /> object passed as a parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Add(System.Xml.Schema.XmlSchema)">
+ <summary>Adds the given <see cref="T:System.Xml.Schema.XmlSchema" /> to the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="schema">The <see cref="T:System.Xml.Schema.XmlSchema" /> object to add to the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> object if the schema is valid. If the schema is not valid and a <see cref="T:System.Xml.Schema.ValidationEventHandler" /> is specified, then <see langword="null" /> is returned and the appropriate validation event is raised. Otherwise, an <see cref="T:System.Xml.Schema.XmlSchemaException" /> is thrown.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">The schema is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchema" /> object passed as a parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Add(System.Xml.Schema.XmlSchemaSet)">
+ <summary>Adds all the XML Schema definition language (XSD) schemas in the given <see cref="T:System.Xml.Schema.XmlSchemaSet" /> to the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="schemas">The <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">A schema in the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object passed as a parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSet.CompilationSettings">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaCompilationSettings" /> for the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaCompilationSettings" /> for the <see cref="T:System.Xml.Schema.XmlSchemaSet" />. The default is an <see cref="T:System.Xml.Schema.XmlSchemaCompilationSettings" /> instance with the <see cref="P:System.Xml.Schema.XmlSchemaCompilationSettings.EnableUpaCheck" /> property set to <see langword="true" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Compile">
+ <summary>Compiles the XML Schema definition language (XSD) schemas added to the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> into one logical schema.</summary>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">An error occurred when validating and compiling the schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Contains(System.String)">
+ <summary>Indicates whether an XML Schema definition language (XSD) schema with the specified target namespace URI is in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="targetNamespace">The schema <paramref name="targetNamespace" /> property.</param>
+ <returns>
+ <see langword="true" /> if a schema with the specified target namespace URI is in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Contains(System.Xml.Schema.XmlSchema)">
+ <summary>Indicates whether the specified XML Schema definition language (XSD) <see cref="T:System.Xml.Schema.XmlSchema" /> object is in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="schema">The <see cref="T:System.Xml.Schema.XmlSchema" /> object.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.Schema.XmlSchema" /> object is in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchemaSet" /> passed as a parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.CopyTo(System.Xml.Schema.XmlSchema[],System.Int32)">
+ <summary>Copies all the <see cref="T:System.Xml.Schema.XmlSchema" /> objects from the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> to the given array, starting at the given index.</summary>
+ <param name="schemas">The array to copy the objects to.</param>
+ <param name="index">The index in the array where copying will begin.</param>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSet.Count">
+ <summary>Gets the number of logical XML Schema definition language (XSD) schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <returns>The number of logical schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSet.GlobalAttributes">
+ <summary>Gets all the global attributes in all the XML Schema definition language (XSD) schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <returns>The collection of global attributes.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSet.GlobalElements">
+ <summary>Gets all the global elements in all the XML Schema definition language (XSD) schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <returns>The collection of global elements.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSet.GlobalTypes">
+ <summary>Gets all of the global simple and complex types in all the XML Schema definition language (XSD) schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <returns>The collection of global simple and complex types.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSet.IsCompiled">
+ <summary>Gets a value that indicates whether the XML Schema definition language (XSD) schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> have been compiled.</summary>
+ <returns>
+ <see langword="true" /> if the schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> have been compiled since the last time a schema was added or removed from the <see cref="T:System.Xml.Schema.XmlSchemaSet" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSet.NameTable">
+ <summary>Gets the default <see cref="T:System.Xml.XmlNameTable" /> used by the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> when loading new XML Schema definition language (XSD) schemas.</summary>
+ <returns>A table of atomized string objects.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Remove(System.Xml.Schema.XmlSchema)">
+ <summary>Removes the specified XML Schema definition language (XSD) schema from the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="schema">The <see cref="T:System.Xml.Schema.XmlSchema" /> object to remove from the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchema" /> object removed from the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> or <see langword="null" /> if the schema was not found in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">The schema is not a valid schema.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchema" /> passed as a parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.RemoveRecursive(System.Xml.Schema.XmlSchema)">
+ <summary>Removes the specified XML Schema definition language (XSD) schema and all the schemas it imports from the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="schemaToRemove">The <see cref="T:System.Xml.Schema.XmlSchema" /> object to remove from the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.Schema.XmlSchema" /> object and all its imports were successfully removed; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchema" /> passed as a parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Reprocess(System.Xml.Schema.XmlSchema)">
+ <summary>Reprocesses an XML Schema definition language (XSD) schema that already exists in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <param name="schema">The schema to reprocess.</param>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> object if the schema is a valid schema. If the schema is not valid and a <see cref="T:System.Xml.Schema.ValidationEventHandler" /> is specified, <see langword="null" /> is returned and the appropriate validation event is raised. Otherwise, an <see cref="T:System.Xml.Schema.XmlSchemaException" /> is thrown.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">The schema is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchema" /> object passed as a parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.Schema.XmlSchema" /> object passed as a parameter does not already exist in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Schemas">
+ <summary>Returns a collection of all the XML Schema definition language (XSD) schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection" /> object containing all the schemas that have been added to the <see cref="T:System.Xml.Schema.XmlSchemaSet" />. If no schemas have been added to the <see cref="T:System.Xml.Schema.XmlSchemaSet" />, an empty <see cref="T:System.Collections.ICollection" /> object is returned.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSet.Schemas(System.String)">
+ <summary>Returns a collection of all the XML Schema definition language (XSD) schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> that belong to the given namespace.</summary>
+ <param name="targetNamespace">The schema <paramref name="targetNamespace" /> property.</param>
+ <returns>An <see cref="T:System.Collections.ICollection" /> object containing all the schemas that have been added to the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> that belong to the given namespace. If no schemas have been added to the <see cref="T:System.Xml.Schema.XmlSchemaSet" />, an empty <see cref="T:System.Collections.ICollection" /> object is returned.</returns>
+ </member>
+ <member name="E:System.Xml.Schema.XmlSchemaSet.ValidationEventHandler">
+ <summary>Specifies an event handler for receiving information about XML Schema definition language (XSD) schema validation errors.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSet.XmlResolver">
+ <summary>Sets the <see cref="T:System.Xml.XmlResolver" /> used to resolve namespaces or locations referenced in include and import elements of a schema.</summary>
+ <returns>The <see cref="T:System.Xml.XmlResolver" /> used to resolve namespaces or locations referenced in include and import elements of a schema.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSimpleContent">
+ <summary>Represents the <see langword="simpleContent" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class is for simple and complex types with simple content model.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSimpleContent.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleContent" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContent.Content">
+ <summary>Gets one of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleContentRestriction" /> or <see cref="T:System.Xml.Schema.XmlSchemaSimpleContentExtension" />.</summary>
+ <returns>The content contained within the <see langword="XmlSchemaSimpleContentRestriction" /> or <see langword="XmlSchemaSimpleContentExtension" /> class.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSimpleContentExtension">
+ <summary>Represents the <see langword="extension" /> element for simple content from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to derive simple types by extension. Such derivations are used to extend the simple type content of the element by adding attributes.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSimpleContentExtension.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleContentExtension" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContentExtension.AnyAttribute">
+ <summary>Gets or sets the <see langword="XmlSchemaAnyAttribute" /> to be used for the attribute value.</summary>
+ <returns>The <see langword="XmlSchemaAnyAttribute" />. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContentExtension.Attributes">
+ <summary>Gets the collection of <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> and <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" />.</summary>
+ <returns>The collection of attributes for the <see langword="simpleType" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContentExtension.BaseTypeName">
+ <summary>Gets or sets the name of a built-in data type or simple type from which this type is extended.</summary>
+ <returns>The base type name.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSimpleContentRestriction">
+ <summary>Represents the <see langword="restriction" /> element for simple content from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to derive simple types by restriction. Such derivations can be used to restrict the range of values for the element to a subset of the values specified in the inherited simple type.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSimpleContentRestriction.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleContentRestriction" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.AnyAttribute">
+ <summary>Gets or sets an <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> to be used for the attribute value.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaAnyAttribute" /> for the attribute value. Optional.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.Attributes">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> and <see cref="T:System.Xml.Schema.XmlSchemaAttributeGroupRef" /> collection of attributes for the simple type.</summary>
+ <returns>The collection of attributes for a simple type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.BaseType">
+ <summary>Gets or sets the simple type base value.</summary>
+ <returns>The simple type base value.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.BaseTypeName">
+ <summary>Gets or sets the name of the built-in data type or simple type from which this type is derived.</summary>
+ <returns>The name of the base type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleContentRestriction.Facets">
+ <summary>Gets or sets an Xml Schema facet.</summary>
+ <returns>One of the following facet 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" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSimpleType">
+ <summary>Represents the <see langword="simpleType" /> element for simple content from XML Schema as specified by the World Wide Web Consortium (W3C). This class defines a simple type. Simple types can specify information and constraints for the value of attributes or elements with text-only content.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSimpleType.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleType.Content">
+ <summary>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" />.</summary>
+ <returns>One of <see langword="XmlSchemaSimpleTypeUnion" />, <see langword="XmlSchemaSimpleTypeList" />, or <see langword="XmlSchemaSimpleTypeRestriction" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSimpleTypeContent">
+ <summary>Abstract class for simple type content classes.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSimpleTypeContent.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeContent" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSimpleTypeList">
+ <summary>Represents the <see langword="list" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to define a <see langword="simpleType" /> element as a list of values of a specified data type.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSimpleTypeList.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeList" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeList.BaseItemType">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> representing the type of the <see langword="simpleType" /> element based on the <see cref="P:System.Xml.Schema.XmlSchemaSimpleTypeList.ItemType" /> and <see cref="P:System.Xml.Schema.XmlSchemaSimpleTypeList.ItemTypeName" /> values of the simple type.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> representing the type of the <see langword="simpleType" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeList.ItemType">
+ <summary>Gets or sets the <see langword="simpleType" /> element that is derived from the type specified by the base value.</summary>
+ <returns>The item type for the simple type element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeList.ItemTypeName">
+ <summary>Gets or sets the name of a built-in data type or <see langword="simpleType" /> element defined in this schema (or another schema indicated by the specified namespace).</summary>
+ <returns>The type name of the simple type list.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSimpleTypeRestriction">
+ <summary>Represents the <see langword="restriction" /> element for simple types from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used restricting <see langword="simpleType" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSimpleTypeRestriction.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeRestriction" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeRestriction.BaseType">
+ <summary>Gets or sets information on the base type.</summary>
+ <returns>The base type for the <see langword="simpleType" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeRestriction.BaseTypeName">
+ <summary>Gets or sets the name of the qualified base type.</summary>
+ <returns>The qualified name of the simple type restriction base type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeRestriction.Facets">
+ <summary>Gets or sets an Xml Schema facet.</summary>
+ <returns>One of the following facet 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" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaSimpleTypeUnion">
+ <summary>Represents the <see langword="union" /> element for simple types from XML Schema as specified by the World Wide Web Consortium (W3C). A <see langword="union" /> datatype can be used to specify the content of a <see langword="simpleType" />. The value of the <see langword="simpleType" /> element must be any one of a set of alternative datatypes specified in the union. Union types are always derived types and must comprise at least two alternative datatypes.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaSimpleTypeUnion.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaSimpleTypeUnion" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeUnion.BaseMemberTypes">
+ <summary>Gets an array of <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> objects representing the type of the <see langword="simpleType" /> element based on the <see cref="P:System.Xml.Schema.XmlSchemaSimpleTypeUnion.BaseTypes" /> and <see cref="P:System.Xml.Schema.XmlSchemaSimpleTypeUnion.MemberTypes" /> values of the simple type.</summary>
+ <returns>An array of <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> objects representing the type of the <see langword="simpleType" /> element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeUnion.BaseTypes">
+ <summary>Gets the collection of base types.</summary>
+ <returns>The collection of simple type base values.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaSimpleTypeUnion.MemberTypes">
+ <summary>Gets or sets the array of qualified member names of built-in data types or <see langword="simpleType" /> elements defined in this schema (or another schema indicated by the specified namespace).</summary>
+ <returns>An array that consists of a list of members of built-in data types or simple types.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaTotalDigitsFacet">
+ <summary>Represents the <see langword="totalDigits" /> facet from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to specify a restriction on the number of digits that can be entered for the value of a <see langword="simpleType" /> element. That value of <see langword="totalDigits" /> must be a positive integer.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaTotalDigitsFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaTotalDigitsFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaType">
+ <summary>The base class for all simple types and complex types.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaType.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaType" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.BaseSchemaType">
+ <summary>Gets the post-compilation object type or the built-in XML Schema Definition Language (XSD) data type, simpleType element, or complexType element. This is a post-schema-compilation infoset property.</summary>
+ <returns>The built-in XSD data type, simpleType element, or complexType element.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.BaseXmlSchemaType">
+ <summary>Gets the post-compilation value for the base type of this schema type.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaType" /> object representing the base type of this schema type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.Datatype">
+ <summary>Gets the post-compilation value for the data type of the complex type.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaDatatype" /> post-schema-compilation value.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.DerivedBy">
+ <summary>Gets the post-compilation information on how this element was derived from its base type.</summary>
+ <returns>One of the valid <see cref="T:System.Xml.Schema.XmlSchemaDerivationMethod" /> values.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.Final">
+ <summary>Gets or sets the final attribute of the type derivation that indicates if further derivations are allowed.</summary>
+ <returns>One of the valid <see cref="T:System.Xml.Schema.XmlSchemaDerivationMethod" /> values. The default is <see cref="F:System.Xml.Schema.XmlSchemaDerivationMethod.None" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.FinalResolved">
+ <summary>Gets the post-compilation value of the <see cref="P:System.Xml.Schema.XmlSchemaType.Final" /> property.</summary>
+ <returns>The post-compilation value of the <see cref="P:System.Xml.Schema.XmlSchemaType.Final" /> property. The default is the <see langword="finalDefault" /> attribute value of the <see langword="schema" /> element.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaType.GetBuiltInComplexType(System.Xml.Schema.XmlTypeCode)">
+ <summary>Returns an <see cref="T:System.Xml.Schema.XmlSchemaComplexType" /> that represents the built-in complex type of the complex type specified.</summary>
+ <param name="typeCode">One of the <see cref="T:System.Xml.Schema.XmlTypeCode" /> values representing the complex type.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaComplexType" /> that represents the built-in complex type.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaType.GetBuiltInComplexType(System.Xml.XmlQualifiedName)">
+ <summary>Returns an <see cref="T:System.Xml.Schema.XmlSchemaComplexType" /> that represents the built-in complex type of the complex type specified by qualified name.</summary>
+ <param name="qualifiedName">The <see cref="T:System.Xml.XmlQualifiedName" /> of the complex type.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaComplexType" /> that represents the built-in complex type.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlQualifiedName" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaType.GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode)">
+ <summary>Returns an <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> that represents the built-in simple type of the specified simple type.</summary>
+ <param name="typeCode">One of the <see cref="T:System.Xml.Schema.XmlTypeCode" /> values representing the simple type.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> that represents the built-in simple type.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaType.GetBuiltInSimpleType(System.Xml.XmlQualifiedName)">
+ <summary>Returns an <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> that represents the built-in simple type of the simple type that is specified by the qualified name.</summary>
+ <param name="qualifiedName">The <see cref="T:System.Xml.XmlQualifiedName" /> of the simple type.</param>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" /> that represents the built-in simple type.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlQualifiedName" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaType.IsDerivedFrom(System.Xml.Schema.XmlSchemaType,System.Xml.Schema.XmlSchemaType,System.Xml.Schema.XmlSchemaDerivationMethod)">
+ <summary>Returns a value indicating if the derived schema type specified is derived from the base schema type specified</summary>
+ <param name="derivedType">The derived <see cref="T:System.Xml.Schema.XmlSchemaType" /> to test.</param>
+ <param name="baseType">The base <see cref="T:System.Xml.Schema.XmlSchemaType" /> to test the derived <see cref="T:System.Xml.Schema.XmlSchemaType" /> against.</param>
+ <param name="except">One of the <see cref="T:System.Xml.Schema.XmlSchemaDerivationMethod" /> values representing a type derivation method to exclude from testing.</param>
+ <returns>
+ <see langword="true" /> if the derived type is derived from the base type; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.IsMixed">
+ <summary>Gets or sets a value indicating if this type has a mixed content model. This property is only valid in a complex type.</summary>
+ <returns>
+ <see langword="true" /> if the type has a mixed content model; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.Name">
+ <summary>Gets or sets the name of the type.</summary>
+ <returns>The name of the type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.QualifiedName">
+ <summary>Gets the qualified name for the type built from the <see langword="Name" /> attribute of this type. This is a post-schema-compilation property.</summary>
+ <returns>The <see cref="T:System.Xml.XmlQualifiedName" /> for the type built from the <see langword="Name" /> attribute of this type.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaType.TypeCode">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlTypeCode" /> of the type.</summary>
+ <returns>One of the <see cref="T:System.Xml.Schema.XmlTypeCode" /> values.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaUnique">
+ <summary>Represents the <see langword="unique" /> element from XML Schema as specified by the World Wide Web Consortium (W3C). This class can be used to identify a unique constraint among a set of elements.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaUnique.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaUnique" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaUse">
+ <summary>Indicator of how the attribute is used.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaUse.None">
+ <summary>Attribute use not specified.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaUse.Optional">
+ <summary>Attribute is optional.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaUse.Prohibited">
+ <summary>Attribute cannot be used.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaUse.Required">
+ <summary>Attribute must appear once.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaValidationException">
+ <summary>Represents the exception thrown when XML Schema Definition Language (XSD) schema validation errors and warnings are encountered in an XML document being validated.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidationException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects specified.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidationException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> class with the exception message specified.</summary>
+ <param name="message">A <see langword="string" /> description of the error condition.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidationException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> class with the exception message and original <see cref="T:System.Exception" /> object that caused this exception specified.</summary>
+ <param name="message">A <see langword="string" /> description of the error condition.</param>
+ <param name="innerException">The original <see cref="T:System.Exception" /> object that caused this exception.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidationException.#ctor(System.String,System.Exception,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> class with the exception message specified, and the original <see cref="T:System.Exception" /> object, line number, and line position of the XML that cause this exception specified.</summary>
+ <param name="message">A <see langword="string" /> description of the error condition.</param>
+ <param name="innerException">The original <see cref="T:System.Exception" /> object that caused this exception.</param>
+ <param name="lineNumber">The line number of the XML that caused this exception.</param>
+ <param name="linePosition">The line position of the XML that caused this exception.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Constructs a new <see cref="T:System.Xml.Schema.XmlSchemaValidationException" /> object with the given <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> information that contains all the properties of the <see cref="T:System.Xml.Schema.XmlSchemaValidationException" />.</summary>
+ <param name="info">
+ <see cref="T:System.Runtime.Serialization.SerializationInfo" />
+ </param>
+ <param name="context">
+ <see cref="T:System.Runtime.Serialization.StreamingContext" />
+ </param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidationException.SetSourceObject(System.Object)">
+ <summary>Sets the XML node that causes the error.</summary>
+ <param name="sourceObject">The source object.</param>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaValidationException.SourceObject">
+ <summary>Gets the XML node that caused this <see cref="T:System.Xml.Schema.XmlSchemaValidationException" />.</summary>
+ <returns>The XML node that caused this <see cref="T:System.Xml.Schema.XmlSchemaValidationException" />.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaValidationFlags">
+ <summary>Specifies schema validation options used by the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> and <see cref="T:System.Xml.XmlReader" /> classes.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidationFlags.AllowXmlAttributes">
+ <summary>Allow xml:* attributes even if they are not defined in the schema. The attributes will be validated based on their data type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidationFlags.None">
+ <summary>Do not process identity constraints, inline schemas, schema location hints, or report schema validation warnings.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidationFlags.ProcessIdentityConstraints">
+ <summary>Process identity constraints (<c>xs:ID</c>, <c>xs:IDREF</c>, <c>xs:key</c>, <c>xs:keyref</c>, <c>xs:unique</c>) encountered during validation.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidationFlags.ProcessInlineSchema">
+ <summary>Process inline schemas encountered during validation.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidationFlags.ProcessSchemaLocation">
+ <summary>Process schema location hints (<c>xsi:schemaLocation</c>, <c>xsi:noNamespaceSchemaLocation</c>) encountered during validation.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidationFlags.ReportValidationWarnings">
+ <summary>Report schema validation warnings encountered during validation.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaValidator">
+ <summary>Represents an XML Schema Definition Language (XSD) Schema validation engine. The <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.#ctor(System.Xml.XmlNameTable,System.Xml.Schema.XmlSchemaSet,System.Xml.IXmlNamespaceResolver,System.Xml.Schema.XmlSchemaValidationFlags)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> class.</summary>
+ <param name="nameTable">An <see cref="T:System.Xml.XmlNameTable" /> object containing element and attribute names as atomized strings.</param>
+ <param name="schemas">An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object containing the XML Schema Definition Language (XSD) schemas used for validation.</param>
+ <param name="namespaceResolver">An <see cref="T:System.Xml.IXmlNamespaceResolver" /> object used for resolving namespaces encountered during validation.</param>
+ <param name="validationFlags">An <see cref="T:System.Xml.Schema.XmlSchemaValidationFlags" /> value specifying schema validation options.</param>
+ <exception cref="T:System.ArgumentNullException">One or more of the parameters specified are <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">An error occurred while compiling schemas in the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> parameter.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.AddSchema(System.Xml.Schema.XmlSchema)">
+ <summary>Adds an XML Schema Definition Language (XSD) schema to the set of schemas used for validation.</summary>
+ <param name="schema">An <see cref="T:System.Xml.Schema.XmlSchema" /> object to add to the set of schemas used for validation.</param>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchema" /> parameter specified is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The target namespace of the <see cref="T:System.Xml.Schema.XmlSchema" /> parameter matches that of any element or attribute already encountered by the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object.</exception>
+ <exception cref="T:System.Xml.Schema.XmlSchemaException">The <see cref="T:System.Xml.Schema.XmlSchema" /> parameter is invalid.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.EndValidation">
+ <summary>Ends validation and checks identity constraints for the entire XML document.</summary>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">An identity constraint error was found in the XML document.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.GetExpectedAttributes">
+ <summary>Returns the expected attributes for the current element context.</summary>
+ <returns>An array of <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> objects or an empty array if there are no expected attributes.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.GetExpectedParticles">
+ <summary>Returns the expected particles in the current element context.</summary>
+ <returns>An array of <see cref="T:System.Xml.Schema.XmlSchemaParticle" /> objects or an empty array if there are no expected particles.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.GetUnspecifiedDefaultAttributes(System.Collections.ArrayList)">
+ <summary>Validates identity constraints on the default attributes and populates the <see cref="T:System.Collections.ArrayList" /> specified with <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> objects for any attributes with default values that have not been previously validated using the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" /> method in the element context.</summary>
+ <param name="defaultAttributes">An <see cref="T:System.Collections.ArrayList" /> to populate with <see cref="T:System.Xml.Schema.XmlSchemaAttribute" /> objects for any attributes not yet encountered during validation in the element context.</param>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.Initialize">
+ <summary>Initializes the state of the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object.</summary>
+ <exception cref="T:System.InvalidOperationException">Calling the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.Initialize" /> method is valid immediately after the construction of an <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object or after a call to <see cref="M:System.Xml.Schema.XmlSchemaValidator.EndValidation" /> only.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.Initialize(System.Xml.Schema.XmlSchemaObject)">
+ <summary>Initializes the state of the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object using the <see cref="T:System.Xml.Schema.XmlSchemaObject" /> specified for partial validation.</summary>
+ <param name="partialValidationType">An <see cref="T:System.Xml.Schema.XmlSchemaElement" />, <see cref="T:System.Xml.Schema.XmlSchemaAttribute" />, or <see cref="T:System.Xml.Schema.XmlSchemaType" /> object used to initialize the validation context of the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object for partial validation.</param>
+ <exception cref="T:System.InvalidOperationException">Calling the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.Initialize" /> method is valid immediately after the construction of an <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object or after a call to <see cref="M:System.Xml.Schema.XmlSchemaValidator.EndValidation" /> only.</exception>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> parameter is not an <see cref="T:System.Xml.Schema.XmlSchemaElement" />, <see cref="T:System.Xml.Schema.XmlSchemaAttribute" />, or <see cref="T:System.Xml.Schema.XmlSchemaType" /> object.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> parameter cannot be <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaValidator.LineInfoProvider">
+ <summary>Gets or sets the line number information for the XML node being validated.</summary>
+ <returns>An <see cref="T:System.Xml.IXmlLineInfo" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)">
+ <summary>Skips validation of the current element content and prepares the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object to validate content in the parent element's context.</summary>
+ <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set if the current element content is successfully skipped. This parameter can be <see langword="null" />.</param>
+ <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" /> method was not called in the correct sequence. For example, calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" /> after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaValidator.SourceUri">
+ <summary>Gets or sets the source URI for the XML node being validated.</summary>
+ <returns>A <see cref="T:System.Uri" /> object representing the source URI for the XML node being validated; the default is <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute(System.String,System.String,System.String,System.Xml.Schema.XmlSchemaInfo)">
+ <summary>Validates the attribute name, namespace URI, and value in the current element context.</summary>
+ <param name="localName">The local name of the attribute to validate.</param>
+ <param name="namespaceUri">The namespace URI of the attribute to validate.</param>
+ <param name="attributeValue">The value of the attribute to validate.</param>
+ <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the attribute. This parameter can be <see langword="null" />.</param>
+ <returns>The validated attribute's value.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The attribute is not valid in the current element context.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" /> method was not called in the correct sequence. For example, calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" /> after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
+ <exception cref="T:System.ArgumentNullException">One or more of the parameters specified are <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute(System.String,System.String,System.Xml.Schema.XmlValueGetter,System.Xml.Schema.XmlSchemaInfo)">
+ <summary>Validates the attribute name, namespace URI, and value in the current element context.</summary>
+ <param name="localName">The local name of the attribute to validate.</param>
+ <param name="namespaceUri">The namespace URI of the attribute to validate.</param>
+ <param name="attributeValue">An <see cref="T:System.Xml.Schema.XmlValueGetter" /><see langword="delegate" /> used to pass the attribute's value as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute.</param>
+ <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the attribute. This parameter and can be <see langword="null" />.</param>
+ <returns>The validated attribute's value.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The attribute is not valid in the current element context.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" /> method was not called in the correct sequence. For example, calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" /> after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
+ <exception cref="T:System.ArgumentNullException">One or more of the parameters specified are <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateElement(System.String,System.String,System.Xml.Schema.XmlSchemaInfo)">
+ <summary>Validates the element in the current context.</summary>
+ <param name="localName">The local name of the element to validate.</param>
+ <param name="namespaceUri">The namespace URI of the element to validate.</param>
+ <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the element's name. This parameter can be <see langword="null" />.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The element's name is not valid in the current context.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateElement" /> method was not called in the correct sequence. For example, the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateElement" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateElement(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String)">
+ <summary>Validates the element in the current context with the <c>xsi:Type</c>, <c>xsi:Nil</c>, <c>xsi:SchemaLocation</c>, and <c>xsi:NoNamespaceSchemaLocation</c> attribute values specified.</summary>
+ <param name="localName">The local name of the element to validate.</param>
+ <param name="namespaceUri">The namespace URI of the element to validate.</param>
+ <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the element's name. This parameter can be <see langword="null" />.</param>
+ <param name="xsiType">The <c>xsi:Type</c> attribute value of the element. This parameter can be <see langword="null" />.</param>
+ <param name="xsiNil">The <c>xsi:Nil</c> attribute value of the element. This parameter can be <see langword="null" />.</param>
+ <param name="xsiSchemaLocation">The <c>xsi:SchemaLocation</c> attribute value of the element. This parameter can be <see langword="null" />.</param>
+ <param name="xsiNoNamespaceSchemaLocation">The <c>xsi:NoNamespaceSchemaLocation</c> attribute value of the element. This parameter can be <see langword="null" />.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The element's name is not valid in the current context.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateElement" /> method was not called in the correct sequence. For example, the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateElement" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndElement(System.Xml.Schema.XmlSchemaInfo)">
+ <summary>Verifies if the text content of the element is valid according to its data type for elements with simple content, and verifies if the content of the current element is complete for elements with complex content.</summary>
+ <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the element. This parameter can be <see langword="null" />.</param>
+ <returns>The parsed, typed text value of the element if the element has simple content.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The element's content is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateEndElement" /> method was not called in the correct sequence. For example, if the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateEndElement" /> method is called after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndElement(System.Xml.Schema.XmlSchemaInfo,System.Object)">
+ <summary>Verifies if the text content of the element specified is valid according to its data type.</summary>
+ <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful validation of the text content of the element. This parameter can be <see langword="null" />.</param>
+ <param name="typedValue">The typed text content of the element.</param>
+ <returns>The parsed, typed simple content of the element.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The element's text content is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateEndElement" /> method was not called in the correct sequence (for example, if the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateEndElement" /> method is called after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" />), calls to the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateText" /> method have been previously made, or the element has complex content.</exception>
+ <exception cref="T:System.ArgumentNullException">The typed text content parameter cannot be <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)">
+ <summary>Verifies whether all the required attributes in the element context are present and prepares the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object to validate the child content of the element.</summary>
+ <param name="schemaInfo">An <see cref="T:System.Xml.Schema.XmlSchemaInfo" /> object whose properties are set on successful verification that all the required attributes in the element context are present. This parameter can be <see langword="null" />.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">One or more of the required attributes in the current element context were not found.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)" /> method was not called in the correct sequence. For example, calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.ValidateEndOfAttributes(System.Xml.Schema.XmlSchemaInfo)" /> after calling <see cref="M:System.Xml.Schema.XmlSchemaValidator.SkipToEndElement(System.Xml.Schema.XmlSchemaInfo)" />.</exception>
+ <exception cref="T:System.ArgumentNullException">One or more of the parameters specified are <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateText(System.String)">
+ <summary>Validates whether the text <see langword="string" /> specified is allowed in the current element context, and accumulates the text for validation if the current element has simple content.</summary>
+ <param name="elementValue">A text <see langword="string" /> to validate in the current element context.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The text <see langword="string" /> specified is not allowed in the current element context.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateText" /> method was not called in the correct sequence. For example, the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateText" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
+ <exception cref="T:System.ArgumentNullException">The text <see langword="string" /> parameter cannot be <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateText(System.Xml.Schema.XmlValueGetter)">
+ <summary>Validates whether the text returned by the <see cref="T:System.Xml.Schema.XmlValueGetter" /> object specified is allowed in the current element context, and accumulates the text for validation if the current element has simple content.</summary>
+ <param name="elementValue">An <see cref="T:System.Xml.Schema.XmlValueGetter" /><see langword="delegate" /> used to pass the text value as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">The text <see langword="string" /> specified is not allowed in the current element context.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateText" /> method was not called in the correct sequence. For example, the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateText" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
+ <exception cref="T:System.ArgumentNullException">The text <see langword="string" /> parameter cannot be <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateWhitespace(System.String)">
+ <summary>Validates whether the white space in the <see langword="string" /> specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content.</summary>
+ <param name="elementValue">A white space <see langword="string" /> to validate in the current element context.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">White space is not allowed in the current element context.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateWhitespace" /> method was not called in the correct sequence. For example, if the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateWhitespace" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaValidator.ValidateWhitespace(System.Xml.Schema.XmlValueGetter)">
+ <summary>Validates whether the white space returned by the <see cref="T:System.Xml.Schema.XmlValueGetter" /> object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content.</summary>
+ <param name="elementValue">An <see cref="T:System.Xml.Schema.XmlValueGetter" /><see langword="delegate" /> used to pass the white space value as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">White space is not allowed in the current element context.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateWhitespace" /> method was not called in the correct sequence. For example, if the <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateWhitespace" /> method is called after calling <see cref="Overload:System.Xml.Schema.XmlSchemaValidator.ValidateAttribute" />.</exception>
+ </member>
+ <member name="E:System.Xml.Schema.XmlSchemaValidator.ValidationEventHandler">
+ <summary>The <see cref="T:System.Xml.Schema.ValidationEventHandler" /> that receives schema validation warnings and errors encountered during schema validation.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaValidator.ValidationEventSender">
+ <summary>Gets or sets the object sent as the sender object of a validation event.</summary>
+ <returns>An <see cref="T:System.Object" />; the default is this <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaValidator.XmlResolver">
+ <summary>Sets the <see cref="T:System.Xml.XmlResolver" /> object used to resolve <c>xs:import</c> and <c>xs:include</c> elements as well as <c>xsi:schemaLocation</c> and <c>xsi:noNamespaceSchemaLocation</c> attributes.</summary>
+ <returns>An <see cref="T:System.Xml.XmlResolver" /> object; the default is an <see cref="T:System.Xml.XmlUrlResolver" /> object.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaValidity">
+ <summary>Represents the validity of an XML item validated by the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> class.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidity.Invalid">
+ <summary>The XML item is invalid.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidity.NotKnown">
+ <summary>The validity of the XML item is not known.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSchemaValidity.Valid">
+ <summary>The XML item is valid.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaWhiteSpaceFacet">
+ <summary>Represents the World Wide Web Consortium (W3C) <see langword="whiteSpace" /> facet.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaWhiteSpaceFacet.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaWhiteSpaceFacet" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSchemaXPath">
+ <summary>Represents the World Wide Web Consortium (W3C) <see langword="selector" /> element.</summary>
+ </member>
+ <member name="M:System.Xml.Schema.XmlSchemaXPath.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Schema.XmlSchemaXPath" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Schema.XmlSchemaXPath.XPath">
+ <summary>Gets or sets the attribute for the XPath expression.</summary>
+ <returns>The string attribute value for the XPath expression.</returns>
+ </member>
+ <member name="T:System.Xml.Schema.XmlSeverityType">
+ <summary>Represents the severity of the validation event.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSeverityType.Error">
+ <summary>Indicates a validation error occurred when validating the instance document. This applies to document type definitions (DTDs) and XML Schema definition language (XSD) schemas. The World Wide Web Consortium (W3C) validity constraints are considered errors. If no validation event handler has been created, errors throw an exception.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlSeverityType.Warning">
+ <summary>Indicates that a validation event occurred that is not an error. A warning is typically issued when there is no DTD, or XML Schema to validate a particular element or attribute against. Unlike errors, warnings do not throw an exception if there is no validation event handler.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlTypeCode">
+ <summary>Represents the W3C XML Schema Definition Language (XSD) schema types.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.AnyAtomicType">
+ <summary>Any atomic value of a union.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.AnyUri">
+ <summary>A W3C XML Schema <see langword="xs:anyURI" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Attribute">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Base64Binary">
+ <summary>A W3C XML Schema <see langword="xs:base64Binary" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Boolean">
+ <summary>A W3C XML Schema <see langword="xs:boolean" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Byte">
+ <summary>A W3C XML Schema <see langword="xs:byte" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Comment">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Date">
+ <summary>A W3C XML Schema <see langword="xs:date" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.DateTime">
+ <summary>A W3C XML Schema <see langword="xs:dateTime" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.DayTimeDuration">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Decimal">
+ <summary>A W3C XML Schema <see langword="xs:decimal" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Document">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Double">
+ <summary>A W3C XML Schema <see langword="xs:double" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Duration">
+ <summary>A W3C XML Schema <see langword="xs:Duration" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Element">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Entity">
+ <summary>A W3C XML Schema <see langword="xs:ENTITY" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Float">
+ <summary>A W3C XML Schema <see langword="xs:float" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.GDay">
+ <summary>A W3C XML Schema <see langword="xs:gDay" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.GMonth">
+ <summary>A W3C XML Schema <see langword="xs:gMonth" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.GMonthDay">
+ <summary>A W3C XML Schema <see langword="xs:gMonthDay" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.GYear">
+ <summary>A W3C XML Schema <see langword="xs:gYear" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.GYearMonth">
+ <summary>A W3C XML Schema <see langword="xs:gYearMonth" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.HexBinary">
+ <summary>A W3C XML Schema <see langword="xs:hexBinary" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Id">
+ <summary>A W3C XML Schema <see langword="xs:ID" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Idref">
+ <summary>A W3C XML Schema <see langword="xs:IDREF" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Int">
+ <summary>A W3C XML Schema <see langword="xs:int" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Integer">
+ <summary>A W3C XML Schema <see langword="xs:integer" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Item">
+ <summary>An item such as a node or atomic value.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Language">
+ <summary>A W3C XML Schema <see langword="xs:language" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Long">
+ <summary>A W3C XML Schema <see langword="xs:long" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Name">
+ <summary>A W3C XML Schema <see langword="xs:Name" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Namespace">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.NCName">
+ <summary>A W3C XML Schema <see langword="xs:NCName" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.NegativeInteger">
+ <summary>A W3C XML Schema <see langword="xs:negativeInteger" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.NmToken">
+ <summary>A W3C XML Schema <see langword="xs:NMTOKEN" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Node">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.None">
+ <summary>No type information.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.NonNegativeInteger">
+ <summary>A W3C XML Schema <see langword="xs:nonNegativeInteger" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.NonPositiveInteger">
+ <summary>A W3C XML Schema <see langword="xs:nonPositiveInteger" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.NormalizedString">
+ <summary>A W3C XML Schema <see langword="xs:normalizedString" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Notation">
+ <summary>A W3C XML Schema <see langword="xs:NOTATION" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.PositiveInteger">
+ <summary>A W3C XML Schema <see langword="xs:positiveInteger" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.ProcessingInstruction">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.QName">
+ <summary>A W3C XML Schema <see langword="xs:QName" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Short">
+ <summary>A W3C XML Schema <see langword="xs:short" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.String">
+ <summary>A W3C XML Schema <see langword="xs:string" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Text">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Time">
+ <summary>A W3C XML Schema <see langword="xs:time" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.Token">
+ <summary>A W3C XML Schema <see langword="xs:token" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.UnsignedByte">
+ <summary>A W3C XML Schema <see langword="xs:unsignedByte" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.UnsignedInt">
+ <summary>A W3C XML Schema <see langword="xs:unsignedInt" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.UnsignedLong">
+ <summary>A W3C XML Schema <see langword="xs:unsignedLong" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.UnsignedShort">
+ <summary>A W3C XML Schema <see langword="xs:unsignedShort" /> type.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.UntypedAtomic">
+ <summary>An untyped atomic value.</summary>
+ </member>
+ <member name="F:System.Xml.Schema.XmlTypeCode.YearMonthDuration">
+ <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
+ </member>
+ <member name="T:System.Xml.Schema.XmlValueGetter">
+ <summary>A <see langword="delegate" /> used by the <see cref="T:System.Xml.Schema.XmlSchemaValidator" /> class to pass attribute, text, and white space values as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute, text, or white space.</summary>
+ <returns>An object containing the attribute, text, or white space value. The object is a CLR type that corresponds to the XSD type of the attribute, text, or white space value.</returns>
+ </member>
+ <member name="T:System.Xml.Serialization.IXmlSerializable">
+ <summary>Provides custom formatting for XML serialization and deserialization.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.IXmlSerializable.GetSchema">
+ <summary>This method is reserved and should not be used. When implementing the <see langword="IXmlSerializable" /> interface, you should return <see langword="null" /> (<see langword="Nothing" /> in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute" /> to the class.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchema" /> that describes the XML representation of the object that is produced by the <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" /> method and consumed by the <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" /> method.</returns>
+ </member>
+ <member name="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)">
+ <summary>Generates an object from its XML representation.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader" /> stream from which the object is deserialized.</param>
+ </member>
+ <member name="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)">
+ <summary>Converts an object into its XML representation.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> stream to which the object is serialized.</param>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlAnyAttributeAttribute">
+ <summary>Specifies that the member (a field that returns an array of <see cref="T:System.Xml.XmlAttribute" /> objects) can contain any XML attributes.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlAnyAttributeAttribute.#ctor">
+ <summary>Constructs a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyAttributeAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlAnyElementAttribute">
+ <summary>Specifies that the member (a field that returns an array of <see cref="T:System.Xml.XmlElement" /> or <see cref="T:System.Xml.XmlNode" /> objects) contains objects that represent any XML element that has no corresponding member in the object being serialized or deserialized.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlAnyElementAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlAnyElementAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> class and specifies the XML element name generated in the XML document.</summary>
+ <param name="name">The name of the XML element that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates.</param>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlAnyElementAttribute.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> class and specifies the XML element name generated in the XML document and its XML namespace.</summary>
+ <param name="name">The name of the XML element that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates.</param>
+ <param name="ns">The XML namespace of the XML element.</param>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlAnyElementAttribute.Name">
+ <summary>Gets or sets the XML element name.</summary>
+ <returns>The name of the XML element.</returns>
+ <exception cref="T:System.InvalidOperationException">The element name of an array member does not match the element name specified by the <see cref="P:System.Xml.Serialization.XmlAnyElementAttribute.Name" /> property.</exception>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlAnyElementAttribute.Namespace">
+ <summary>Gets or sets the XML namespace generated in the XML document.</summary>
+ <returns>An XML namespace.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlAnyElementAttribute.Order">
+ <summary>Gets or sets the explicit order in which the elements are serialized or deserialized.</summary>
+ <returns>The order of the code generation.</returns>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlAttributeAttribute">
+ <summary>Specifies that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> must serialize the class member as an XML attribute.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlAttributeAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAttributeAttribute" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlAttributeAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAttributeAttribute" /> class and specifies the name of the generated XML attribute.</summary>
+ <param name="attributeName">The name of the XML attribute that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates.</param>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlAttributeAttribute.#ctor(System.String,System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAttributeAttribute" /> class.</summary>
+ <param name="attributeName">The name of the XML attribute that is generated.</param>
+ <param name="type">The <see cref="T:System.Type" /> used to store the attribute.</param>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlAttributeAttribute.#ctor(System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAttributeAttribute" /> class.</summary>
+ <param name="type">The <see cref="T:System.Type" /> used to store the attribute.</param>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlAttributeAttribute.AttributeName">
+ <summary>Gets or sets the name of the XML attribute.</summary>
+ <returns>The name of the XML attribute. The default is the member name.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlAttributeAttribute.DataType">
+ <summary>Gets or sets the XSD data type of the XML attribute generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
+ <returns>An XSD (XML Schema Document) data type.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlAttributeAttribute.Form">
+ <summary>Gets or sets a value that indicates whether the XML attribute name generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is qualified.</summary>
+ <returns>One of the <see cref="T:System.Xml.Schema.XmlSchemaForm" /> values. The default is <see langword="XmlForm.None" />.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlAttributeAttribute.Namespace">
+ <summary>Gets or sets the XML namespace of the XML attribute.</summary>
+ <returns>The XML namespace of the XML attribute.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlAttributeAttribute.Type">
+ <summary>Gets or sets the complex type of the XML attribute.</summary>
+ <returns>The type of the XML attribute.</returns>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlElementAttribute">
+ <summary>Indicates that a public field or property represents an XML element when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes or deserializes the object that contains it.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlElementAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlElementAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> class and specifies the name of the XML element.</summary>
+ <param name="elementName">The XML element name of the serialized member.</param>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlElementAttribute.#ctor(System.String,System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> and specifies the name of the XML element and a derived type for the member to which the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> is applied. This member type is used when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes the object that contains it.</summary>
+ <param name="elementName">The XML element name of the serialized member.</param>
+ <param name="type">The <see cref="T:System.Type" /> of an object derived from the member's type.</param>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlElementAttribute.#ctor(System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> class and specifies a type for the member to which the <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> is applied. This type is used by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> when serializing or deserializing object that contains it.</summary>
+ <param name="type">The <see cref="T:System.Type" /> of an object derived from the member's type.</param>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlElementAttribute.DataType">
+ <summary>Gets or sets the XML Schema definition (XSD) data type of the XML element generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
+ <returns>An XML Schema data type.</returns>
+ <exception cref="T:System.Exception">The XML Schema data type you have specified cannot be mapped to the.NET data type.</exception>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlElementAttribute.ElementName">
+ <summary>Gets or sets the name of the generated XML element.</summary>
+ <returns>The name of the generated XML element. The default is the member identifier.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlElementAttribute.Form">
+ <summary>Gets or sets a value that indicates whether the element is qualified.</summary>
+ <returns>One of the <see cref="T:System.Xml.Schema.XmlSchemaForm" /> values. The default is <see cref="F:System.Xml.Schema.XmlSchemaForm.None" />.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlElementAttribute.IsNullable">
+ <summary>Gets or sets a value that indicates whether the <see cref="T:System.Xml.Serialization.XmlSerializer" /> must serialize a member that is set to <see langword="null" /> as an empty tag with the <see langword="xsi:nil" /> attribute set to <see langword="true" />.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates the <see langword="xsi:nil" /> attribute; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlElementAttribute.Namespace">
+ <summary>Gets or sets the namespace assigned to the XML element that results when the class is serialized.</summary>
+ <returns>The namespace of the XML element.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlElementAttribute.Order">
+ <summary>Gets or sets the explicit order in which the elements are serialized or deserialized.</summary>
+ <returns>The order of the code generation.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlElementAttribute.Type">
+ <summary>Gets or sets the object type used to represent the XML element.</summary>
+ <returns>The <see cref="T:System.Type" /> of the member.</returns>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlEnumAttribute">
+ <summary>Controls how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes an enumeration member.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlEnumAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlEnumAttribute" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlEnumAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlEnumAttribute" /> class, and specifies the XML value that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates or recognizes (when it serializes or deserializes the enumeration, respectively).</summary>
+ <param name="name">The overriding name of the enumeration member.</param>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlEnumAttribute.Name">
+ <summary>Gets or sets the value generated in an XML-document instance when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes an enumeration, or the value recognized when it deserializes the enumeration member.</summary>
+ <returns>The value generated in an XML-document instance when the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes the enumeration, or the value recognized when it is deserializes the enumeration member.</returns>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlIgnoreAttribute">
+ <summary>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 public read/write property value.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlIgnoreAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlIgnoreAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlNamespaceDeclarationsAttribute">
+ <summary>Specifies that the target property, parameter, return value, or class member contains prefixes associated with namespaces that are used within an XML document.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlNamespaceDeclarationsAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlNamespaceDeclarationsAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlRootAttribute">
+ <summary>Controls XML serialization of the attribute target as an XML root element.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlRootAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlRootAttribute" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlRootAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlRootAttribute" /> class and specifies the name of the XML root element.</summary>
+ <param name="elementName">The name of the XML root element.</param>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlRootAttribute.DataType">
+ <summary>Gets or sets the XSD data type of the XML root element.</summary>
+ <returns>An XSD (XML Schema Document) data type.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlRootAttribute.ElementName">
+ <summary>Gets or sets the name of the XML element that is generated and recognized by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class's <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, respectively.</summary>
+ <returns>The name of the XML root element that is generated and recognized in an XML-document instance. The default is the name of the serialized class.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlRootAttribute.IsNullable">
+ <summary>Gets or sets a value that indicates whether the <see cref="T:System.Xml.Serialization.XmlSerializer" /> must serialize a member that is set to <see langword="null" /> into the <see langword="xsi:nil" /> attribute set to <see langword="true" />.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates the <see langword="xsi:nil" /> attribute; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlRootAttribute.Namespace">
+ <summary>Gets or sets the namespace for the XML root element.</summary>
+ <returns>The namespace for the XML element.</returns>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlSchemaProviderAttribute">
+ <summary>When applied to a type, stores the name of a static method of the type that returns an XML schema and a <see cref="T:System.Xml.XmlQualifiedName" /> (or <see cref="T:System.Xml.Schema.XmlSchemaType" /> for anonymous types) that controls the serialization of the type.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlSchemaProviderAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSchemaProviderAttribute" /> class, taking the name of the static method that supplies the type's XML schema.</summary>
+ <param name="methodName">The name of the static method that must be implemented.</param>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlSchemaProviderAttribute.IsAny">
+ <summary>Gets or sets a value that determines whether the target class is a wildcard, or that the schema for the class has contains only an <see langword="xs:any" /> element.</summary>
+ <returns>
+ <see langword="true" />, if the class is a wildcard, or if the schema contains only the <see langword="xs:any" /> element; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlSchemaProviderAttribute.MethodName">
+ <summary>Gets the name of the static method that supplies the type's XML schema and the name of its XML Schema data type.</summary>
+ <returns>The name of the method that is invoked by the XML infrastructure to return an XML schema.</returns>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlSerializerNamespaces">
+ <summary>Contains the XML namespaces and prefixes that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> uses to generate qualified names in an XML-document instance.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.#ctor(System.Xml.Serialization.XmlSerializerNamespaces)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> class, using the specified instance of <see langword="XmlSerializerNamespaces" /> containing the collection of prefix and namespace pairs.</summary>
+ <param name="namespaces">An instance of the <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> containing the namespace and prefix pairs.</param>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.#ctor(System.Xml.XmlQualifiedName[])">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> class.</summary>
+ <param name="namespaces">An array of <see cref="T:System.Xml.XmlQualifiedName" /> objects.</param>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.Add(System.String,System.String)">
+ <summary>Adds a prefix and namespace pair to an <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> object.</summary>
+ <param name="prefix">The prefix associated with an XML namespace.</param>
+ <param name="ns">An XML namespace.</param>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlSerializerNamespaces.Count">
+ <summary>Gets the number of prefix and namespace pairs in the collection.</summary>
+ <returns>The number of prefix and namespace pairs in the collection.</returns>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlSerializerNamespaces.ToArray">
+ <summary>Gets the array of prefix and namespace pairs in an <see cref="T:System.Xml.Serialization.XmlSerializerNamespaces" /> object.</summary>
+ <returns>An array of <see cref="T:System.Xml.XmlQualifiedName" /> objects that are used as qualified names in an XML document.</returns>
+ </member>
+ <member name="T:System.Xml.Serialization.XmlTextAttribute">
+ <summary>Indicates to the <see cref="T:System.Xml.Serialization.XmlSerializer" /> that the member must be treated as XML text when the class that contains it is serialized or deserialized.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlTextAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlTextAttribute" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Serialization.XmlTextAttribute.#ctor(System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlTextAttribute" /> class.</summary>
+ <param name="type">The <see cref="T:System.Type" /> of the member to be serialized.</param>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlTextAttribute.DataType">
+ <summary>Gets or sets the XML Schema definition language (XSD) data type of the text generated by the <see cref="T:System.Xml.Serialization.XmlSerializer" />.</summary>
+ <returns>An XML Schema (XSD) data type.</returns>
+ <exception cref="T:System.Exception">The XML Schema data type you have specified cannot be mapped to the .NET data type.</exception>
+ <exception cref="T:System.InvalidOperationException">The XML Schema data type you have specified is invalid for the property and cannot be converted to the member type.</exception>
+ </member>
+ <member name="P:System.Xml.Serialization.XmlTextAttribute.Type">
+ <summary>Gets or sets the type of the member.</summary>
+ <returns>The <see cref="T:System.Type" /> of the member.</returns>
+ </member>
+ <member name="T:System.Xml.ValidationType">
+ <summary>Specifies the type of validation to perform.</summary>
+ </member>
+ <member name="F:System.Xml.ValidationType.Auto">
+ <summary>Validates if DTD or schema information is found.
+Starting with .NET Framework 2.0, this field is obsolete. It applies only to the obsolete <see cref="T:System.Xml.XmlValidatingReader" /> class.</summary>
+ </member>
+ <member name="F:System.Xml.ValidationType.DTD">
+ <summary>Validates according to the DTD.</summary>
+ </member>
+ <member name="F:System.Xml.ValidationType.None">
+ <summary>No validation is performed, and no validation errors are thrown. This setting creates an XML 1.0 compliant non-validating parser.
+Calls to <see cref="M:System.Xml.XmlReader.ResolveEntity" /> report default attributes and resolve general entities. The DOCTYPE is not used for validation purposes.</summary>
+ </member>
+ <member name="F:System.Xml.ValidationType.Schema">
+ <summary>Validate according to XML Schema definition language (XSD) schemas, including inline XML Schemas. XML Schemas are associated with namespace URIs either by using the <see langword="schemaLocation" /> attribute or the provided <see langword="Schemas" /> property.</summary>
+ </member>
+ <member name="F:System.Xml.ValidationType.XDR">
+ <summary>Validate according to XML-Data Reduced (XDR) schemas, including inline XDR schemas. XDR schemas are recognized using the <see langword="x-schema" /> namespace prefix or the <see cref="P:System.Xml.XmlValidatingReader.Schemas" /> property.
+Starting with .NET Framework 2.0, this field is obsolete. It applies only to the obsolete <see cref="T:System.Xml.XmlValidatingReader" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.WhitespaceHandling">
+ <summary>Specifies how white space is handled.</summary>
+ </member>
+ <member name="F:System.Xml.WhitespaceHandling.All">
+ <summary>Return <see langword="Whitespace" /> and <see langword="SignificantWhitespace" /> nodes. This is the default.</summary>
+ </member>
+ <member name="F:System.Xml.WhitespaceHandling.None">
+ <summary>Return no <see langword="Whitespace" /> and no <see langword="SignificantWhitespace" /> nodes.</summary>
+ </member>
+ <member name="F:System.Xml.WhitespaceHandling.Significant">
+ <summary>Return <see langword="SignificantWhitespace" /> nodes only.</summary>
+ </member>
+ <member name="T:System.Xml.WriteState">
+ <summary>Specifies the state of the <see cref="T:System.Xml.XmlWriter" />.</summary>
+ </member>
+ <member name="F:System.Xml.WriteState.Attribute">
+ <summary>Indicates that an attribute value is being written.</summary>
+ </member>
+ <member name="F:System.Xml.WriteState.Closed">
+ <summary>Indicates that the <see cref="M:System.Xml.XmlWriter.Close" /> method has been called.</summary>
+ </member>
+ <member name="F:System.Xml.WriteState.Content">
+ <summary>Indicates that element content is being written.</summary>
+ </member>
+ <member name="F:System.Xml.WriteState.Element">
+ <summary>Indicates that an element start tag is being written.</summary>
+ </member>
+ <member name="F:System.Xml.WriteState.Error">
+ <summary>An exception has been thrown, which has left the <see cref="T:System.Xml.XmlWriter" /> in an invalid state. You can call the <see cref="M:System.Xml.XmlWriter.Close" /> method to put the <see cref="T:System.Xml.XmlWriter" /> in the <see cref="F:System.Xml.WriteState.Closed" /> state. Any other <see cref="T:System.Xml.XmlWriter" /> method calls results in an <see cref="T:System.InvalidOperationException" />.
+This field was added in .NET Framework 2.0.</summary>
+ </member>
+ <member name="F:System.Xml.WriteState.Prolog">
+ <summary>Indicates that the prolog is being written.</summary>
+ </member>
+ <member name="F:System.Xml.WriteState.Start">
+ <summary>Indicates that a Write method has not yet been called.</summary>
+ </member>
+ <member name="T:System.Xml.XmlAttribute">
+ <summary>Represents an attribute. Valid and default values for the attribute are defined in a document type definition (DTD) or schema.</summary>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.#ctor(System.String,System.String,System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlAttribute" /> class.</summary>
+ <param name="prefix">The namespace prefix.</param>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace uniform resource identifier (URI).</param>
+ <param name="doc">The parent XML document.</param>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.AppendChild(System.Xml.XmlNode)">
+ <summary>Adds the specified node to the end of the list of child nodes, of this node.</summary>
+ <param name="newChild">The <see cref="T:System.Xml.XmlNode" /> to add.</param>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> added.</returns>
+ <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ This node is read-only.</exception>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.BaseURI">
+ <summary>Gets the base Uniform Resource Identifier (URI) of the node.</summary>
+ <returns>The location from which the node was loaded or String.Empty if the node has no base URI. Attribute nodes have the same base URI as their owner element. If an attribute node does not have an owner element, <see langword="BaseURI" /> returns String.Empty.</returns>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself</param>
+ <returns>The duplicate node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.InnerText">
+ <summary>Sets the concatenated values of the node and all its children.</summary>
+ <returns>The concatenated values of the node and all its children. For attribute nodes, this property has the same functionality as the <see cref="P:System.Xml.XmlAttribute.Value" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.InnerXml">
+ <summary>Sets the value of the attribute.</summary>
+ <returns>The attribute value.</returns>
+ <exception cref="T:System.Xml.XmlException">The XML specified when setting this property is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.InsertAfter(System.Xml.XmlNode,System.Xml.XmlNode)">
+ <summary>Inserts the specified node immediately after the specified reference node.</summary>
+ <param name="newChild">The <see cref="T:System.Xml.XmlNode" /> to insert.</param>
+ <param name="refChild">The <see cref="T:System.Xml.XmlNode" /> that is the reference node. The <paramref name="newChild" /> is placed after the <paramref name="refChild" />.</param>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> inserted.</returns>
+ <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ The <paramref name="refChild" /> is not a child of this node.
+ This node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.InsertBefore(System.Xml.XmlNode,System.Xml.XmlNode)">
+ <summary>Inserts the specified node immediately before the specified reference node.</summary>
+ <param name="newChild">The <see cref="T:System.Xml.XmlNode" /> to insert.</param>
+ <param name="refChild">The <see cref="T:System.Xml.XmlNode" /> that is the reference node. The <paramref name="newChild" /> is placed before this node.</param>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> inserted.</returns>
+ <exception cref="T:System.InvalidOperationException">The current node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ The <paramref name="refChild" /> is not a child of this node.
+ This node is read-only.</exception>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>The name of the attribute node with the prefix removed. In the following example &lt;book bk:genre= 'novel'&gt;, the <see langword="LocalName" /> of the attribute is <see langword="genre" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>The qualified name of the attribute node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.NamespaceURI">
+ <summary>Gets the namespace URI of this node.</summary>
+ <returns>The namespace URI of this node. If the attribute is not explicitly given a namespace, this property returns String.Empty.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>The node type for <see langword="XmlAttribute" /> nodes is XmlNodeType.Attribute.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.OwnerDocument">
+ <summary>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</summary>
+ <returns>An XML document to which this node belongs.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.OwnerElement">
+ <summary>Gets the <see cref="T:System.Xml.XmlElement" /> to which the attribute belongs.</summary>
+ <returns>The <see langword="XmlElement" /> that the attribute belongs to or <see langword="null" /> if this attribute is not part of an <see langword="XmlElement" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.ParentNode">
+ <summary>Gets the parent of this node. For <see langword="XmlAttribute" /> nodes, this property always returns <see langword="null" />.</summary>
+ <returns>For <see langword="XmlAttribute" /> nodes, this property always returns <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.Prefix">
+ <summary>Gets or sets the namespace prefix of this node.</summary>
+ <returns>The namespace prefix of this node. If there is no prefix, this property returns String.Empty.</returns>
+ <exception cref="T:System.ArgumentException">This node is read-only.</exception>
+ <exception cref="T:System.Xml.XmlException">The specified prefix contains an invalid character.
+ The specified prefix is malformed.
+ The namespaceURI of this node is <see langword="null" />.
+ The specified prefix is "xml", and the namespaceURI of this node is different from "http://www.w3.org/XML/1998/namespace".
+ This node is an attribute, the specified prefix is "xmlns", and the namespaceURI of this node is different from "http://www.w3.org/2000/xmlns/".
+ This node is an attribute, and the qualifiedName of this node is "xmlns" [Namespaces].</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.PrependChild(System.Xml.XmlNode)">
+ <summary>Adds the specified node to the beginning of the list of child nodes for this node.</summary>
+ <param name="newChild">The <see cref="T:System.Xml.XmlNode" /> 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>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> added.</returns>
+ <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ This node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.RemoveChild(System.Xml.XmlNode)">
+ <summary>Removes the specified child node.</summary>
+ <param name="oldChild">The <see cref="T:System.Xml.XmlNode" /> to remove.</param>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> removed.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="oldChild" /> is not a child of this node. Or this node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.ReplaceChild(System.Xml.XmlNode,System.Xml.XmlNode)">
+ <summary>Replaces the child node specified with the new child node specified.</summary>
+ <param name="newChild">The new child <see cref="T:System.Xml.XmlNode" />.</param>
+ <param name="oldChild">The <see cref="T:System.Xml.XmlNode" /> to replace.</param>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> replaced.</returns>
+ <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ This node is read-only.
+ The <paramref name="oldChild" /> is not a child of this node.</exception>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.SchemaInfo">
+ <summary>Gets the post-schema-validation-infoset that has been assigned to this node as a result of schema validation.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.IXmlSchemaInfo" /> containing the post-schema-validation-infoset of this node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.Specified">
+ <summary>Gets a value indicating whether the attribute value was explicitly set.</summary>
+ <returns>
+ <see langword="true" /> if this attribute was explicitly given a value in the original instance document; otherwise, <see langword="false" />. A value of <see langword="false" /> indicates that the value of the attribute came from the DTD.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttribute.Value">
+ <summary>Gets or sets the value of the node.</summary>
+ <returns>The value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node. For <see langword="XmlAttribute" /> nodes, this property is the value of attribute.</returns>
+ <exception cref="T:System.ArgumentException">The node is read-only and a set operation is called.</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlAttribute.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlAttributeCollection">
+ <summary>Represents a collection of attributes that can be accessed by name or index.</summary>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.Append(System.Xml.XmlAttribute)">
+ <summary>Inserts the specified attribute as the last node in the collection.</summary>
+ <param name="node">The attribute to insert.</param>
+ <returns>The <see langword="XmlAttribute" /> to append to the collection.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="node" /> was created from a document different from the one that created this collection.</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.CopyTo(System.Xml.XmlAttribute[],System.Int32)">
+ <summary>Copies all the <see cref="T:System.Xml.XmlAttribute" /> objects from this collection into the given array.</summary>
+ <param name="array">The array that is the destination of the objects copied from this collection.</param>
+ <param name="index">The index in the array where copying begins.</param>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.InsertAfter(System.Xml.XmlAttribute,System.Xml.XmlAttribute)">
+ <summary>Inserts the specified attribute immediately after the specified reference attribute.</summary>
+ <param name="newNode">The attribute to insert.</param>
+ <param name="refNode">The reference attribute. <paramref name="newNode" /> is placed after the <paramref name="refNode" />.</param>
+ <returns>The <see langword="XmlAttribute" /> to insert into the collection.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="newNode" /> was created from a document different from the one that created this collection. Or the <paramref name="refNode" /> is not a member of this collection.</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.InsertBefore(System.Xml.XmlAttribute,System.Xml.XmlAttribute)">
+ <summary>Inserts the specified attribute immediately before the specified reference attribute.</summary>
+ <param name="newNode">The attribute to insert.</param>
+ <param name="refNode">The reference attribute. <paramref name="newNode" /> is placed before the <paramref name="refNode" />.</param>
+ <returns>The <see langword="XmlAttribute" /> to insert into the collection.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="newNode" /> was created from a document different from the one that created this collection. Or the <paramref name="refNode" /> is not a member of this collection.</exception>
+ </member>
+ <member name="P:System.Xml.XmlAttributeCollection.ItemOf(System.Int32)">
+ <summary>Gets the attribute with the specified index.</summary>
+ <param name="i">The index of the attribute.</param>
+ <returns>The attribute at the specified index.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The index being passed in is out of range.</exception>
+ </member>
+ <member name="P:System.Xml.XmlAttributeCollection.ItemOf(System.String)">
+ <summary>Gets the attribute with the specified name.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>The attribute with the specified name. If the attribute does not exist, this property returns <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttributeCollection.ItemOf(System.String,System.String)">
+ <summary>Gets the attribute with the specified local name and namespace Uniform Resource Identifier (URI).</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The attribute with the specified local name and namespace URI. If the attribute does not exist, this property returns <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.Prepend(System.Xml.XmlAttribute)">
+ <summary>Inserts the specified attribute as the first node in the collection.</summary>
+ <param name="node">The attribute to insert.</param>
+ <returns>The <see langword="XmlAttribute" /> added to the collection.</returns>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.Remove(System.Xml.XmlAttribute)">
+ <summary>Removes the specified attribute from the collection.</summary>
+ <param name="node">The attribute to remove.</param>
+ <returns>The node removed or <see langword="null" /> if it is not found in the collection.</returns>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.RemoveAll">
+ <summary>Removes all attributes from the collection.</summary>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.RemoveAt(System.Int32)">
+ <summary>Removes the attribute corresponding to the specified index from the collection.</summary>
+ <param name="i">The index of the node to remove. The first node has index 0.</param>
+ <returns>Returns <see langword="null" /> if there is no attribute at the specified index.</returns>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.SetNamedItem(System.Xml.XmlNode)">
+ <summary>Adds a <see cref="T:System.Xml.XmlNode" /> using its <see cref="P:System.Xml.XmlNode.Name" /> property</summary>
+ <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>
+ <returns>If the <paramref name="node" /> replaces an existing node with the same name, the old node is returned; otherwise, the added node is returned.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="node" /> was created from a different <see cref="T:System.Xml.XmlDocument" /> than the one that created this collection.
+This <see langword="XmlAttributeCollection" /> is read-only.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="node" /> is an <see cref="T:System.Xml.XmlAttribute" /> that is already an attribute of another <see cref="T:System.Xml.XmlElement" /> object. To re-use attributes in other elements, you must clone the <see langword="XmlAttribute" /> objects you want to re-use.</exception>
+ </member>
+ <member name="M:System.Xml.XmlAttributeCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.XmlAttributeCollection.CopyTo(System.Xml.XmlAttribute[],System.Int32)" />.</summary>
+ <param name="array">The array that is the destination of the objects copied from this collection.</param>
+ <param name="index">The index in the array where copying begins.</param>
+ </member>
+ <member name="P:System.Xml.XmlAttributeCollection.System#Collections#ICollection#Count">
+ <summary>For a description of this member, see <see cref="P:System.Xml.XmlAttributeCollection.System#Collections#ICollection#Count" />.</summary>
+ <returns>An <see langword="int" /> that contains the count of the attributes.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttributeCollection.System#Collections#ICollection#IsSynchronized">
+ <summary>For a description of this member, see <see cref="P:System.Xml.XmlAttributeCollection.System#Collections#ICollection#IsSynchronized" />.</summary>
+ <returns>
+ <see langword="true" /> if the collection is synchronized.</returns>
+ </member>
+ <member name="P:System.Xml.XmlAttributeCollection.System#Collections#ICollection#SyncRoot">
+ <summary>For a description of this member, see <see cref="P:System.Xml.XmlAttributeCollection.System#Collections#ICollection#SyncRoot" />.</summary>
+ <returns>The <see cref="T:System.Object" /> that is the root of the collection.</returns>
+ </member>
+ <member name="T:System.Xml.XmlCDataSection">
+ <summary>Represents a CDATA section.</summary>
+ </member>
+ <member name="M:System.Xml.XmlCDataSection.#ctor(System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlCDataSection" /> class.</summary>
+ <param name="data">
+ <see cref="T:System.String" /> that contains character data.</param>
+ <param name="doc">
+ <see cref="T:System.Xml.XmlDocument" /> object.</param>
+ </member>
+ <member name="M:System.Xml.XmlCDataSection.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <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>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlCDataSection.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For CDATA nodes, the local name is <see langword="#cdata-section" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlCDataSection.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For CDATA nodes, the name is <see langword="#cdata-section" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlCDataSection.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>The node type. For CDATA nodes, the value is XmlNodeType.CDATA.</returns>
+ </member>
+ <member name="P:System.Xml.XmlCDataSection.ParentNode">
+ <summary>Gets the parent of this node (for nodes that can have parents).</summary>
+ <returns>The <see langword="XmlNode" /> that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is <see langword="null" />. For all other nodes, the value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node. The following table describes the possible return values for the <see langword="ParentNode" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.XmlCDataSection.PreviousText">
+ <summary>Gets the text node that immediately precedes this node.</summary>
+ <returns>Returns <see cref="T:System.Xml.XmlNode" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlCDataSection.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlCDataSection.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlCharacterData">
+ <summary>Provides text manipulation methods that are used by several classes.</summary>
+ </member>
+ <member name="M:System.Xml.XmlCharacterData.#ctor(System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlCharacterData" /> class.</summary>
+ <param name="data">String that contains character data to be added to document.</param>
+ <param name="doc">
+ <see cref="T:System.Xml.XmlDocument" /> to contain character data.</param>
+ </member>
+ <member name="M:System.Xml.XmlCharacterData.AppendData(System.String)">
+ <summary>Appends the specified string to the end of the character data of the node.</summary>
+ <param name="strData">The string to insert into the existing string.</param>
+ </member>
+ <member name="P:System.Xml.XmlCharacterData.Data">
+ <summary>Contains the data of the node.</summary>
+ <returns>The data of the node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlCharacterData.DeleteData(System.Int32,System.Int32)">
+ <summary>Removes a range of characters from the node.</summary>
+ <param name="offset">The position within the string to start deleting.</param>
+ <param name="count">The number of characters to delete.</param>
+ </member>
+ <member name="P:System.Xml.XmlCharacterData.InnerText">
+ <summary>Gets or sets the concatenated values of the node and all the children of the node.</summary>
+ <returns>The concatenated values of the node and all the children of the node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlCharacterData.InsertData(System.Int32,System.String)">
+ <summary>Inserts the specified string at the specified character offset.</summary>
+ <param name="offset">The position within the string to insert the supplied string data.</param>
+ <param name="strData">The string data that is to be inserted into the existing string.</param>
+ </member>
+ <member name="P:System.Xml.XmlCharacterData.Length">
+ <summary>Gets the length of the data, in characters.</summary>
+ <returns>The length, in characters, of the string in the <see cref="P:System.Xml.XmlCharacterData.Data" /> property. The length may be zero; that is, CharacterData nodes can be empty.</returns>
+ </member>
+ <member name="M:System.Xml.XmlCharacterData.ReplaceData(System.Int32,System.Int32,System.String)">
+ <summary>Replaces the specified number of characters starting at the specified offset with the specified string.</summary>
+ <param name="offset">The position within the string to start replacing.</param>
+ <param name="count">The number of characters to replace.</param>
+ <param name="strData">The new data that replaces the old string data.</param>
+ </member>
+ <member name="M:System.Xml.XmlCharacterData.Substring(System.Int32,System.Int32)">
+ <summary>Retrieves a substring of the full string from the specified range.</summary>
+ <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>
+ <param name="count">The number of characters to retrieve.</param>
+ <returns>The substring corresponding to the specified range.</returns>
+ </member>
+ <member name="P:System.Xml.XmlCharacterData.Value">
+ <summary>Gets or sets the value of the node.</summary>
+ <returns>The value of the node.</returns>
+ <exception cref="T:System.ArgumentException">Node is read-only.</exception>
+ </member>
+ <member name="T:System.Xml.XmlComment">
+ <summary>Represents the content of an XML comment.</summary>
+ </member>
+ <member name="M:System.Xml.XmlComment.#ctor(System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlComment" /> class.</summary>
+ <param name="comment">The content of the comment element.</param>
+ <param name="doc">The parent XML document.</param>
+ </member>
+ <member name="M:System.Xml.XmlComment.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <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>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlComment.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For comment nodes, the value is <see langword="#comment" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlComment.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For comment nodes, the value is <see langword="#comment" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlComment.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>For comment nodes, the value is XmlNodeType.Comment.</returns>
+ </member>
+ <member name="M:System.Xml.XmlComment.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. Because comment nodes do not have children, this method has no effect.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlComment.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlConvert">
+ <summary>Encodes and decodes XML names, and provides methods for converting between common language runtime types and XML Schema definition language (XSD) types. When converting data types, the values returned are locale-independent.</summary>
+ </member>
+ <member name="M:System.Xml.XmlConvert.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlConvert" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XmlConvert.DecodeName(System.String)">
+ <summary>Decodes a name. This method does the reverse of the <see cref="M:System.Xml.XmlConvert.EncodeName(System.String)" /> and <see cref="M:System.Xml.XmlConvert.EncodeLocalName(System.String)" /> methods.</summary>
+ <param name="name">The name to be transformed.</param>
+ <returns>The decoded name.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.EncodeLocalName(System.String)">
+ <summary>Converts the name to a valid XML local name.</summary>
+ <param name="name">The name to be encoded.</param>
+ <returns>The encoded name.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.EncodeName(System.String)">
+ <summary>Converts the name to a valid XML name.</summary>
+ <param name="name">A name to be translated.</param>
+ <returns>The name with any invalid characters replaced by an escape string.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.EncodeNmToken(System.String)">
+ <summary>Verifies the name is valid according to the XML specification.</summary>
+ <param name="name">The name to be encoded.</param>
+ <returns>The encoded name.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.IsNCNameChar(System.Char)">
+ <summary>Checks whether the passed-in character is a valid non-colon character type.</summary>
+ <param name="ch">The character to verify as a non-colon character.</param>
+ <returns>
+ <see langword="true" /> if the character is a valid non-colon character type; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.IsPublicIdChar(System.Char)">
+ <summary>Returns the passed-in character instance if the character in the argument is a valid public id character, otherwise <see langword="null" />.</summary>
+ <param name="ch">
+ <see cref="T:System.Char" /> object to validate.</param>
+ <returns>The passed-in character if the character is a valid public id character, otherwise <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.IsStartNCNameChar(System.Char)">
+ <summary>Checks if the passed-in character is a valid Start Name Character type.</summary>
+ <param name="ch">The character to validate.</param>
+ <returns>
+ <see langword="true" /> if the character is a valid Start Name Character type; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.IsWhitespaceChar(System.Char)">
+ <summary>Checks if the passed-in character is a valid XML whitespace character.</summary>
+ <param name="ch">The character to validate.</param>
+ <returns>
+ <see langword="true" /> if the passed in character is a valid XML whitespace character; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.IsXmlChar(System.Char)">
+ <summary>Checks if the passed-in character is a valid XML character.</summary>
+ <param name="ch">The character to validate.</param>
+ <returns>
+ <see langword="true" /> if the passed in character is a valid XML character; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.IsXmlSurrogatePair(System.Char,System.Char)">
+ <summary>Checks if the passed-in surrogate pair of characters is a valid XML character.</summary>
+ <param name="lowChar">The surrogate character to validate.</param>
+ <param name="highChar">The surrogate character to validate.</param>
+ <returns>
+ <see langword="true" /> if the passed in surrogate pair of characters is a valid XML character; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToBoolean(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Boolean" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="Boolean" /> value, that is, <see langword="true" /> or <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> does not represent a <see langword="Boolean" /> value.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToByte(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Byte" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="Byte" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToChar(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Char" /> equivalent.</summary>
+ <param name="s">The string containing a single character to convert.</param>
+ <returns>A <see langword="Char" /> representing the single character.</returns>
+ <exception cref="T:System.ArgumentNullException">The value of the <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">The <paramref name="s" /> parameter contains more than one character.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDateTime(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="DateTime" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is an empty string or is not in the correct format.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDateTime(System.String,System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <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>
+ <returns>A <see langword="DateTime" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> or <paramref name="format" /> is String.Empty
+-or-
+<paramref name="s" /> does not contain a date and time that corresponds to <paramref name="format" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDateTime(System.String,System.String[])">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <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>
+ <returns>A <see langword="DateTime" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> or an element of <paramref name="formats" /> is String.Empty
+-or-
+<paramref name="s" /> does not contain a date and time that corresponds to any of the elements of <paramref name="formats" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDateTime(System.String,System.Xml.XmlDateTimeSerializationMode)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.DateTime" /> using the <see cref="T:System.Xml.XmlDateTimeSerializationMode" /> specified</summary>
+ <param name="s">The <see cref="T:System.String" /> value to convert.</param>
+ <param name="dateTimeOption">One of the enumeration values that specify whether the date should be converted to local time or preserved as Coordinated Universal Time (UTC), if it is a UTC date.</param>
+ <returns>A <see cref="T:System.DateTime" /> equivalent of the <see cref="T:System.String" />.</returns>
+ <exception cref="T:System.NullReferenceException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="dateTimeOption" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is an empty string or is not in a valid format.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDateTimeOffset(System.String)">
+ <summary>Converts the supplied <see cref="T:System.String" /> to a <see cref="T:System.DateTimeOffset" /> equivalent.</summary>
+ <param name="s">The string to convert.
+ Note The string must conform to a subset of the W3C Recommendation for the XML dateTime type. For more information, see the dateTime section of the XML Schema specification..</param>
+ <returns>The <see cref="T:System.DateTimeOffset" /> equivalent of the supplied string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The argument passed to this method is outside the range of allowable values. For information about allowable values, see <see cref="T:System.DateTimeOffset" />.</exception>
+ <exception cref="T:System.FormatException">The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type. For more information, see the dateTime section of the XML Schema specification.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDateTimeOffset(System.String,System.String)">
+ <summary>Converts the supplied <see cref="T:System.String" /> to a <see cref="T:System.DateTimeOffset" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <param name="format">The format from which <paramref name="s" /> is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. (For more information, see the dateTime section of the XML Schema specification..) The string <paramref name="s" /> is validated against this format.</param>
+ <returns>The <see cref="T:System.DateTimeOffset" /> equivalent of the supplied string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> or <paramref name="format" /> is an empty string or is not in the specified format.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDateTimeOffset(System.String,System.String[])">
+ <summary>Converts the supplied <see cref="T:System.String" /> to a <see cref="T:System.DateTimeOffset" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <param name="formats">An array of formats from which <paramref name="s" /> can be converted. Each format in <paramref name="formats" /> can be any subset of the W3C Recommendation for the XML dateTime type. (For more information, see the dateTime section of the XML Schema specification..) The string <paramref name="s" /> is validated against one of these formats.</param>
+ <returns>The <see cref="T:System.DateTimeOffset" /> equivalent of the supplied string.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDecimal(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Decimal" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="Decimal" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToDouble(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Double" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="Double" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToGuid(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Guid" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="Guid" /> equivalent of the string.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToInt16(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int16" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>An <see langword="Int16" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToInt32(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int32" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>An <see langword="Int32" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToInt64(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Int64" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>An <see langword="Int64" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToSByte(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.SByte" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>An <see langword="SByte" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToSingle(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.Single" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="Single" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Boolean)">
+ <summary>Converts the <see cref="T:System.Boolean" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Boolean" />, that is, "true" or "false".</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Byte)">
+ <summary>Converts the <see cref="T:System.Byte" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Byte" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Char)">
+ <summary>Converts the <see cref="T:System.Char" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Char" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.DateTime)">
+ <summary>Converts the <see cref="T:System.DateTime" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="DateTime" /> in the format yyyy-MM-ddTHH:mm:ss where 'T' is a constant literal.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.DateTime,System.String)">
+ <summary>Converts the <see cref="T:System.DateTime" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <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>
+ <returns>A string representation of the <see langword="DateTime" /> in the specified format.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.DateTime,System.Xml.XmlDateTimeSerializationMode)">
+ <summary>Converts the <see cref="T:System.DateTime" /> to a <see cref="T:System.String" /> using the <see cref="T:System.Xml.XmlDateTimeSerializationMode" /> specified.</summary>
+ <param name="value">The <see cref="T:System.DateTime" /> value to convert.</param>
+ <param name="dateTimeOption">One of the <see cref="T:System.Xml.XmlDateTimeSerializationMode" /> values that specify how to treat the <see cref="T:System.DateTime" /> value.</param>
+ <returns>A <see cref="T:System.String" /> equivalent of the <see cref="T:System.DateTime" />.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="dateTimeOption" /> value is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> or <paramref name="dateTimeOption" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.DateTimeOffset)">
+ <summary>Converts the supplied <see cref="T:System.DateTimeOffset" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The <see cref="T:System.DateTimeOffset" /> to be converted.</param>
+ <returns>A <see cref="T:System.String" /> representation of the supplied <see cref="T:System.DateTimeOffset" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.DateTimeOffset,System.String)">
+ <summary>Converts the supplied <see cref="T:System.DateTimeOffset" /> to a <see cref="T:System.String" /> in the specified format.</summary>
+ <param name="value">The <see cref="T:System.DateTimeOffset" /> to be converted.</param>
+ <param name="format">The format to which <paramref name="s" /> is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. (For more information, see the dateTime section of the XML Schema specification..)</param>
+ <returns>A <see cref="T:System.String" /> representation in the specified format of the supplied <see cref="T:System.DateTimeOffset" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Decimal)">
+ <summary>Converts the <see cref="T:System.Decimal" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Decimal" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Double)">
+ <summary>Converts the <see cref="T:System.Double" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Double" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Guid)">
+ <summary>Converts the <see cref="T:System.Guid" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Guid" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Int16)">
+ <summary>Converts the <see cref="T:System.Int16" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Int16" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Int32)">
+ <summary>Converts the <see cref="T:System.Int32" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Int32" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Int64)">
+ <summary>Converts the <see cref="T:System.Int64" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Int64" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.SByte)">
+ <summary>Converts the <see cref="T:System.SByte" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="SByte" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.Single)">
+ <summary>Converts the <see cref="T:System.Single" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="Single" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.TimeSpan)">
+ <summary>Converts the <see cref="T:System.TimeSpan" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="TimeSpan" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.UInt16)">
+ <summary>Converts the <see cref="T:System.UInt16" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="UInt16" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.UInt32)">
+ <summary>Converts the <see cref="T:System.UInt32" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="UInt32" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToString(System.UInt64)">
+ <summary>Converts the <see cref="T:System.UInt64" /> to a <see cref="T:System.String" />.</summary>
+ <param name="value">The value to convert.</param>
+ <returns>A string representation of the <see langword="UInt64" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToTimeSpan(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.TimeSpan" /> equivalent.</summary>
+ <param name="s">The string to convert. The string format must conform to the W3C XML Schema Part 2: Datatypes recommendation for duration.</param>
+ <returns>A <see langword="TimeSpan" /> equivalent of the string.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in correct format to represent a <see langword="TimeSpan" /> value.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToUInt16(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt16" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="UInt16" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToUInt32(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt32" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="UInt32" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.ToUInt64(System.String)">
+ <summary>Converts the <see cref="T:System.String" /> to a <see cref="T:System.UInt64" /> equivalent.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>A <see langword="UInt64" /> equivalent of the string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="s" /> is not in the correct format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="s" /> represents a number less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.VerifyName(System.String)">
+ <summary>Verifies that the name is a valid name according to the W3C Extended Markup Language recommendation.</summary>
+ <param name="name">The name to verify.</param>
+ <returns>The name, if it is a valid XML name.</returns>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="name" /> is not a valid XML name.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="name" /> is <see langword="null" /> or String.Empty.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.VerifyNCName(System.String)">
+ <summary>Verifies that the name is a valid <see langword="NCName" /> according to the W3C Extended Markup Language recommendation. An <see langword="NCName" /> is a name that cannot contain a colon.</summary>
+ <param name="name">The name to verify.</param>
+ <returns>The name, if it is a valid NCName.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="name" /> is <see langword="null" /> or <c>String.Empty</c>.</exception>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="name" /> is not a valid non-colon name.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.VerifyNMTOKEN(System.String)">
+ <summary>Verifies that the string is a valid NMTOKEN according to the W3C XML Schema Part2: Datatypes recommendation</summary>
+ <param name="name">The string you wish to verify.</param>
+ <returns>The name token, if it is a valid NMTOKEN.</returns>
+ <exception cref="T:System.Xml.XmlException">The string is not a valid name token.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="name" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.VerifyPublicId(System.String)">
+ <summary>Returns the passed in string instance if all the characters in the string argument are valid public id characters.</summary>
+ <param name="publicId">
+ <see cref="T:System.String" /> that contains the id to validate.</param>
+ <returns>The passed-in string if all the characters in the argument are valid public id characters.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.VerifyTOKEN(System.String)">
+ <summary>Verifies that the string is a valid token according to the W3C XML Schema Part2: Datatypes recommendation.</summary>
+ <param name="token">The string value you wish to verify.</param>
+ <returns>The token, if it is a valid token.</returns>
+ <exception cref="T:System.Xml.XmlException">The string value is not a valid token.</exception>
+ </member>
+ <member name="M:System.Xml.XmlConvert.VerifyWhitespace(System.String)">
+ <summary>Returns the passed-in string instance if all the characters in the string argument are valid whitespace characters.</summary>
+ <param name="content">
+ <see cref="T:System.String" /> to verify.</param>
+ <returns>The passed-in string instance if all the characters in the string argument are valid whitespace characters, otherwise <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlConvert.VerifyXmlChars(System.String)">
+ <summary>Returns the passed-in string if all the characters and surrogate pair characters in the string argument are valid XML characters, otherwise an <see langword="XmlException" /> is thrown with information on the first invalid character encountered.</summary>
+ <param name="content">
+ <see cref="T:System.String" /> that contains characters to verify.</param>
+ <returns>The passed-in string if all the characters and surrogate-pair characters in the string argument are valid XML characters, otherwise an <see langword="XmlException" /> is thrown with information on the first invalid character encountered.</returns>
+ </member>
+ <member name="T:System.Xml.XmlDateTimeSerializationMode">
+ <summary>Specifies how to treat the time value when converting between string and <see cref="T:System.DateTime" />.</summary>
+ </member>
+ <member name="F:System.Xml.XmlDateTimeSerializationMode.Local">
+ <summary>Treat as local time. If the <see cref="T:System.DateTime" /> object represents a Coordinated Universal Time (UTC), it is converted to the local time.</summary>
+ </member>
+ <member name="F:System.Xml.XmlDateTimeSerializationMode.RoundtripKind">
+ <summary>Time zone information should be preserved when converting.</summary>
+ </member>
+ <member name="F:System.Xml.XmlDateTimeSerializationMode.Unspecified">
+ <summary>Treat as a local time if a <see cref="T:System.DateTime" /> is being converted to a string. If a string is being converted to <see cref="T:System.DateTime" />, convert to a local time if a time zone is specified.</summary>
+ </member>
+ <member name="F:System.Xml.XmlDateTimeSerializationMode.Utc">
+ <summary>Treat as a UTC. If the <see cref="T:System.DateTime" /> object represents a local time, it is converted to a UTC.</summary>
+ </member>
+ <member name="T:System.Xml.XmlDeclaration">
+ <summary>Represents the XML declaration node &lt;?xml version='1.0'...?&gt;.</summary>
+ </member>
+ <member name="M:System.Xml.XmlDeclaration.#ctor(System.String,System.String,System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDeclaration" /> class.</summary>
+ <param name="version">The XML version; see the <see cref="P:System.Xml.XmlDeclaration.Version" /> property.</param>
+ <param name="encoding">The encoding scheme; see the <see cref="P:System.Xml.XmlDeclaration.Encoding" /> property.</param>
+ <param name="standalone">Indicates whether the XML document depends on an external DTD; see the <see cref="P:System.Xml.XmlDeclaration.Standalone" /> property.</param>
+ <param name="doc">The parent XML document.</param>
+ </member>
+ <member name="M:System.Xml.XmlDeclaration.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <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>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDeclaration.Encoding">
+ <summary>Gets or sets the encoding level of the XML document.</summary>
+ <returns>The valid character encoding name. The most commonly supported character encoding names for XML are the following:
+ Category
+
+ Encoding Names
+
+ Unicode
+
+ UTF-8, UTF-16
+
+ ISO 10646
+
+ ISO-10646-UCS-2, ISO-10646-UCS-4
+
+ ISO 8859
+
+ ISO-8859-n (where "n" is a digit from 1 to 9)
+
+ JIS X-0208-1997
+
+ ISO-2022-JP, Shift_JIS, EUC-JP
+
+
+
+ This value is optional. If a value is not set, this property returns String.Empty.
+ If an encoding attribute is not included, UTF-8 encoding is assumed when the document is written or saved out.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDeclaration.InnerText">
+ <summary>Gets or sets the concatenated values of the <see langword="XmlDeclaration" />.</summary>
+ <returns>The concatenated values of the <see langword="XmlDeclaration" /> (that is, everything between <c>&lt;?xml</c> and <c>?&gt;</c>).</returns>
+ </member>
+ <member name="P:System.Xml.XmlDeclaration.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For <see langword="XmlDeclaration" /> nodes, the local name is <see langword="xml" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDeclaration.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For <see langword="XmlDeclaration" /> nodes, the name is <see langword="xml" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDeclaration.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>For <see langword="XmlDeclaration" /> nodes, this value is XmlNodeType.XmlDeclaration.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDeclaration.Standalone">
+ <summary>Gets or sets the value of the standalone attribute.</summary>
+ <returns>Valid values are <see langword="yes" /> if all entity declarations required by the XML document are contained within the document or <see langword="no" /> if an external document type definition (DTD) is required. If a standalone attribute is not present in the XML declaration, this property returns String.Empty.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDeclaration.Value">
+ <summary>Gets or sets the value of the <see langword="XmlDeclaration" />.</summary>
+ <returns>The contents of the <see langword="XmlDeclaration" /> (that is, everything between <c>&lt;?xml</c> and <c>?&gt;</c>).</returns>
+ </member>
+ <member name="P:System.Xml.XmlDeclaration.Version">
+ <summary>Gets the XML version of the document.</summary>
+ <returns>The value is always <see langword="1.0" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDeclaration.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. Because <see langword="XmlDeclaration" /> nodes do not have children, this method has no effect.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlDeclaration.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlDocument">
+ <summary>Represents an XML document. You can use this class to load, validate, edit, add, and position XML in a document.</summary>
+ </member>
+ <member name="M:System.Xml.XmlDocument.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDocument" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XmlDocument.#ctor(System.Xml.XmlImplementation)">
+ <summary>Initializes a new instance of the <see langword="XmlDocument" /> class with the specified <see cref="T:System.Xml.XmlImplementation" />.</summary>
+ <param name="imp">The <see langword="XmlImplementation" /> to use.</param>
+ </member>
+ <member name="M:System.Xml.XmlDocument.#ctor(System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see langword="XmlDocument" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
+ </member>
+ <member name="P:System.Xml.XmlDocument.BaseURI">
+ <summary>Gets the base URI of the current node.</summary>
+ <returns>The location from which the node was loaded.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
+ <returns>The cloned <see langword="XmlDocument" /> node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateAttribute(System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlAttribute" /> with the specified <see cref="P:System.Xml.XmlDocument.Name" />.</summary>
+ <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 <c></c>.</param>
+ <returns>The new <see langword="XmlAttribute" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateAttribute(System.String,System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlAttribute" /> with the specified qualified name and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <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>
+ <param name="namespaceURI">The namespaceURI of the attribute. If the qualified name includes a prefix of xmlns, then this parameter must be <c></c>.</param>
+ <returns>The new <see langword="XmlAttribute" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateAttribute(System.String,System.String,System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlAttribute" /> with the specified <see cref="P:System.Xml.XmlNode.Prefix" />, <see cref="P:System.Xml.XmlDocument.LocalName" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <param name="prefix">The prefix of the attribute (if any). String.Empty and <see langword="null" /> are equivalent.</param>
+ <param name="localName">The local name of the attribute.</param>
+ <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 <c></c>; otherwise an exception is thrown.</param>
+ <returns>The new <see langword="XmlAttribute" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateCDataSection(System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlCDataSection" /> containing the specified data.</summary>
+ <param name="data">The content of the new <see langword="XmlCDataSection" />.</param>
+ <returns>The new <see langword="XmlCDataSection" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateComment(System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlComment" /> containing the specified data.</summary>
+ <param name="data">The content of the new <see langword="XmlComment" />.</param>
+ <returns>The new <see langword="XmlComment" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateDefaultAttribute(System.String,System.String,System.String)">
+ <summary>Creates a default attribute with the specified prefix, local name and namespace URI.</summary>
+ <param name="prefix">The prefix of the attribute (if any).</param>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute (if any).</param>
+ <returns>The new <see cref="T:System.Xml.XmlAttribute" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateDocumentFragment">
+ <summary>Creates an <see cref="T:System.Xml.XmlDocumentFragment" />.</summary>
+ <returns>The new <see langword="XmlDocumentFragment" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateDocumentType(System.String,System.String,System.String,System.String)">
+ <summary>Returns a new <see cref="T:System.Xml.XmlDocumentType" /> object.</summary>
+ <param name="name">Name of the document type.</param>
+ <param name="publicId">The public identifier of the document type or <see langword="null" />. You can specify a public URI and also a system identifier to identify the location of the external DTD subset.</param>
+ <param name="systemId">The system identifier of the document type or <see langword="null" />. Specifies the URL of the file location for the external DTD subset.</param>
+ <param name="internalSubset">The DTD internal subset of the document type or <see langword="null" />.</param>
+ <returns>The new <see langword="XmlDocumentType" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateElement(System.String)">
+ <summary>Creates an element with the specified name.</summary>
+ <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>
+ <returns>The new <see langword="XmlElement" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateElement(System.String,System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlElement" /> with the qualified name and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <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>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The new <see langword="XmlElement" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateElement(System.String,System.String,System.String)">
+ <summary>Creates an element with the specified <see cref="P:System.Xml.XmlNode.Prefix" />, <see cref="P:System.Xml.XmlDocument.LocalName" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <param name="prefix">The prefix of the new element (if any). String.Empty and <see langword="null" /> are equivalent.</param>
+ <param name="localName">The local name of the new element.</param>
+ <param name="namespaceURI">The namespace URI of the new element (if any). String.Empty and <see langword="null" /> are equivalent.</param>
+ <returns>The new <see cref="T:System.Xml.XmlElement" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateEntityReference(System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlEntityReference" /> with the specified name.</summary>
+ <param name="name">The name of the entity reference.</param>
+ <returns>The new <see langword="XmlEntityReference" />.</returns>
+ <exception cref="T:System.ArgumentException">The name is invalid (for example, names starting with'#' are invalid.)</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateNavigator">
+ <summary>Creates a new <see cref="T:System.Xml.XPath.XPathNavigator" /> object for navigating this document.</summary>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateNavigator(System.Xml.XmlNode)">
+ <summary>Creates an <see cref="T:System.Xml.XPath.XPathNavigator" /> object for navigating this document positioned on the <see cref="T:System.Xml.XmlNode" /> specified.</summary>
+ <param name="node">The <see cref="T:System.Xml.XmlNode" /> you want the navigator initially positioned on.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateNode(System.String,System.String,System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlNode" /> with the specified node type, <see cref="P:System.Xml.XmlDocument.Name" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <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>
+ <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>
+ <param name="namespaceURI">The namespace URI of the new node.</param>
+ <returns>The new <see langword="XmlNode" />.</returns>
+ <exception cref="T:System.ArgumentException">The name was not provided and the <see langword="XmlNodeType" /> requires a name; or <paramref name="nodeTypeString" /> is not one of the strings listed below.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateNode(System.Xml.XmlNodeType,System.String,System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlNode" /> with the specified <see cref="T:System.Xml.XmlNodeType" />, <see cref="P:System.Xml.XmlDocument.Name" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <param name="type">The <see langword="XmlNodeType" /> of the new node.</param>
+ <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>
+ <param name="namespaceURI">The namespace URI of the new node.</param>
+ <returns>The new <see langword="XmlNode" />.</returns>
+ <exception cref="T:System.ArgumentException">The name was not provided and the <see langword="XmlNodeType" /> requires a name.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateNode(System.Xml.XmlNodeType,System.String,System.String,System.String)">
+ <summary>Creates a <see cref="T:System.Xml.XmlNode" /> with the specified <see cref="T:System.Xml.XmlNodeType" />, <see cref="P:System.Xml.XmlNode.Prefix" />, <see cref="P:System.Xml.XmlDocument.Name" />, and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <param name="type">The <see langword="XmlNodeType" /> of the new node.</param>
+ <param name="prefix">The prefix of the new node.</param>
+ <param name="name">The local name of the new node.</param>
+ <param name="namespaceURI">The namespace URI of the new node.</param>
+ <returns>The new <see langword="XmlNode" />.</returns>
+ <exception cref="T:System.ArgumentException">The name was not provided and the <see langword="XmlNodeType" /> requires a name.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateProcessingInstruction(System.String,System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlProcessingInstruction" /> with the specified name and data.</summary>
+ <param name="target">The name of the processing instruction.</param>
+ <param name="data">The data for the processing instruction.</param>
+ <returns>The new <see langword="XmlProcessingInstruction" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateSignificantWhitespace(System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlSignificantWhitespace" /> node.</summary>
+ <param name="text">The string must contain only the following characters &amp;#20; &amp;#10; &amp;#13; and &amp;#9;</param>
+ <returns>A new <see langword="XmlSignificantWhitespace" /> node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateTextNode(System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlText" /> with the specified text.</summary>
+ <param name="text">The text for the Text node.</param>
+ <returns>The new <see langword="XmlText" /> node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateWhitespace(System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlWhitespace" /> node.</summary>
+ <param name="text">The string must contain only the following characters &amp;#20; &amp;#10; &amp;#13; and &amp;#9;</param>
+ <returns>A new <see langword="XmlWhitespace" /> node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.CreateXmlDeclaration(System.String,System.String,System.String)">
+ <summary>Creates an <see cref="T:System.Xml.XmlDeclaration" /> node with the specified values.</summary>
+ <param name="version">The version must be "1.0".</param>
+ <param name="encoding">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.
+ 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.</param>
+ <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>
+ <returns>The new <see langword="XmlDeclaration" /> node.</returns>
+ <exception cref="T:System.ArgumentException">The values of <paramref name="version" /> or <paramref name="standalone" /> are something other than the ones specified above.</exception>
+ </member>
+ <member name="P:System.Xml.XmlDocument.DocumentElement">
+ <summary>Gets the root <see cref="T:System.Xml.XmlElement" /> for the document.</summary>
+ <returns>The <see langword="XmlElement" /> that represents the root of the XML document tree. If no root exists, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocument.DocumentType">
+ <summary>Gets the node containing the DOCTYPE declaration.</summary>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> containing the DocumentType (DOCTYPE declaration).</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.GetElementById(System.String)">
+ <summary>Gets the <see cref="T:System.Xml.XmlElement" /> with the specified ID.</summary>
+ <param name="elementId">The attribute ID to match.</param>
+ <returns>The <see langword="XmlElement" /> with the matching ID or <see langword="null" /> if no matching element is found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.GetElementsByTagName(System.String)">
+ <summary>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant elements that match the specified <see cref="P:System.Xml.XmlDocument.Name" />.</summary>
+ <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>
+ <returns>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes. If no nodes match <paramref name="name" />, the returned collection will be empty.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.GetElementsByTagName(System.String,System.String)">
+ <summary>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant elements that match the specified <see cref="P:System.Xml.XmlDocument.LocalName" /> and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <param name="localName">The LocalName to match. The special value "*" matches all tags.</param>
+ <param name="namespaceURI">NamespaceURI to match.</param>
+ <returns>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes. If no nodes match the specified <paramref name="localName" /> and <paramref name="namespaceURI" />, the returned collection will be empty.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocument.Implementation">
+ <summary>Gets the <see cref="T:System.Xml.XmlImplementation" /> object for the current document.</summary>
+ <returns>The <see langword="XmlImplementation" /> object for the current document.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.ImportNode(System.Xml.XmlNode,System.Boolean)">
+ <summary>Imports a node from another document to the current document.</summary>
+ <param name="node">The node being imported.</param>
+ <param name="deep">
+ <see langword="true" /> to perform a deep clone; otherwise, <see langword="false" />.</param>
+ <returns>The imported <see cref="T:System.Xml.XmlNode" />.</returns>
+ <exception cref="T:System.InvalidOperationException">Calling this method on a node type which cannot be imported.</exception>
+ </member>
+ <member name="P:System.Xml.XmlDocument.InnerText">
+ <summary>Throws an <see cref="T:System.InvalidOperationException" /> in all cases.</summary>
+ <returns>The values of the node and all its child nodes.</returns>
+ <exception cref="T:System.InvalidOperationException">In all cases.</exception>
+ </member>
+ <member name="P:System.Xml.XmlDocument.InnerXml">
+ <summary>Gets or sets the markup representing the children of the current node.</summary>
+ <returns>The markup of the children of the current node.</returns>
+ <exception cref="T:System.Xml.XmlException">The XML specified when setting this property is not well-formed.</exception>
+ </member>
+ <member name="P:System.Xml.XmlDocument.IsReadOnly">
+ <summary>Gets a value indicating whether the current node is read-only.</summary>
+ <returns>
+ <see langword="true" /> if the current node is read-only; otherwise <see langword="false" />. <see langword="XmlDocument" /> nodes always return <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Load(System.IO.Stream)">
+ <summary>Loads the XML document from the specified stream.</summary>
+ <param name="inStream">The stream containing the XML document to load.</param>
+ <exception cref="T:System.Xml.XmlException">There is a load or parse error in the XML. In this case, a <see cref="T:System.IO.FileNotFoundException" /> is raised.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Load(System.IO.TextReader)">
+ <summary>Loads the XML document from the specified <see cref="T:System.IO.TextReader" />.</summary>
+ <param name="txtReader">The <see langword="TextReader" /> used to feed the XML data into the document.</param>
+ <exception cref="T:System.Xml.XmlException">There is a load or parse error in the XML. In this case, the document remains empty.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Load(System.String)">
+ <summary>Loads the XML document from the specified URL.</summary>
+ <param name="filename">URL for the file containing the XML document to load. The URL can be either a local file or an HTTP URL (a Web address).</param>
+ <exception cref="T:System.Xml.XmlException">There is a load or parse error in the XML. In this case, a <see cref="T:System.IO.FileNotFoundException" /> is raised.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="filename" /> is a zero-length string, contains only white space, or contains one or more invalid characters as defined by <see cref="F:System.IO.Path.InvalidPathChars" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="filename" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred while opening the file.</exception>
+ <exception cref="T:System.UnauthorizedAccessException">
+ <paramref name="filename" /> specified a file that is read-only.
+-or-
+This operation is not supported on the current platform.
+-or-
+<paramref name="filename" /> specified a directory.
+-or-
+The caller does not have the required permission.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file specified in <paramref name="filename" /> was not found.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <paramref name="filename" /> is in an invalid format.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Load(System.Xml.XmlReader)">
+ <summary>Loads the XML document from the specified <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="reader">The <see langword="XmlReader" /> used to feed the XML data into the document.</param>
+ <exception cref="T:System.Xml.XmlException">There is a load or parse error in the XML. In this case, the document remains empty.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.LoadXml(System.String)">
+ <summary>Loads the XML document from the specified string.</summary>
+ <param name="xml">String containing the XML document to load.</param>
+ <exception cref="T:System.Xml.XmlException">There is a load or parse error in the XML. In this case, the document remains empty.</exception>
+ </member>
+ <member name="P:System.Xml.XmlDocument.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For <see langword="XmlDocument" /> nodes, the local name is #document.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocument.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For <see langword="XmlDocument" /> nodes, the name is #document.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocument.NameTable">
+ <summary>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this implementation.</summary>
+ <returns>An <see langword="XmlNameTable" /> enabling you to get the atomized version of a string within the document.</returns>
+ </member>
+ <member name="E:System.Xml.XmlDocument.NodeChanged">
+ <summary>Occurs when the <see cref="P:System.Xml.XmlNode.Value" /> of a node belonging to this document has been changed.</summary>
+ </member>
+ <member name="E:System.Xml.XmlDocument.NodeChanging">
+ <summary>Occurs when the <see cref="P:System.Xml.XmlNode.Value" /> of a node belonging to this document is about to be changed.</summary>
+ </member>
+ <member name="E:System.Xml.XmlDocument.NodeInserted">
+ <summary>Occurs when a node belonging to this document has been inserted into another node.</summary>
+ </member>
+ <member name="E:System.Xml.XmlDocument.NodeInserting">
+ <summary>Occurs when a node belonging to this document is about to be inserted into another node.</summary>
+ </member>
+ <member name="E:System.Xml.XmlDocument.NodeRemoved">
+ <summary>Occurs when a node belonging to this document has been removed from its parent.</summary>
+ </member>
+ <member name="E:System.Xml.XmlDocument.NodeRemoving">
+ <summary>Occurs when a node belonging to this document is about to be removed from the document.</summary>
+ </member>
+ <member name="P:System.Xml.XmlDocument.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>The node type. For <see langword="XmlDocument" /> nodes, this value is XmlNodeType.Document.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocument.OwnerDocument">
+ <summary>Gets the <see cref="T:System.Xml.XmlDocument" /> to which the current node belongs.</summary>
+ <returns>For <see langword="XmlDocument" /> nodes (<see cref="P:System.Xml.XmlDocument.NodeType" /> equals XmlNodeType.Document), this property always returns <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocument.ParentNode">
+ <summary>Gets the parent node of this node (for nodes that can have parents).</summary>
+ <returns>Always returns <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocument.PreserveWhitespace">
+ <summary>Gets or sets a value indicating whether to preserve white space in element content.</summary>
+ <returns>
+ <see langword="true" /> to preserve white space; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.ReadNode(System.Xml.XmlReader)">
+ <summary>Creates an <see cref="T:System.Xml.XmlNode" /> object based on the information in the <see cref="T:System.Xml.XmlReader" />. The reader must be positioned on a node or attribute.</summary>
+ <param name="reader">The XML source</param>
+ <returns>The new <see langword="XmlNode" /> or <see langword="null" /> if no more nodes exist.</returns>
+ <exception cref="T:System.NullReferenceException">The reader is positioned on a node type that does not translate to a valid DOM node (for example, EndElement or EndEntity).</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Save(System.IO.Stream)">
+ <summary>Saves the XML document to the specified stream.</summary>
+ <param name="outStream">The stream to which you want to save.</param>
+ <exception cref="T:System.Xml.XmlException">The operation would not result in a well formed XML document (for example, no document element or duplicate XML declarations).</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Save(System.IO.TextWriter)">
+ <summary>Saves the XML document to the specified <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="writer">The <see langword="TextWriter" /> to which you want to save.</param>
+ <exception cref="T:System.Xml.XmlException">The operation would not result in a well formed XML document (for example, no document element or duplicate XML declarations).</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Save(System.String)">
+ <summary>Saves the XML document to the specified file. If the specified file exists, this method overwrites it.</summary>
+ <param name="filename">The location of the file where you want to save the document.</param>
+ <exception cref="T:System.Xml.XmlException">The operation would not result in a well formed XML document (for example, no document element or duplicate XML declarations).</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Save(System.Xml.XmlWriter)">
+ <summary>Saves the XML document to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ <exception cref="T:System.Xml.XmlException">The operation would not result in a well formed XML document (for example, no document element or duplicate XML declarations).</exception>
+ </member>
+ <member name="P:System.Xml.XmlDocument.SchemaInfo">
+ <summary>Returns the Post-Schema-Validation-Infoset (PSVI) of the node.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.IXmlSchemaInfo" /> object representing the PSVI of the node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocument.Schemas">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object associated with this <see cref="T:System.Xml.XmlDocument" />.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object containing the XML Schema Definition Language (XSD) schemas associated with this <see cref="T:System.Xml.XmlDocument" />; otherwise, an empty <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Validate(System.Xml.Schema.ValidationEventHandler)">
+ <summary>Validates the <see cref="T:System.Xml.XmlDocument" /> against the XML Schema Definition Language (XSD) schemas contained in the <see cref="P:System.Xml.XmlDocument.Schemas" /> property.</summary>
+ <param name="validationEventHandler">The <see cref="T:System.Xml.Schema.ValidationEventHandler" /> object that receives information about schema validation warnings and errors.</param>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">A schema validation event occurred and no <see cref="T:System.Xml.Schema.ValidationEventHandler" /> object was specified.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.XmlNode)">
+ <summary>Validates the <see cref="T:System.Xml.XmlNode" /> object specified against the XML Schema Definition Language (XSD) schemas in the <see cref="P:System.Xml.XmlDocument.Schemas" /> property.</summary>
+ <param name="validationEventHandler">The <see cref="T:System.Xml.Schema.ValidationEventHandler" /> object that receives information about schema validation warnings and errors.</param>
+ <param name="nodeToValidate">The <see cref="T:System.Xml.XmlNode" /> object created from an <see cref="T:System.Xml.XmlDocument" /> to validate.</param>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.XmlNode" /> object parameter was not created from an <see cref="T:System.Xml.XmlDocument" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlNode" /> object parameter is not an element, attribute, document fragment, or the root node.</exception>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">A schema validation event occurred and no <see cref="T:System.Xml.Schema.ValidationEventHandler" /> object was specified.</exception>
+ </member>
+ <member name="M:System.Xml.XmlDocument.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the <see langword="XmlDocument" /> node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="xw">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlDocument.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the <see langword="XmlDocument" /> node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="P:System.Xml.XmlDocument.XmlResolver">
+ <summary>Sets the <see cref="T:System.Xml.XmlResolver" /> to use for resolving external resources.</summary>
+ <returns>The <see langword="XmlResolver" /> to use.
+ In version 1.1 of the.NET Framework, the caller must be fully trusted in order to specify an <see langword="XmlResolver" />.</returns>
+ <exception cref="T:System.Xml.XmlException">This property is set to <see langword="null" /> and an external DTD or entity is encountered.</exception>
+ </member>
+ <member name="T:System.Xml.XmlDocumentFragment">
+ <summary>Represents a lightweight object that is useful for tree insert operations.</summary>
+ </member>
+ <member name="M:System.Xml.XmlDocumentFragment.#ctor(System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDocumentFragment" /> class.</summary>
+ <param name="ownerDocument">The XML document that is the source of the fragment.</param>
+ </member>
+ <member name="M:System.Xml.XmlDocumentFragment.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentFragment.InnerXml">
+ <summary>Gets or sets the markup representing the children of this node.</summary>
+ <returns>The markup of the children of this node.</returns>
+ <exception cref="T:System.Xml.XmlException">The XML specified when setting this property is not well-formed.</exception>
+ </member>
+ <member name="P:System.Xml.XmlDocumentFragment.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For <see langword="XmlDocumentFragment" /> nodes, the local name is <see langword="#document-fragment" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentFragment.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For <see langword="XmlDocumentFragment" />, the name is <see langword="#document-fragment" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentFragment.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>For <see langword="XmlDocumentFragment" /> nodes, this value is XmlNodeType.DocumentFragment.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentFragment.OwnerDocument">
+ <summary>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</summary>
+ <returns>The <see langword="XmlDocument" /> to which this node belongs.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentFragment.ParentNode">
+ <summary>Gets the parent of this node (for nodes that can have parents).</summary>
+ <returns>The parent of this node.
+ For <see langword="XmlDocumentFragment" /> nodes, this property is always <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocumentFragment.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlDocumentFragment.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlDocumentType">
+ <summary>Represents the document type declaration.</summary>
+ </member>
+ <member name="M:System.Xml.XmlDocumentType.#ctor(System.String,System.String,System.String,System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDocumentType" /> class.</summary>
+ <param name="name">The qualified name; see the <see cref="P:System.Xml.XmlDocumentType.Name" /> property.</param>
+ <param name="publicId">The public identifier; see the <see cref="P:System.Xml.XmlDocumentType.PublicId" /> property.</param>
+ <param name="systemId">The system identifier; see the <see cref="P:System.Xml.XmlDocumentType.SystemId" /> property.</param>
+ <param name="internalSubset">The DTD internal subset; see the <see cref="P:System.Xml.XmlDocumentType.InternalSubset" /> property.</param>
+ <param name="doc">The parent document.</param>
+ </member>
+ <member name="M:System.Xml.XmlDocumentType.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <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>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.Entities">
+ <summary>Gets the collection of <see cref="T:System.Xml.XmlEntity" /> nodes declared in the document type declaration.</summary>
+ <returns>An <see cref="T:System.Xml.XmlNamedNodeMap" /> containing the <see langword="XmlEntity" /> nodes. The returned <see langword="XmlNamedNodeMap" /> is read-only.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.InternalSubset">
+ <summary>Gets the value of the document type definition (DTD) internal subset on the DOCTYPE declaration.</summary>
+ <returns>The DTD internal subset on the DOCTYPE. If there is no DTD internal subset, String.Empty is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.IsReadOnly">
+ <summary>Gets a value indicating whether the node is read-only.</summary>
+ <returns>
+ <see langword="true" /> if the node is read-only; otherwise, <see langword="false" />.
+Because DocumentType nodes are read-only, this property always returns <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For DocumentType nodes, this property returns the name of the document type.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For DocumentType nodes, this property returns the name of the document type.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>For DocumentType nodes, this value is XmlNodeType.DocumentType.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.Notations">
+ <summary>Gets the collection of <see cref="T:System.Xml.XmlNotation" /> nodes present in the document type declaration.</summary>
+ <returns>An <see cref="T:System.Xml.XmlNamedNodeMap" /> containing the <see langword="XmlNotation" /> nodes. The returned <see langword="XmlNamedNodeMap" /> is read-only.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.PublicId">
+ <summary>Gets the value of the public identifier on the DOCTYPE declaration.</summary>
+ <returns>The public identifier on the DOCTYPE. If there is no public identifier, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlDocumentType.SystemId">
+ <summary>Gets the value of the system identifier on the DOCTYPE declaration.</summary>
+ <returns>The system identifier on the DOCTYPE. If there is no system identifier, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlDocumentType.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. For <see langword="XmlDocumentType" /> nodes, this method has no effect.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlDocumentType.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlElement">
+ <summary>Represents an element.</summary>
+ </member>
+ <member name="M:System.Xml.XmlElement.#ctor(System.String,System.String,System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlElement" /> class.</summary>
+ <param name="prefix">The namespace prefix; see the <see cref="P:System.Xml.XmlElement.Prefix" /> property.</param>
+ <param name="localName">The local name; see the <see cref="P:System.Xml.XmlElement.LocalName" /> property.</param>
+ <param name="namespaceURI">The namespace URI; see the <see cref="P:System.Xml.XmlElement.NamespaceURI" /> property.</param>
+ <param name="doc">The parent XML document.</param>
+ </member>
+ <member name="P:System.Xml.XmlElement.Attributes">
+ <summary>Gets an <see cref="T:System.Xml.XmlAttributeCollection" /> containing the list of attributes for this node.</summary>
+ <returns>
+ <see cref="T:System.Xml.XmlAttributeCollection" /> containing the list of attributes for this node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <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>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.GetAttribute(System.String)">
+ <summary>Returns the value for the attribute with the specified name.</summary>
+ <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>
+ <returns>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.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.GetAttribute(System.String,System.String)">
+ <summary>Returns the value for the attribute with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute to retrieve.</param>
+ <param name="namespaceURI">The namespace URI of the attribute to retrieve.</param>
+ <returns>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.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.GetAttributeNode(System.String)">
+ <summary>Returns the <see langword="XmlAttribute" /> with the specified name.</summary>
+ <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>
+ <returns>The specified <see langword="XmlAttribute" /> or <see langword="null" /> if a matching attribute was not found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.GetAttributeNode(System.String,System.String)">
+ <summary>Returns the <see cref="T:System.Xml.XmlAttribute" /> with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The specified <see langword="XmlAttribute" /> or <see langword="null" /> if a matching attribute was not found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.GetElementsByTagName(System.String)">
+ <summary>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant elements that match the specified <see cref="P:System.Xml.XmlElement.Name" />.</summary>
+ <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 asterisk (*) is a special value that matches all tags.</param>
+ <returns>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes. The list is empty if there are no matching nodes.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.GetElementsByTagName(System.String,System.String)">
+ <summary>Returns an <see cref="T:System.Xml.XmlNodeList" /> containing a list of all descendant elements that match the specified <see cref="P:System.Xml.XmlElement.LocalName" /> and <see cref="P:System.Xml.XmlElement.NamespaceURI" />.</summary>
+ <param name="localName">The local name to match. The asterisk (*) is a special value that matches all tags.</param>
+ <param name="namespaceURI">The namespace URI to match.</param>
+ <returns>An <see cref="T:System.Xml.XmlNodeList" /> containing a list of all matching nodes. The list is empty if there are no matching nodes.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.HasAttribute(System.String)">
+ <summary>Determines whether the current node has an attribute with the specified name.</summary>
+ <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>
+ <returns>
+ <see langword="true" /> if the current node has the specified attribute; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.HasAttribute(System.String,System.String)">
+ <summary>Determines whether the current node has an attribute with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute to find.</param>
+ <param name="namespaceURI">The namespace URI of the attribute to find.</param>
+ <returns>
+ <see langword="true" /> if the current node has the specified attribute; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.HasAttributes">
+ <summary>Gets a <see langword="boolean" /> value indicating whether the current node has any attributes.</summary>
+ <returns>
+ <see langword="true" /> if the current node has attributes; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.InnerText">
+ <summary>Gets or sets the concatenated values of the node and all its children.</summary>
+ <returns>The concatenated values of the node and all its children.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.InnerXml">
+ <summary>Gets or sets the markup representing just the children of this node.</summary>
+ <returns>The markup of the children of this node.</returns>
+ <exception cref="T:System.Xml.XmlException">The XML specified when setting this property is not well-formed.</exception>
+ </member>
+ <member name="P:System.Xml.XmlElement.IsEmpty">
+ <summary>Gets or sets the tag format of the element.</summary>
+ <returns>
+ <see langword="true" /> if the element is to be serialized in the short tag format "&lt;item/&gt;"; <see langword="false" /> for the long format "&lt;item&gt;&lt;/item&gt;".
+When setting this property, if set to <see langword="true" />, the children of the element are removed and the element is serialized in the short tag format. If set to <see langword="false" />, the value of the property is changed (regardless of whether or not the element has content); if the element is empty, it is serialized in the long format.
+This property is a Microsoft extension to the Document Object Model (DOM).</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.LocalName">
+ <summary>Gets the local name of the current node.</summary>
+ <returns>The name of the current node with the prefix removed. For example, <see langword="LocalName" /> is book for the element &lt;bk:book&gt;.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>The qualified name of the node. For <see langword="XmlElement" /> nodes, this is the tag name of the element.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.NamespaceURI">
+ <summary>Gets the namespace URI of this node.</summary>
+ <returns>The namespace URI of this node. If there is no namespace URI, this property returns String.Empty.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.NextSibling">
+ <summary>Gets the <see cref="T:System.Xml.XmlNode" /> immediately following this element.</summary>
+ <returns>The <see langword="XmlNode" /> immediately following this element.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>The node type. For <see langword="XmlElement" /> nodes, this value is XmlNodeType.Element.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.OwnerDocument">
+ <summary>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</summary>
+ <returns>The <see langword="XmlDocument" /> to which this element belongs.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.ParentNode">
+ <summary>Gets the parent of this node (for nodes that can have parents).</summary>
+ <returns>The <see langword="XmlNode" /> that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is <see langword="null" />. For all other nodes, the value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node. The following table describes the possible return values for the <see langword="ParentNode" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.XmlElement.Prefix">
+ <summary>Gets or sets the namespace prefix of this node.</summary>
+ <returns>The namespace prefix of this node. If there is no prefix, this property returns String.Empty.</returns>
+ <exception cref="T:System.ArgumentException">This node is read-only</exception>
+ <exception cref="T:System.Xml.XmlException">The specified prefix contains an invalid character.
+ The specified prefix is malformed.
+ The namespaceURI of this node is <see langword="null" />.
+ The specified prefix is "xml" and the namespaceURI of this node is different from http://www.w3.org/XML/1998/namespace.</exception>
+ </member>
+ <member name="M:System.Xml.XmlElement.RemoveAll">
+ <summary>Removes all specified attributes and children of the current node. Default attributes are not removed.</summary>
+ </member>
+ <member name="M:System.Xml.XmlElement.RemoveAllAttributes">
+ <summary>Removes all specified attributes from the element. Default attributes are not removed.</summary>
+ </member>
+ <member name="M:System.Xml.XmlElement.RemoveAttribute(System.String)">
+ <summary>Removes an attribute by name.</summary>
+ <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>
+ <exception cref="T:System.ArgumentException">The node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlElement.RemoveAttribute(System.String,System.String)">
+ <summary>Removes an attribute with the specified local name and namespace URI. (If the removed attribute has a default value, it is immediately replaced).</summary>
+ <param name="localName">The local name of the attribute to remove.</param>
+ <param name="namespaceURI">The namespace URI of the attribute to remove.</param>
+ <exception cref="T:System.ArgumentException">The node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlElement.RemoveAttributeAt(System.Int32)">
+ <summary>Removes the attribute node with the specified index from the element. (If the removed attribute has a default value, it is immediately replaced).</summary>
+ <param name="i">The index of the node to remove. The first node has index 0.</param>
+ <returns>The attribute node removed or <see langword="null" /> if there is no node at the given index.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.RemoveAttributeNode(System.String,System.String)">
+ <summary>Removes the <see cref="T:System.Xml.XmlAttribute" /> specified by the local name and namespace URI. (If the removed attribute has a default value, it is immediately replaced).</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The removed <see langword="XmlAttribute" /> or <see langword="null" /> if the <see langword="XmlElement" /> does not have a matching attribute node.</returns>
+ <exception cref="T:System.ArgumentException">This node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlElement.RemoveAttributeNode(System.Xml.XmlAttribute)">
+ <summary>Removes the specified <see cref="T:System.Xml.XmlAttribute" />.</summary>
+ <param name="oldAttr">The <see langword="XmlAttribute" /> node to remove. If the removed attribute has a default value, it is immediately replaced.</param>
+ <returns>The removed <see langword="XmlAttribute" /> or <see langword="null" /> if <paramref name="oldAttr" /> is not an attribute node of the <see langword="XmlElement" />.</returns>
+ <exception cref="T:System.ArgumentException">This node is read-only.</exception>
+ </member>
+ <member name="P:System.Xml.XmlElement.SchemaInfo">
+ <summary>Gets the post schema validation infoset that has been assigned to this node as a result of schema validation.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.IXmlSchemaInfo" /> object containing the post schema validation infoset of this node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.SetAttribute(System.String,System.String)">
+ <summary>Sets the value of the attribute with the specified name.</summary>
+ <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>
+ <param name="value">The value to set for the attribute.</param>
+ <exception cref="T:System.Xml.XmlException">The specified name contains an invalid character.</exception>
+ <exception cref="T:System.ArgumentException">The node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlElement.SetAttribute(System.String,System.String,System.String)">
+ <summary>Sets the value of the attribute with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <param name="value">The value to set for the attribute.</param>
+ <returns>The attribute value.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.SetAttributeNode(System.String,System.String)">
+ <summary>Adds the specified <see cref="T:System.Xml.XmlAttribute" />.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The <see langword="XmlAttribute" /> to add.</returns>
+ </member>
+ <member name="M:System.Xml.XmlElement.SetAttributeNode(System.Xml.XmlAttribute)">
+ <summary>Adds the specified <see cref="T:System.Xml.XmlAttribute" />.</summary>
+ <param name="newAttr">The <see langword="XmlAttribute" /> node to add to the attribute collection for this element.</param>
+ <returns>If the attribute replaces an existing attribute with the same name, the old <see langword="XmlAttribute" /> is returned; otherwise, <see langword="null" /> is returned.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="newAttr" /> was created from a different document than the one that created this node. Or this node is read-only.</exception>
+ <exception cref="T:System.InvalidOperationException">The <paramref name="newAttr" /> is already an attribute of another <see langword="XmlElement" /> object. You must explicitly clone <see langword="XmlAttribute" /> nodes to re-use them in other <see langword="XmlElement" /> objects.</exception>
+ </member>
+ <member name="M:System.Xml.XmlElement.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlElement.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the current node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlEntity">
+ <summary>Represents an entity declaration, such as &lt;!ENTITY... &gt;.</summary>
+ </member>
+ <member name="P:System.Xml.XmlEntity.BaseURI">
+ <summary>Gets the base Uniform Resource Identifier (URI) of the current node.</summary>
+ <returns>The location from which the node was loaded.</returns>
+ </member>
+ <member name="M:System.Xml.XmlEntity.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node. Entity nodes cannot be cloned. Calling this method on an <see cref="T:System.Xml.XmlEntity" /> object throws an exception.</summary>
+ <param name="deep">
+ <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
+ <returns>A copy of the <see cref="T:System.Xml.XmlNode" /> from which the method is called.</returns>
+ <exception cref="T:System.InvalidOperationException">Entity nodes cannot be cloned. Calling this method on an <see cref="T:System.Xml.XmlEntity" /> object throws an exception.</exception>
+ </member>
+ <member name="P:System.Xml.XmlEntity.InnerText">
+ <summary>Gets the concatenated values of the entity node and all its children.</summary>
+ <returns>The concatenated values of the node and all its children.</returns>
+ <exception cref="T:System.InvalidOperationException">Attempting to set the property.</exception>
+ </member>
+ <member name="P:System.Xml.XmlEntity.InnerXml">
+ <summary>Gets the markup representing the children of this node.</summary>
+ <returns>For <see langword="XmlEntity" /> nodes, String.Empty is returned.</returns>
+ <exception cref="T:System.InvalidOperationException">Attempting to set the property.</exception>
+ </member>
+ <member name="P:System.Xml.XmlEntity.IsReadOnly">
+ <summary>Gets a value indicating whether the node is read-only.</summary>
+ <returns>
+ <see langword="true" /> if the node is read-only; otherwise, <see langword="false" />.
+Because <see langword="XmlEntity" /> nodes are read-only, this property always returns <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntity.LocalName">
+ <summary>Gets the name of the node without the namespace prefix.</summary>
+ <returns>For <see langword="XmlEntity" /> nodes, this property returns the name of the entity.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntity.Name">
+ <summary>Gets the name of the node.</summary>
+ <returns>The name of the entity.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntity.NodeType">
+ <summary>Gets the type of the node.</summary>
+ <returns>The node type. For <see langword="XmlEntity" /> nodes, the value is XmlNodeType.Entity.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntity.NotationName">
+ <summary>Gets the name of the optional NDATA attribute on the entity declaration.</summary>
+ <returns>The name of the NDATA attribute. If there is no NDATA, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntity.OuterXml">
+ <summary>Gets the markup representing this node and all its children.</summary>
+ <returns>For <see langword="XmlEntity" /> nodes, String.Empty is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntity.PublicId">
+ <summary>Gets the value of the public identifier on the entity declaration.</summary>
+ <returns>The public identifier on the entity. If there is no public identifier, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntity.SystemId">
+ <summary>Gets the value of the system identifier on the entity declaration.</summary>
+ <returns>The system identifier on the entity. If there is no system identifier, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlEntity.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. For <see langword="XmlEntity" /> nodes, this method has no effect.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlEntity.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />. For <see langword="XmlEntity" /> nodes, this method has no effect.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlEntityReference">
+ <summary>Represents an entity reference node.</summary>
+ </member>
+ <member name="M:System.Xml.XmlEntityReference.#ctor(System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlEntityReference" /> class.</summary>
+ <param name="name">The name of the entity reference; see the <see cref="P:System.Xml.XmlEntityReference.Name" /> property.</param>
+ <param name="doc">The parent XML document.</param>
+ </member>
+ <member name="P:System.Xml.XmlEntityReference.BaseURI">
+ <summary>Gets the base Uniform Resource Identifier (URI) of the current node.</summary>
+ <returns>The location from which the node was loaded.</returns>
+ </member>
+ <member name="M:System.Xml.XmlEntityReference.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <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>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntityReference.IsReadOnly">
+ <summary>Gets a value indicating whether the node is read-only.</summary>
+ <returns>
+ <see langword="true" /> if the node is read-only; otherwise <see langword="false" />.
+Because <see langword="XmlEntityReference" /> nodes are read-only, this property always returns <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntityReference.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For <see langword="XmlEntityReference" /> nodes, this property returns the name of the entity referenced.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntityReference.Name">
+ <summary>Gets the name of the node.</summary>
+ <returns>The name of the entity referenced.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntityReference.NodeType">
+ <summary>Gets the type of the node.</summary>
+ <returns>The node type. For <see langword="XmlEntityReference" /> nodes, the value is XmlNodeType.EntityReference.</returns>
+ </member>
+ <member name="P:System.Xml.XmlEntityReference.Value">
+ <summary>Gets or sets the value of the node.</summary>
+ <returns>The value of the node. For <see langword="XmlEntityReference" /> nodes, this property returns <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">Node is read-only.</exception>
+ <exception cref="T:System.InvalidOperationException">Setting the property.</exception>
+ </member>
+ <member name="M:System.Xml.XmlEntityReference.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlEntityReference.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlException">
+ <summary>Returns detailed information about the last exception.</summary>
+ </member>
+ <member name="M:System.Xml.XmlException.#ctor">
+ <summary>Initializes a new instance of the <see langword="XmlException" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XmlException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <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.</summary>
+ <param name="info">The <see langword="SerializationInfo" /> object containing all the properties of an <see langword="XmlException" />.</param>
+ <param name="context">The <see langword="StreamingContext" /> object containing the context information.</param>
+ </member>
+ <member name="M:System.Xml.XmlException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see langword="XmlException" /> class with a specified error message.</summary>
+ <param name="message">The error description.</param>
+ </member>
+ <member name="M:System.Xml.XmlException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see langword="XmlException" /> class.</summary>
+ <param name="message">The description of the error condition.</param>
+ <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>
+ </member>
+ <member name="M:System.Xml.XmlException.#ctor(System.String,System.Exception,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see langword="XmlException" /> class with the specified message, inner exception, line number, and line position.</summary>
+ <param name="message">The error description.</param>
+ <param name="innerException">The exception that is the cause of the current exception. This value can be <see langword="null" />.</param>
+ <param name="lineNumber">The line number indicating where the error occurred.</param>
+ <param name="linePosition">The line position indicating where the error occurred.</param>
+ </member>
+ <member name="M:System.Xml.XmlException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Streams all the <see langword="XmlException" /> properties into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class for the given <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
+ <param name="info">The <see langword="SerializationInfo" /> object.</param>
+ <param name="context">The <see langword="StreamingContext" /> object.</param>
+ </member>
+ <member name="P:System.Xml.XmlException.LineNumber">
+ <summary>Gets the line number indicating where the error occurred.</summary>
+ <returns>The line number indicating where the error occurred.</returns>
+ </member>
+ <member name="P:System.Xml.XmlException.LinePosition">
+ <summary>Gets the line position indicating where the error occurred.</summary>
+ <returns>The line position indicating where the error occurred.</returns>
+ </member>
+ <member name="P:System.Xml.XmlException.Message">
+ <summary>Gets a message describing the current exception.</summary>
+ <returns>The error message that explains the reason for the exception.</returns>
+ </member>
+ <member name="P:System.Xml.XmlException.SourceUri">
+ <summary>Gets the location of the XML file.</summary>
+ <returns>The source URI for the XML data. If there is no source URI, this property returns <see langword="null" />.</returns>
+ </member>
+ <member name="T:System.Xml.XmlImplementation">
+ <summary>Defines the context for a set of <see cref="T:System.Xml.XmlDocument" /> objects.</summary>
+ </member>
+ <member name="M:System.Xml.XmlImplementation.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlImplementation" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XmlImplementation.#ctor(System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlImplementation" /> class with the <see cref="T:System.Xml.XmlNameTable" /> specified.</summary>
+ <param name="nt">An <see cref="T:System.Xml.XmlNameTable" /> object.</param>
+ </member>
+ <member name="M:System.Xml.XmlImplementation.CreateDocument">
+ <summary>Creates a new <see cref="T:System.Xml.XmlDocument" />.</summary>
+ <returns>The new <see langword="XmlDocument" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.XmlImplementation.HasFeature(System.String,System.String)">
+ <summary>Tests if the Document Object Model (DOM) implementation implements a specific feature.</summary>
+ <param name="strFeature">The package name of the feature to test. This name is not case-sensitive.</param>
+ <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>
+ <returns>
+ <see langword="true" /> if the feature is implemented in the specified version; otherwise, <see langword="false" />.
+The following table shows the combinations that cause <see langword="HasFeature" /> to return <see langword="true" />.
+ strFeature
+
+ strVersion
+
+ XML
+
+ 1.0
+
+ XML
+
+ 2.0</returns>
+ </member>
+ <member name="T:System.Xml.XmlLinkedNode">
+ <summary>Gets the node immediately preceding or following this node.</summary>
+ </member>
+ <member name="P:System.Xml.XmlLinkedNode.NextSibling">
+ <summary>Gets the node immediately following this node.</summary>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> immediately following this node or <see langword="null" /> if one does not exist.</returns>
+ </member>
+ <member name="P:System.Xml.XmlLinkedNode.PreviousSibling">
+ <summary>Gets the node immediately preceding this node.</summary>
+ <returns>The preceding <see cref="T:System.Xml.XmlNode" /> or <see langword="null" /> if one does not exist.</returns>
+ </member>
+ <member name="T:System.Xml.XmlNamedNodeMap">
+ <summary>Represents a collection of nodes that can be accessed by name or index.</summary>
+ </member>
+ <member name="P:System.Xml.XmlNamedNodeMap.Count">
+ <summary>Gets the number of nodes in the <see langword="XmlNamedNodeMap" />.</summary>
+ <returns>The number of nodes.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamedNodeMap.GetEnumerator">
+ <summary>Provides support for the "foreach" style iteration over the collection of nodes in the <see langword="XmlNamedNodeMap" />.</summary>
+ <returns>An enumerator object.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamedNodeMap.GetNamedItem(System.String)">
+ <summary>Retrieves an <see cref="T:System.Xml.XmlNode" /> specified by name.</summary>
+ <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>
+ <returns>An <see langword="XmlNode" /> with the specified name or <see langword="null" /> if a matching node is not found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamedNodeMap.GetNamedItem(System.String,System.String)">
+ <summary>Retrieves a node with the matching <see cref="P:System.Xml.XmlNode.LocalName" /> and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <param name="localName">The local name of the node to retrieve.</param>
+ <param name="namespaceURI">The namespace Uniform Resource Identifier (URI) of the node to retrieve.</param>
+ <returns>An <see cref="T:System.Xml.XmlNode" /> with the matching local name and namespace URI or <see langword="null" /> if a matching node was not found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamedNodeMap.Item(System.Int32)">
+ <summary>Retrieves the node at the specified index in the <see langword="XmlNamedNodeMap" />.</summary>
+ <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>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> at the specified index. If <paramref name="index" /> is less than 0 or greater than or equal to the <see cref="P:System.Xml.XmlNamedNodeMap.Count" /> property, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamedNodeMap.RemoveNamedItem(System.String)">
+ <summary>Removes the node from the <see langword="XmlNamedNodeMap" />.</summary>
+ <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>
+ <returns>The <see langword="XmlNode" /> removed from this <see langword="XmlNamedNodeMap" /> or <see langword="null" /> if a matching node was not found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamedNodeMap.RemoveNamedItem(System.String,System.String)">
+ <summary>Removes a node with the matching <see cref="P:System.Xml.XmlNode.LocalName" /> and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <param name="localName">The local name of the node to remove.</param>
+ <param name="namespaceURI">The namespace URI of the node to remove.</param>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> removed or <see langword="null" /> if a matching node was not found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamedNodeMap.SetNamedItem(System.Xml.XmlNode)">
+ <summary>Adds an <see cref="T:System.Xml.XmlNode" /> using its <see cref="P:System.Xml.XmlNode.Name" /> property.</summary>
+ <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>
+ <returns>If the <paramref name="node" /> replaces an existing node with the same name, the old node is returned; otherwise, <see langword="null" /> is returned.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="node" /> was created from a different <see cref="T:System.Xml.XmlDocument" /> than the one that created the <see langword="XmlNamedNodeMap" />; or the <see langword="XmlNamedNodeMap" /> is read-only.</exception>
+ </member>
+ <member name="T:System.Xml.XmlNamespaceManager">
+ <summary>Resolves, adds, and removes namespaces to a collection and provides scope management for these namespaces.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.#ctor(System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlNamespaceManager" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="nameTable">The <see cref="T:System.Xml.XmlNameTable" /> to use.</param>
+ <exception cref="T:System.NullReferenceException">
+ <see langword="null" /> is passed to the constructor</exception>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.AddNamespace(System.String,System.String)">
+ <summary>Adds the given namespace to the collection.</summary>
+ <param name="prefix">The prefix to associate with the namespace being added. Use String.Empty to add a default namespace.
+ NoteIf the <see cref="T:System.Xml.XmlNamespaceManager" /> will be used for resolving namespaces in an XML Path Language (XPath) expression, a prefix must be specified. If an XPath expression does not include a prefix, it is assumed that the namespace Uniform Resource Identifier (URI) is the empty namespace. For more information about XPath expressions and the <see cref="T:System.Xml.XmlNamespaceManager" />, refer to the <see cref="M:System.Xml.XmlNode.SelectNodes(System.String)" /> and <see cref="M:System.Xml.XPath.XPathExpression.SetContext(System.Xml.XmlNamespaceManager)" /> methods.</param>
+ <param name="uri">The namespace to add.</param>
+ <exception cref="T:System.ArgumentException">The value for <paramref name="prefix" /> is "xml" or "xmlns".</exception>
+ <exception cref="T:System.ArgumentNullException">The value for <paramref name="prefix" /> or <paramref name="uri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNamespaceManager.DefaultNamespace">
+ <summary>Gets the namespace URI for the default namespace.</summary>
+ <returns>The namespace URI for the default namespace, or an empty string if there is no default namespace.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.GetEnumerator">
+ <summary>Returns an enumerator to use to iterate through the namespaces in the <see cref="T:System.Xml.XmlNamespaceManager" />.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator" /> containing the prefixes stored by the <see cref="T:System.Xml.XmlNamespaceManager" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.GetNamespacesInScope(System.Xml.XmlNamespaceScope)">
+ <summary>Gets a collection of namespace names keyed by prefix which can be used to enumerate the namespaces currently in scope.</summary>
+ <param name="scope">An enumeration value that specifies the type of namespace nodes to return.</param>
+ <returns>A collection of namespace and prefix pairs currently in scope.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.HasNamespace(System.String)">
+ <summary>Gets a value indicating whether the supplied prefix has a namespace defined for the current pushed scope.</summary>
+ <param name="prefix">The prefix of the namespace you want to find.</param>
+ <returns>
+ <see langword="true" /> if there is a namespace defined; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.LookupNamespace(System.String)">
+ <summary>Gets the namespace URI for the specified prefix.</summary>
+ <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass String.Empty.</param>
+ <returns>The namespace URI for <paramref name="prefix" /> or <see langword="null" /> if there is no mapped namespace. The returned string is atomized.
+ For more information on atomized strings, see the <see cref="T:System.Xml.XmlNameTable" /> class.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.LookupPrefix(System.String)">
+ <summary>Finds the prefix declared for the given namespace URI.</summary>
+ <param name="uri">The namespace to resolve for the prefix.</param>
+ <returns>The matching prefix. If there is no mapped prefix, the method returns String.Empty. If a null value is supplied, then <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNamespaceManager.NameTable">
+ <summary>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this object.</summary>
+ <returns>The <see cref="T:System.Xml.XmlNameTable" /> used by this object.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.PopScope">
+ <summary>Pops a namespace scope off the stack.</summary>
+ <returns>
+ <see langword="true" /> if there are namespace scopes left on the stack; <see langword="false" /> if there are no more namespaces to pop.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.PushScope">
+ <summary>Pushes a namespace scope onto the stack.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNamespaceManager.RemoveNamespace(System.String,System.String)">
+ <summary>Removes the given namespace for the given prefix.</summary>
+ <param name="prefix">The prefix for the namespace</param>
+ <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.</param>
+ <exception cref="T:System.ArgumentNullException">The value of <paramref name="prefix" /> or <paramref name="uri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.Xml.XmlNamespaceScope">
+ <summary>Defines the namespace scope.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNamespaceScope.All">
+ <summary>All namespaces defined in the scope of the current node. This includes the xmlns:xml namespace which is always declared implicitly. The order of the namespaces returned is not defined.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNamespaceScope.ExcludeXml">
+ <summary>All namespaces defined in the scope of the current node, excluding the xmlns:xml namespace, which is always declared implicitly. The order of the namespaces returned is not defined.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNamespaceScope.Local">
+ <summary>All namespaces that are defined locally at the current node.</summary>
+ </member>
+ <member name="T:System.Xml.XmlNameTable">
+ <summary>Table of atomized string objects.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNameTable.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlNameTable" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNameTable.Add(System.Char[],System.Int32,System.Int32)">
+ <summary>When overridden in a derived class, atomizes the specified string and adds it to the <see langword="XmlNameTable" />.</summary>
+ <param name="array">The character array containing the name to add.</param>
+ <param name="offset">Zero-based index into the array specifying the first character of the name.</param>
+ <param name="length">The number of characters in the name.</param>
+ <returns>The new atomized string or the existing one if it already exists. If length is zero, String.Empty is returned.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">0 &gt; <paramref name="offset" />
+ -or-
+ <paramref name="offset" /> &gt;= <paramref name="array" />.Length
+ -or-
+ <paramref name="length" /> &gt; <paramref name="array" />.Length
+ The above conditions do not cause an exception to be thrown if <paramref name="length" /> =0.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="length" /> &lt; 0.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNameTable.Add(System.String)">
+ <summary>When overridden in a derived class, atomizes the specified string and adds it to the <see langword="XmlNameTable" />.</summary>
+ <param name="array">The name to add.</param>
+ <returns>The new atomized string or the existing one if it already exists.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNameTable.Get(System.Char[],System.Int32,System.Int32)">
+ <summary>When overridden in a derived class, gets the atomized string containing the same characters as the specified range of characters in the given array.</summary>
+ <param name="array">The character array containing the name to look up.</param>
+ <param name="offset">The zero-based index into the array specifying the first character of the name.</param>
+ <param name="length">The number of characters in the name.</param>
+ <returns>The atomized string or <see langword="null" /> if the string has not already been atomized. If <paramref name="length" /> is zero, String.Empty is returned.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">0 &gt; <paramref name="offset" />
+ -or-
+ <paramref name="offset" /> &gt;= <paramref name="array" />.Length
+ -or-
+ <paramref name="length" /> &gt; <paramref name="array" />.Length
+ The above conditions do not cause an exception to be thrown if <paramref name="length" /> =0.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="length" /> &lt; 0.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNameTable.Get(System.String)">
+ <summary>When overridden in a derived class, gets the atomized string containing the same value as the specified string.</summary>
+ <param name="array">The name to look up.</param>
+ <returns>The atomized string or <see langword="null" /> if the string has not already been atomized.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.Xml.XmlNode">
+ <summary>Represents a single node in the XML document.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNode.AppendChild(System.Xml.XmlNode)">
+ <summary>Adds the specified node to the end of the list of child nodes, of this node.</summary>
+ <param name="newChild">The node to add. All the contents of the node to be added are moved into the specified location.</param>
+ <returns>The node added.</returns>
+ <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ This node is read-only.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNode.Attributes">
+ <summary>Gets an <see cref="T:System.Xml.XmlAttributeCollection" /> containing the attributes of this node.</summary>
+ <returns>An <see langword="XmlAttributeCollection" /> containing the attributes of the node.
+ If the node is of type XmlNodeType.Element, the attributes of the node are returned. Otherwise, this property returns <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.BaseURI">
+ <summary>Gets the base URI of the current node.</summary>
+ <returns>The location from which the node was loaded or String.Empty if the node has no base URI.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.ChildNodes">
+ <summary>Gets all the child nodes of the node.</summary>
+ <returns>An object that contains all the child nodes of the node.
+ If there are no child nodes, this property returns an empty <see cref="T:System.Xml.XmlNodeList" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.Clone">
+ <summary>Creates a duplicate of this node.</summary>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of the node, when overridden in a derived class.</summary>
+ <param name="deep">
+ <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
+ <returns>The cloned node.</returns>
+ <exception cref="T:System.InvalidOperationException">Calling this method on a node type that cannot be cloned.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.CreateNavigator">
+ <summary>Creates an <see cref="T:System.Xml.XPath.XPathNavigator" /> for navigating this object.</summary>
+ <returns>An <see langword="XPathNavigator" /> object used to navigate the node. The <see langword="XPathNavigator" /> is positioned on the node from which the method was called. It is not positioned on the root of the document.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.FirstChild">
+ <summary>Gets the first child of the node.</summary>
+ <returns>The first child of the node. If there is no such node, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.GetEnumerator">
+ <summary>Gets an enumerator that iterates through the child nodes in the current node.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the child nodes in the current node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.GetNamespaceOfPrefix(System.String)">
+ <summary>Looks up the closest xmlns declaration for the given prefix that is in scope for the current node and returns the namespace URI in the declaration.</summary>
+ <param name="prefix">The prefix whose namespace URI you want to find.</param>
+ <returns>The namespace URI of the specified prefix.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.GetPrefixOfNamespace(System.String)">
+ <summary>Looks up the closest xmlns declaration for the given namespace URI that is in scope for the current node and returns the prefix defined in that declaration.</summary>
+ <param name="namespaceURI">The namespace URI whose prefix you want to find.</param>
+ <returns>The prefix for the specified namespace URI.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.HasChildNodes">
+ <summary>Gets a value indicating whether this node has any child nodes.</summary>
+ <returns>
+ <see langword="true" /> if the node has child nodes; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.InnerText">
+ <summary>Gets or sets the concatenated values of the node and all its child nodes.</summary>
+ <returns>The concatenated values of the node and all its child nodes.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.InnerXml">
+ <summary>Gets or sets the markup representing only the child nodes of this node.</summary>
+ <returns>The markup of the child nodes of this node.
+ <see langword="InnerXml" /> does not return default attributes.</returns>
+ <exception cref="T:System.InvalidOperationException">Setting this property on a node that cannot have child nodes.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML specified when setting this property is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.InsertAfter(System.Xml.XmlNode,System.Xml.XmlNode)">
+ <summary>Inserts the specified node immediately after the specified reference node.</summary>
+ <param name="newChild">The node to insert.</param>
+ <param name="refChild">The reference node. <paramref name="newChild" /> is placed after <paramref name="refChild" />.</param>
+ <returns>The node being inserted.</returns>
+ <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ The <paramref name="refChild" /> is not a child of this node.
+ This node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.InsertBefore(System.Xml.XmlNode,System.Xml.XmlNode)">
+ <summary>Inserts the specified node immediately before the specified reference node.</summary>
+ <param name="newChild">The node to insert.</param>
+ <param name="refChild">The reference node. <paramref name="newChild" /> is placed before this node.</param>
+ <returns>The node being inserted.</returns>
+ <exception cref="T:System.InvalidOperationException">The current node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ The <paramref name="refChild" /> is not a child of this node.
+ This node is read-only.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNode.IsReadOnly">
+ <summary>Gets a value indicating whether the node is read-only.</summary>
+ <returns>
+ <see langword="true" /> if the node is read-only; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.Item(System.String)">
+ <summary>Gets the first child element with the specified <see cref="P:System.Xml.XmlNode.Name" />.</summary>
+ <param name="name">The qualified name of the element to retrieve.</param>
+ <returns>The first <see cref="T:System.Xml.XmlElement" /> that matches the specified name. It returns a null reference (<see langword="Nothing" /> in Visual Basic) if there is no match.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.Item(System.String,System.String)">
+ <summary>Gets the first child element with the specified <see cref="P:System.Xml.XmlNode.LocalName" /> and <see cref="P:System.Xml.XmlNode.NamespaceURI" />.</summary>
+ <param name="localname">The local name of the element.</param>
+ <param name="ns">The namespace URI of the element.</param>
+ <returns>The first <see cref="T:System.Xml.XmlElement" /> with the matching <paramref name="localname" /> and <paramref name="ns" />. . It returns a null reference (<see langword="Nothing" /> in Visual Basic) if there is no match.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.LastChild">
+ <summary>Gets the last child of the node.</summary>
+ <returns>The last child of the node. If there is no such node, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.LocalName">
+ <summary>Gets the local name of the node, when overridden in a derived class.</summary>
+ <returns>The name of the node with the prefix removed. For example, <see langword="LocalName" /> is book for the element &lt;bk:book&gt;.
+ The name returned is dependent on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node:
+ Type
+
+ Name
+
+ Attribute
+
+ The local name of the attribute.
+
+ CDATA
+
+ #cdata-section
+
+ Comment
+
+ #comment
+
+ Document
+
+ #document
+
+ DocumentFragment
+
+ #document-fragment
+
+ DocumentType
+
+ The document type name.
+
+ Element
+
+ The local name of the element.
+
+ Entity
+
+ The name of the entity.
+
+ EntityReference
+
+ The name of the entity referenced.
+
+ Notation
+
+ The notation name.
+
+ ProcessingInstruction
+
+ The target of the processing instruction.
+
+ Text
+
+ #text
+
+ Whitespace
+
+ #whitespace
+
+ SignificantWhitespace
+
+ #significant-whitespace
+
+ XmlDeclaration
+
+ #xml-declaration</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.Name">
+ <summary>Gets the qualified name of the node, when overridden in a derived class.</summary>
+ <returns>The qualified name of the node. The name returned is dependent on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node:
+ Type
+
+ Name
+
+ Attribute
+
+ The qualified name of the attribute.
+
+ CDATA
+
+ #cdata-section
+
+ Comment
+
+ #comment
+
+ Document
+
+ #document
+
+ DocumentFragment
+
+ #document-fragment
+
+ DocumentType
+
+ The document type name.
+
+ Element
+
+ The qualified name of the element.
+
+ Entity
+
+ The name of the entity.
+
+ EntityReference
+
+ The name of the entity referenced.
+
+ Notation
+
+ The notation name.
+
+ ProcessingInstruction
+
+ The target of the processing instruction.
+
+ Text
+
+ #text
+
+ Whitespace
+
+ #whitespace
+
+ SignificantWhitespace
+
+ #significant-whitespace
+
+ XmlDeclaration
+
+ #xml-declaration</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.NamespaceURI">
+ <summary>Gets the namespace URI of this node.</summary>
+ <returns>The namespace URI of this node. If there is no namespace URI, this property returns String.Empty.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.NextSibling">
+ <summary>Gets the node immediately following this node.</summary>
+ <returns>The next <see langword="XmlNode" />. If there is no next node, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.NodeType">
+ <summary>Gets the type of the current node, when overridden in a derived class.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlNodeType" /> values.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.Normalize">
+ <summary>Puts all XmlText nodes in the full depth of the sub-tree underneath this XmlNode into a "normal" form where only markup (that is, tags, comments, processing instructions, CDATA sections, and entity references) separates XmlText nodes, that is, there are no adjacent XmlText nodes.</summary>
+ </member>
+ <member name="P:System.Xml.XmlNode.OuterXml">
+ <summary>Gets the markup containing this node and all its child nodes.</summary>
+ <returns>The markup containing this node and all its child nodes.
+ <see langword="OuterXml" /> does not return default attributes.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.OwnerDocument">
+ <summary>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</summary>
+ <returns>The <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.
+ If the node is an <see cref="T:System.Xml.XmlDocument" /> (NodeType equals XmlNodeType.Document), this property returns <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.ParentNode">
+ <summary>Gets the parent of this node (for nodes that can have parents).</summary>
+ <returns>The <see langword="XmlNode" /> that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is <see langword="null" />. For all other nodes, the value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node. The following table describes the possible return values for the <see langword="ParentNode" /> property.
+ NodeType
+
+ Return Value of ParentNode
+
+ Attribute, Document, DocumentFragment, Entity, Notation
+
+ Returns <see langword="null" />; these nodes do not have parents.
+
+ CDATA
+
+ Returns the element or entity reference containing the CDATA section.
+
+ Comment
+
+ Returns the element, entity reference, document type, or document containing the comment.
+
+ DocumentType
+
+ Returns the document node.
+
+ Element
+
+ Returns the parent node of the element. If the element is the root node in the tree, the parent is the document node.
+
+ EntityReference
+
+ Returns the element, attribute, or entity reference containing the entity reference.
+
+ ProcessingInstruction
+
+ Returns the document, element, document type, or entity reference containing the processing instruction.
+
+ Text
+
+ Returns the parent element, attribute, or entity reference containing the text node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.Prefix">
+ <summary>Gets or sets the namespace prefix of this node.</summary>
+ <returns>The namespace prefix of this node. For example, <see langword="Prefix" /> is bk for the element &lt;bk:book&gt;. If there is no prefix, this property returns String.Empty.</returns>
+ <exception cref="T:System.ArgumentException">This node is read-only.</exception>
+ <exception cref="T:System.Xml.XmlException">The specified prefix contains an invalid character.
+ The specified prefix is malformed.
+ The specified prefix is "xml" and the namespaceURI of this node is different from "http://www.w3.org/XML/1998/namespace".
+ This node is an attribute and the specified prefix is "xmlns" and the namespaceURI of this node is different from "http://www.w3.org/2000/xmlns/ ".
+ This node is an attribute and the qualifiedName of this node is "xmlns".</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.PrependChild(System.Xml.XmlNode)">
+ <summary>Adds the specified node to the beginning of the list of child nodes for this node.</summary>
+ <param name="newChild">The node to add. All the contents of the node to be added are moved into the specified location.</param>
+ <returns>The node added.</returns>
+ <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ This node is read-only.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNode.PreviousSibling">
+ <summary>Gets the node immediately preceding this node.</summary>
+ <returns>The preceding <see langword="XmlNode" />. If there is no preceding node, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.PreviousText">
+ <summary>Gets the text node that immediately precedes this node.</summary>
+ <returns>Returns <see cref="T:System.Xml.XmlNode" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.RemoveAll">
+ <summary>Removes all the child nodes and/or attributes of the current node.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNode.RemoveChild(System.Xml.XmlNode)">
+ <summary>Removes specified child node.</summary>
+ <param name="oldChild">The node being removed.</param>
+ <returns>The node removed.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="oldChild" /> is not a child of this node. Or this node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.ReplaceChild(System.Xml.XmlNode,System.Xml.XmlNode)">
+ <summary>Replaces the child node <paramref name="oldChild" /> with <paramref name="newChild" /> node.</summary>
+ <param name="newChild">The new node to put in the child list.</param>
+ <param name="oldChild">The node being replaced in the list.</param>
+ <returns>The node replaced.</returns>
+ <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.
+ The <paramref name="newChild" /> is an ancestor of this node.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.
+ This node is read-only.
+ The <paramref name="oldChild" /> is not a child of this node.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNode.SchemaInfo">
+ <summary>Gets the post schema validation infoset that has been assigned to this node as a result of schema validation.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.IXmlSchemaInfo" /> object containing the post schema validation infoset of this node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.SelectNodes(System.String)">
+ <summary>Selects a list of nodes matching the XPath expression.</summary>
+ <param name="xpath">The XPath expression.</param>
+ <returns>An <see cref="T:System.Xml.XmlNodeList" /> containing a collection of nodes matching the XPath query.</returns>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression contains a prefix. See XPath Examples.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.SelectNodes(System.String,System.Xml.XmlNamespaceManager)">
+ <summary>Selects a list of nodes matching the XPath expression. Any prefixes found in the XPath expression are resolved using the supplied <see cref="T:System.Xml.XmlNamespaceManager" />.</summary>
+ <param name="xpath">The XPath expression. See XPath Examples.</param>
+ <param name="nsmgr">An <see cref="T:System.Xml.XmlNamespaceManager" /> to use for resolving namespaces for prefixes in the XPath expression.</param>
+ <returns>An <see cref="T:System.Xml.XmlNodeList" /> containing a collection of nodes matching the XPath query.</returns>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression contains a prefix which is not defined in the <see langword="XmlNamespaceManager" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.SelectSingleNode(System.String)">
+ <summary>Selects the first <see langword="XmlNode" /> that matches the XPath expression.</summary>
+ <param name="xpath">The XPath expression. See XPath Examples.</param>
+ <returns>The first <see langword="XmlNode" /> that matches the XPath query or <see langword="null" /> if no matching node is found.</returns>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression contains a prefix.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.SelectSingleNode(System.String,System.Xml.XmlNamespaceManager)">
+ <summary>Selects the first <see langword="XmlNode" /> that matches the XPath expression. Any prefixes found in the XPath expression are resolved using the supplied <see cref="T:System.Xml.XmlNamespaceManager" />.</summary>
+ <param name="xpath">The XPath expression. See XPath Examples.</param>
+ <param name="nsmgr">An <see cref="T:System.Xml.XmlNamespaceManager" /> to use for resolving namespaces for prefixes in the XPath expression.</param>
+ <returns>The first <see langword="XmlNode" /> that matches the XPath query or <see langword="null" /> if no matching node is found.</returns>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression contains a prefix which is not defined in the <see langword="XmlNamespaceManager" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.Supports(System.String,System.String)">
+ <summary>Tests if the DOM implementation implements a specific feature.</summary>
+ <param name="feature">The package name of the feature to test. This name is not case-sensitive.</param>
+ <param name="version">The version number of the package name to test. If the version is not specified (null), supporting any version of the feature causes the method to return true.</param>
+ <returns>
+ <see langword="true" /> if the feature is implemented in the specified version; otherwise, <see langword="false" />. The following table describes the combinations that return <see langword="true" />.
+ Feature
+
+ Version
+
+ XML
+
+ 1.0
+
+ XML
+
+ 2.0</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.System#Collections#IEnumerable#GetEnumerator">
+ <summary>For a description of this member, see <see cref="M:System.Xml.XmlNode.GetEnumerator" />.</summary>
+ <returns>An enumerator for the collection.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNode.System#ICloneable#Clone">
+ <summary>For a description of this member, see <see cref="M:System.Xml.XmlNode.Clone" />.</summary>
+ <returns>A copy of the node from which it is called.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNode.Value">
+ <summary>Gets or sets the value of the node.</summary>
+ <returns>The value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node:
+ Type
+
+ Value
+
+ Attribute
+
+ The value of the attribute.
+
+ CDATASection
+
+ The content of the CDATA Section.
+
+ Comment
+
+ The content of the comment.
+
+ Document
+
+ <see langword="null" />.
+
+ DocumentFragment
+
+ <see langword="null" />.
+
+ DocumentType
+
+ <see langword="null" />.
+
+ Element
+
+ <see langword="null" />. You can use the <see cref="P:System.Xml.XmlElement.InnerText" /> or <see cref="P:System.Xml.XmlElement.InnerXml" /> properties to access the value of the element node.
+
+ Entity
+
+ <see langword="null" />.
+
+ EntityReference
+
+ <see langword="null" />.
+
+ Notation
+
+ <see langword="null" />.
+
+ ProcessingInstruction
+
+ The entire content excluding the target.
+
+ Text
+
+ The content of the text node.
+
+ SignificantWhitespace
+
+ The white space characters. White space can consist of one or more space characters, carriage returns, line feeds, or tabs.
+
+ Whitespace
+
+ The white space characters. White space can consist of one or more space characters, carriage returns, line feeds, or tabs.
+
+ XmlDeclaration
+
+ The content of the declaration (that is, everything between &lt;?xml and ?&gt;).</returns>
+ <exception cref="T:System.ArgumentException">Setting the value of a node that is read-only.</exception>
+ <exception cref="T:System.InvalidOperationException">Setting the value of a node that is not supposed to have a value (for example, an Element node).</exception>
+ </member>
+ <member name="M:System.Xml.XmlNode.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the child nodes of the node to the specified <see cref="T:System.Xml.XmlWriter" />, when overridden in a derived class.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlNode.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the current node to the specified <see cref="T:System.Xml.XmlWriter" />, when overridden in a derived class.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlNodeChangedAction">
+ <summary>Specifies the type of node change.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeChangedAction.Change">
+ <summary>A node value is being changed.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeChangedAction.Insert">
+ <summary>A node is being inserted in the tree.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeChangedAction.Remove">
+ <summary>A node is being removed from the tree.</summary>
+ </member>
+ <member name="T:System.Xml.XmlNodeChangedEventArgs">
+ <summary>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.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNodeChangedEventArgs.#ctor(System.Xml.XmlNode,System.Xml.XmlNode,System.Xml.XmlNode,System.String,System.String,System.Xml.XmlNodeChangedAction)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlNodeChangedEventArgs" /> class.</summary>
+ <param name="node">The <see cref="T:System.Xml.XmlNode" /> that generated the event.</param>
+ <param name="oldParent">The old parent <see cref="T:System.Xml.XmlNode" /> of the <see cref="T:System.Xml.XmlNode" /> that generated the event.</param>
+ <param name="newParent">The new parent <see cref="T:System.Xml.XmlNode" /> of the <see cref="T:System.Xml.XmlNode" /> that generated the event.</param>
+ <param name="oldValue">The old value of the <see cref="T:System.Xml.XmlNode" /> that generated the event.</param>
+ <param name="newValue">The new value of the <see cref="T:System.Xml.XmlNode" /> that generated the event.</param>
+ <param name="action">The <see cref="T:System.Xml.XmlNodeChangedAction" />.</param>
+ </member>
+ <member name="P:System.Xml.XmlNodeChangedEventArgs.Action">
+ <summary>Gets a value indicating what type of node change event is occurring.</summary>
+ <returns>One of the enumeration values that describes the node change event. The <see langword="Action" /> value does not differentiate between when the event occurred (before or after). You can create separate event handlers to handle both instances.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeChangedEventArgs.NewParent">
+ <summary>Gets the value of the <see cref="P:System.Xml.XmlNode.ParentNode" /> after the operation completes.</summary>
+ <returns>The value of the <see langword="ParentNode" /> after the operation completes. This property returns <see langword="null" /> if the node is being removed.
+
+ For attribute nodes this property returns the <see cref="P:System.Xml.XmlAttribute.OwnerElement" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeChangedEventArgs.NewValue">
+ <summary>Gets the new value of the node.</summary>
+ <returns>The new value of the node. This property returns <see langword="null" /> if the node is neither an attribute nor a text node, or if the node is being removed.
+ If called in a <see cref="E:System.Xml.XmlDocument.NodeChanging" /> event, <see langword="NewValue" /> returns the value of the node if the change is successful. If called in a <see cref="E:System.Xml.XmlDocument.NodeChanged" /> event, <see langword="NewValue" /> returns the current value of the node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeChangedEventArgs.Node">
+ <summary>Gets the <see cref="T:System.Xml.XmlNode" /> that is being added, removed or changed.</summary>
+ <returns>The <see langword="XmlNode" /> that is being added, removed or changed; this property never returns <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeChangedEventArgs.OldParent">
+ <summary>Gets the value of the <see cref="P:System.Xml.XmlNode.ParentNode" /> before the operation began.</summary>
+ <returns>The value of the <see langword="ParentNode" /> before the operation began. This property returns <see langword="null" /> if the node did not have a parent.
+
+ For attribute nodes this property returns the <see cref="P:System.Xml.XmlAttribute.OwnerElement" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeChangedEventArgs.OldValue">
+ <summary>Gets the original value of the node.</summary>
+ <returns>The original value of the node. This property returns <see langword="null" /> if the node is neither an attribute nor a text node, or if the node is being inserted.
+ If called in a <see cref="E:System.Xml.XmlDocument.NodeChanging" /> event, <see langword="OldValue" /> returns the current value of the node that will be replaced if the change is successful. If called in a <see cref="E:System.Xml.XmlDocument.NodeChanged" /> event, <see langword="OldValue" /> returns the value of node prior to the change.</returns>
+ </member>
+ <member name="T:System.Xml.XmlNodeChangedEventHandler">
+ <summary>Represents the method that handles <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.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">An <see cref="T:System.Xml.XmlNodeChangedEventArgs" /> containing the event data.</param>
+ </member>
+ <member name="T:System.Xml.XmlNodeList">
+ <summary>Represents an ordered collection of nodes.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNodeList.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlNodeList" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.XmlNodeList.Count">
+ <summary>Gets the number of nodes in the <see langword="XmlNodeList" />.</summary>
+ <returns>The number of nodes in the <see langword="XmlNodeList" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeList.GetEnumerator">
+ <summary>Gets an enumerator that iterates through the collection of nodes.</summary>
+ <returns>An enumerator used to iterate through the collection of nodes.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeList.Item(System.Int32)">
+ <summary>Retrieves a node at the given index.</summary>
+ <param name="index">The zero-based index into the list of nodes.</param>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> with the specified index in the collection. If <paramref name="index" /> is greater than or equal to the number of nodes in the list, this returns <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeList.ItemOf(System.Int32)">
+ <summary>Gets a node at the given index.</summary>
+ <param name="i">The zero-based index into the list of nodes.</param>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> with the specified index in the collection. If index is greater than or equal to the number of nodes in the list, this returns <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeList.PrivateDisposeNodeList">
+ <summary>Disposes resources in the node list privately.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNodeList.System#IDisposable#Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.Xml.XmlNodeList" /> class.</summary>
+ </member>
+ <member name="T:System.Xml.XmlNodeOrder">
+ <summary>Describes the document order of a node compared to a second node.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeOrder.After">
+ <summary>The current node of this navigator is after the current node of the supplied navigator.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeOrder.Before">
+ <summary>The current node of this navigator is before the current node of the supplied navigator.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeOrder.Same">
+ <summary>The two navigators are positioned on the same node.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeOrder.Unknown">
+ <summary>The node positions cannot be determined in document order, relative to each other. This could occur if the two nodes reside in different trees.</summary>
+ </member>
+ <member name="T:System.Xml.XmlNodeReader">
+ <summary>Represents a reader that provides fast, non-cached forward only access to XML data in an <see cref="T:System.Xml.XmlNode" />.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.#ctor(System.Xml.XmlNode)">
+ <summary>Creates an instance of the <see langword="XmlNodeReader" /> class using the specified <see cref="T:System.Xml.XmlNode" />.</summary>
+ <param name="node">The <see langword="XmlNode" /> you want to read.</param>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.AttributeCount">
+ <summary>Gets the number of attributes on the current node.</summary>
+ <returns>The number of attributes on the current node. This number includes default attributes.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.BaseURI">
+ <summary>Gets the base URI of the current node.</summary>
+ <returns>The base URI of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.CanReadBinaryContent">
+ <summary>Gets a value indicating whether the <see cref="T:System.Xml.XmlNodeReader" /> implements the binary content read methods.</summary>
+ <returns>
+ <see langword="true" /> if the binary content read methods are implemented; otherwise <see langword="false" />. The <see cref="T:System.Xml.XmlNodeReader" /> class always returns <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.CanResolveEntity">
+ <summary>Gets a value indicating whether this reader can parse and resolve entities.</summary>
+ <returns>
+ <see langword="true" /> if the reader can parse and resolve entities; otherwise, <see langword="false" />. <see langword="XmlNodeReader" /> always returns <see langword="true" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.Close">
+ <summary>Changes the <see cref="P:System.Xml.XmlNodeReader.ReadState" /> to <see langword="Closed" />.</summary>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.Depth">
+ <summary>Gets the depth of the current node in the XML document.</summary>
+ <returns>The depth of the current node in the XML document.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.EOF">
+ <summary>Gets a value indicating whether the reader is positioned at the end of the stream.</summary>
+ <returns>
+ <see langword="true" /> if the reader is positioned at the end of the stream; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.GetAttribute(System.Int32)">
+ <summary>Gets the value of the attribute with the specified index.</summary>
+ <param name="attributeIndex">The index of the attribute. The index is zero-based. (The first attribute has index 0.)</param>
+ <returns>The value of the specified attribute.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="i" /> parameter is less than 0 or greater than or equal to <see cref="P:System.Xml.XmlNodeReader.AttributeCount" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.GetAttribute(System.String)">
+ <summary>Gets the value of the attribute with the specified name.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.GetAttribute(System.String,System.String)">
+ <summary>Gets the value of the attribute with the specified local name and namespace URI.</summary>
+ <param name="name">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.HasAttributes">
+ <summary>Gets a value indicating whether the current node has any attributes.</summary>
+ <returns>
+ <see langword="true" /> if the current node has attributes; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.HasValue">
+ <summary>Gets a value indicating whether the current node can have a <see cref="P:System.Xml.XmlNodeReader.Value" />.</summary>
+ <returns>
+ <see langword="true" /> if the node on which the reader is currently positioned can have a <see langword="Value" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.IsDefault">
+ <summary>Gets a value indicating whether the current node is an attribute that was generated from the default value defined in the document type definition (DTD) or schema.</summary>
+ <returns>
+ <see langword="true" /> if the current node is an attribute whose value was generated from the default value defined in the DTD or schema; <see langword="false" /> if the attribute value was explicitly set.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.IsEmptyElement">
+ <summary>Gets a value indicating whether the current node is an empty element (for example, <c>&lt;MyElement/&gt;</c>).</summary>
+ <returns>
+ <see langword="true" /> if the current node is an element (<see cref="P:System.Xml.XmlNodeReader.NodeType" /> equals <see langword="XmlNodeType.Element" />) and it ends with <c>/&gt;</c>; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.LocalName">
+ <summary>Gets the local name of the current node.</summary>
+ <returns>The name of the current node with the prefix removed. For example, <see langword="LocalName" /> is <see langword="book" /> for the element <c>&lt;bk:book&gt;</c>.
+ For node types that do not have a name (like <see langword="Text" />, <see langword="Comment" />, and so on), this property returns String.Empty.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.LookupNamespace(System.String)">
+ <summary>Resolves a namespace prefix in the current element's scope.</summary>
+ <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>
+ <returns>The namespace URI to which the prefix maps or <see langword="null" /> if no matching prefix is found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.MoveToAttribute(System.Int32)">
+ <summary>Moves to the attribute with the specified index.</summary>
+ <param name="attributeIndex">The index of the attribute.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="i" /> parameter is less than 0 or greater than or equal to <see cref="P:System.Xml.XmlReader.AttributeCount" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.MoveToAttribute(System.String)">
+ <summary>Moves to the attribute with the specified name.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>
+ <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the reader's position does not change.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.MoveToAttribute(System.String,System.String)">
+ <summary>Moves to the attribute with the specified local name and namespace URI.</summary>
+ <param name="name">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>
+ <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the reader's position does not change.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.MoveToElement">
+ <summary>Moves to the element that contains the current attribute node.</summary>
+ <returns>
+ <see langword="true" /> if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); <see langword="false" /> if the reader is not positioned on an attribute (the position of the reader does not change).</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.MoveToFirstAttribute">
+ <summary>Moves to the first attribute.</summary>
+ <returns>
+ <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).</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.MoveToNextAttribute">
+ <summary>Moves to the next attribute.</summary>
+ <returns>
+ <see langword="true" /> if there is a next attribute; <see langword="false" /> if there are no more attributes.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.Name">
+ <summary>Gets the qualified name of the current node.</summary>
+ <returns>The qualified name of the current node. For example, <see langword="Name" /> is <see langword="bk:book" /> for the element <c>&lt;bk:book&gt;</c>.
+ The name returned is dependent on the <see cref="P:System.Xml.XmlNodeReader.NodeType" /> of the node. The following node types return the listed values. All other node types return an empty string.
+ Node Type
+
+ Name
+
+ <see langword="Attribute" /> The name of the attribute.
+
+ <see langword="DocumentType" /> The document type name.
+
+ <see langword="Element" /> The tag name.
+
+ <see langword="EntityReference" /> The name of the entity referenced.
+
+ <see langword="ProcessingInstruction" /> The target of the processing instruction.
+
+ <see langword="XmlDeclaration" /> The literal string <see langword="xml" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.NamespaceURI">
+ <summary>Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.</summary>
+ <returns>The namespace URI of the current node; otherwise an empty string.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.NameTable">
+ <summary>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this implementation.</summary>
+ <returns>The <see langword="XmlNameTable" /> enabling you to get the atomized version of a string within the node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlNodeType" /> values representing the type of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.Prefix">
+ <summary>Gets the namespace prefix associated with the current node.</summary>
+ <returns>The namespace prefix associated with the current node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.Read">
+ <summary>Reads the next node from the stream.</summary>
+ <returns>
+ <see langword="true" /> if the next node was read successfully; <see langword="false" /> if there are no more nodes to read.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.ReadAttributeValue">
+ <summary>Parses the attribute value into one or more <see langword="Text" />, <see langword="EntityReference" />, or <see langword="EndEntity" /> nodes.</summary>
+ <returns>
+ <see langword="true" /> if there are nodes to return.
+<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.
+An empty attribute, such as, <c>misc=""</c>, returns <see langword="true" /> with a single node with a value of String.Empty.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.ReadContentAsBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the content and returns the Base64 decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <see cref="M:System.Xml.XmlNodeReader.ReadContentAsBase64(System.Byte[],System.Int32,System.Int32)" /> is not supported on the current node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.ReadContentAsBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the content and returns the BinHex decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <see cref="M:System.Xml.XmlNodeReader.ReadContentAsBinHex(System.Byte[],System.Int32,System.Int32)" /> is not supported on the current node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.ReadElementContentAsBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the element and decodes the Base64 content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not an element node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.Xml.XmlException">The element contains mixed content.</exception>
+ <exception cref="T:System.FormatException">The content cannot be converted to the requested type.</exception>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.ReadElementContentAsBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the element and decodes the BinHex content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not an element node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.Xml.XmlException">The element contains mixed content.</exception>
+ <exception cref="T:System.FormatException">The content cannot be converted to the requested type.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.ReadState">
+ <summary>Gets the state of the reader.</summary>
+ <returns>One of the <see cref="T:System.Xml.ReadState" /> values.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.ReadString">
+ <summary>Reads the contents of an element or text node as a string.</summary>
+ <returns>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 the reader is positioned on something other than an element or text node, or if there is no more text content to return in the current context.
+ <see langword="Note:" /> The text node can be either an element or an attribute text node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.ResolveEntity">
+ <summary>Resolves the entity reference for <see langword="EntityReference" /> nodes.</summary>
+ <exception cref="T:System.InvalidOperationException">The reader is not positioned on an <see langword="EntityReference" /> node.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.SchemaInfo">
+ <summary>Gets the schema information that has been assigned to the current node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.IXmlSchemaInfo" /> object containing the schema information for the current node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.Skip">
+ <summary>Skips the children of the current node.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.System#Xml#IXmlNamespaceResolver#GetNamespacesInScope(System.Xml.XmlNamespaceScope)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)" />.</summary>
+ <param name="scope">
+ <see cref="T:System.Xml.XmlNamespaceScope" /> object.</param>
+ <returns>
+ <see cref="T:System.Collections.IDictionary" /> object that contains the namespaces that are in scope.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.System#Xml#IXmlNamespaceResolver#LookupNamespace(System.String)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)" />.</summary>
+ <param name="prefix">
+ <see cref="T:System.String" /> that contains the namespace prefix.</param>
+ <returns>
+ <see cref="T:System.String" /> that contains the namespace name.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNodeReader.System#Xml#IXmlNamespaceResolver#LookupPrefix(System.String)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)" />.</summary>
+ <param name="namespaceName">
+ <see cref="T:System.String" /> object that identifies the namespace.</param>
+ <returns>
+ <see cref="T:System.String" /> object that contains the namespace prefix.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.Value">
+ <summary>Gets the text value of the current node.</summary>
+ <returns>The value returned depends on the <see cref="P:System.Xml.XmlNodeReader.NodeType" /> of the node. The following table lists node types that have a value to return. All other node types return String.Empty.
+ Node Type
+
+ Value
+
+ <see langword="Attribute" /> The value of the attribute.
+
+ <see langword="CDATA" /> The content of the CDATA section.
+
+ <see langword="Comment" /> The content of the comment.
+
+ <see langword="DocumentType" /> The internal subset.
+
+ <see langword="ProcessingInstruction" /> The entire content, excluding the target.
+
+ <see langword="SignificantWhitespace" /> The white space between markup in a mixed content model.
+
+ <see langword="Text" /> The content of the text node.
+
+ <see langword="Whitespace" /> The white space between markup.
+
+ <see langword="XmlDeclaration" /> The content of the declaration.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.XmlLang">
+ <summary>Gets the current <see langword="xml:lang" /> scope.</summary>
+ <returns>The current <see langword="xml:lang" /> scope.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNodeReader.XmlSpace">
+ <summary>Gets the current <see langword="xml:space" /> scope.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlSpace" /> values. If no <see langword="xml:space" /> scope exists, this property defaults to <see langword="XmlSpace.None" />.</returns>
+ </member>
+ <member name="T:System.Xml.XmlNodeType">
+ <summary>Specifies the type of node.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.Attribute">
+ <summary>An attribute (for example, <c>id='123'</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.CDATA">
+ <summary>A CDATA section (for example, <c>&lt;![CDATA[my escaped text]]&gt;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.Comment">
+ <summary>A comment (for example, <c>&lt;!-- my comment --&gt;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.Document">
+ <summary>A document object that, as the root of the document tree, provides access to the entire XML document.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.DocumentFragment">
+ <summary>A document fragment.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.DocumentType">
+ <summary>The document type declaration, indicated by the following tag (for example, <c>&lt;!DOCTYPE...&gt;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.Element">
+ <summary>An element (for example, <c>&lt;item&gt;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.EndElement">
+ <summary>An end element tag (for example, <c>&lt;/item&gt;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.EndEntity">
+ <summary>Returned when <see langword="XmlReader" /> gets to the end of the entity replacement as a result of a call to <see cref="M:System.Xml.XmlReader.ResolveEntity" />.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.Entity">
+ <summary>An entity declaration (for example, <c>&lt;!ENTITY...&gt;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.EntityReference">
+ <summary>A reference to an entity (for example, <c>&amp;num;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.None">
+ <summary>This is returned by the <see cref="T:System.Xml.XmlReader" /> if a <see langword="Read" /> method has not been called.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.Notation">
+ <summary>A notation in the document type declaration (for example, <c>&lt;!NOTATION...&gt;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.ProcessingInstruction">
+ <summary>A processing instruction (for example, <c>&lt;?pi test?&gt;</c> ).</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.SignificantWhitespace">
+ <summary>White space between markup in a mixed content model or white space within the <c>xml:space="preserve"</c> scope.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.Text">
+ <summary>The text content of a node.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.Whitespace">
+ <summary>White space between markup.</summary>
+ </member>
+ <member name="F:System.Xml.XmlNodeType.XmlDeclaration">
+ <summary>The XML declaration (for example, <c>&lt;?xml version='1.0'?&gt;</c> ).</summary>
+ </member>
+ <member name="T:System.Xml.XmlNotation">
+ <summary>Represents a notation declaration, such as &lt;!NOTATION... &gt;.</summary>
+ </member>
+ <member name="M:System.Xml.XmlNotation.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node. Notation nodes cannot be cloned. Calling this method on an <see cref="T:System.Xml.XmlNotation" /> object throws an exception.</summary>
+ <param name="deep">
+ <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
+ <returns>A <see cref="T:System.Xml.XmlNode" /> copy of the node from which the method is called.</returns>
+ <exception cref="T:System.InvalidOperationException">Notation nodes cannot be cloned. Calling this method on an <see cref="T:System.Xml.XmlNotation" /> object throws an exception.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNotation.InnerXml">
+ <summary>Gets the markup representing the children of this node.</summary>
+ <returns>For <see langword="XmlNotation" /> nodes, String.Empty is returned.</returns>
+ <exception cref="T:System.InvalidOperationException">Attempting to set the property.</exception>
+ </member>
+ <member name="P:System.Xml.XmlNotation.IsReadOnly">
+ <summary>Gets a value indicating whether the node is read-only.</summary>
+ <returns>
+ <see langword="true" /> if the node is read-only; otherwise, <see langword="false" />.
+Because <see langword="XmlNotation" /> nodes are read-only, this property always returns <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNotation.LocalName">
+ <summary>Gets the name of the current node without the namespace prefix.</summary>
+ <returns>For <see langword="XmlNotation" /> nodes, this property returns the name of the notation.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNotation.Name">
+ <summary>Gets the name of the current node.</summary>
+ <returns>The name of the notation.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNotation.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>The node type. For <see langword="XmlNotation" /> nodes, the value is XmlNodeType.Notation.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNotation.OuterXml">
+ <summary>Gets the markup representing this node and all its children.</summary>
+ <returns>For <see langword="XmlNotation" /> nodes, String.Empty is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNotation.PublicId">
+ <summary>Gets the value of the public identifier on the notation declaration.</summary>
+ <returns>The public identifier on the notation. If there is no public identifier, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlNotation.SystemId">
+ <summary>Gets the value of the system identifier on the notation declaration.</summary>
+ <returns>The system identifier on the notation. If there is no system identifier, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlNotation.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. This method has no effect on <see langword="XmlNotation" /> nodes.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlNotation.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />. This method has no effect on <see langword="XmlNotation" /> nodes.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlOutputMethod">
+ <summary>Specifies the method used to serialize the <see cref="T:System.Xml.XmlWriter" /> output.</summary>
+ </member>
+ <member name="F:System.Xml.XmlOutputMethod.AutoDetect">
+ <summary>Use the XSLT rules to choose between the <see cref="F:System.Xml.XmlOutputMethod.Xml" /> and <see cref="F:System.Xml.XmlOutputMethod.Html" /> output methods at runtime.</summary>
+ </member>
+ <member name="F:System.Xml.XmlOutputMethod.Html">
+ <summary>Serialize according to the HTML rules specified by XSLT.</summary>
+ </member>
+ <member name="F:System.Xml.XmlOutputMethod.Text">
+ <summary>Serialize text blocks only.</summary>
+ </member>
+ <member name="F:System.Xml.XmlOutputMethod.Xml">
+ <summary>Serialize according to the XML 1.0 rules.</summary>
+ </member>
+ <member name="T:System.Xml.XmlParserContext">
+ <summary>Provides all the context information required by the <see cref="T:System.Xml.XmlReader" /> to parse an XML fragment.</summary>
+ </member>
+ <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)">
+ <summary>Initializes a new instance of the <see langword="XmlParserContext" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />, <see cref="T:System.Xml.XmlNamespaceManager" />, base URI, <see langword="xml:lang" />, <see langword="xml:space" />, and document type values.</summary>
+ <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 about atomized strings, see <see cref="T:System.Xml.XmlNameTable" />.</param>
+ <param name="nsMgr">The <see cref="T:System.Xml.XmlNamespaceManager" /> to use for looking up namespace information, or <see langword="null" />.</param>
+ <param name="docTypeName">The name of the document type declaration.</param>
+ <param name="pubId">The public identifier.</param>
+ <param name="sysId">The system identifier.</param>
+ <param name="internalSubset">The internal DTD subset. The DTD subset is used for entity resolution, not for document validation.</param>
+ <param name="baseURI">The base URI for the XML fragment (the location from which the fragment was loaded).</param>
+ <param name="xmlLang">The <see langword="xml:lang" /> scope.</param>
+ <param name="xmlSpace">An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope.</param>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="nt" /> is not the same <see langword="XmlNameTable" /> used to construct <paramref name="nsMgr" />.</exception>
+ </member>
+ <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)">
+ <summary>Initializes a new instance of the <see langword="XmlParserContext" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />, <see cref="T:System.Xml.XmlNamespaceManager" />, base URI, <see langword="xml:lang" />, <see langword="xml:space" />, encoding, and document type values.</summary>
+ <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 about atomized strings, see <see cref="T:System.Xml.XmlNameTable" />.</param>
+ <param name="nsMgr">The <see cref="T:System.Xml.XmlNamespaceManager" /> to use for looking up namespace information, or <see langword="null" />.</param>
+ <param name="docTypeName">The name of the document type declaration.</param>
+ <param name="pubId">The public identifier.</param>
+ <param name="sysId">The system identifier.</param>
+ <param name="internalSubset">The internal DTD subset. The DTD is used for entity resolution, not for document validation.</param>
+ <param name="baseURI">The base URI for the XML fragment (the location from which the fragment was loaded).</param>
+ <param name="xmlLang">The <see langword="xml:lang" /> scope.</param>
+ <param name="xmlSpace">An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope.</param>
+ <param name="enc">An <see cref="T:System.Text.Encoding" /> object indicating the encoding setting.</param>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="nt" /> is not the same <see langword="XmlNameTable" /> used to construct <paramref name="nsMgr" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlParserContext.#ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.Xml.XmlSpace)">
+ <summary>Initializes a new instance of the <see langword="XmlParserContext" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />, <see cref="T:System.Xml.XmlNamespaceManager" />, <see langword="xml:lang" />, and <see langword="xml:space" /> values.</summary>
+ <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 about atomized strings, see <see cref="T:System.Xml.XmlNameTable" />.</param>
+ <param name="nsMgr">The <see cref="T:System.Xml.XmlNamespaceManager" /> to use for looking up namespace information, or <see langword="null" />.</param>
+ <param name="xmlLang">The <see langword="xml:lang" /> scope.</param>
+ <param name="xmlSpace">An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope.</param>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="nt" /> is not the same <see langword="XmlNameTable" /> used to construct <paramref name="nsMgr" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlParserContext.#ctor(System.Xml.XmlNameTable,System.Xml.XmlNamespaceManager,System.String,System.Xml.XmlSpace,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see langword="XmlParserContext" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />, <see cref="T:System.Xml.XmlNamespaceManager" />, <see langword="xml:lang" />, <see langword="xml:space" />, and encoding.</summary>
+ <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>
+ <param name="nsMgr">The <see cref="T:System.Xml.XmlNamespaceManager" /> to use for looking up namespace information, or <see langword="null" />.</param>
+ <param name="xmlLang">The <see langword="xml:lang" /> scope.</param>
+ <param name="xmlSpace">An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope.</param>
+ <param name="enc">An <see cref="T:System.Text.Encoding" /> object indicating the encoding setting.</param>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="nt" /> is not the same <see langword="XmlNameTable" /> used to construct <paramref name="nsMgr" />.</exception>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.BaseURI">
+ <summary>Gets or sets the base URI.</summary>
+ <returns>The base URI to use to resolve the DTD file.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.DocTypeName">
+ <summary>Gets or sets the name of the document type declaration.</summary>
+ <returns>The name of the document type declaration.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.Encoding">
+ <summary>Gets or sets the encoding type.</summary>
+ <returns>An <see cref="T:System.Text.Encoding" /> object indicating the encoding type.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.InternalSubset">
+ <summary>Gets or sets the internal DTD subset.</summary>
+ <returns>The internal DTD subset. For example, this property returns everything between the square brackets <c>&lt;!DOCTYPE doc [...]&gt;</c>.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.NamespaceManager">
+ <summary>Gets or sets the <see cref="T:System.Xml.XmlNamespaceManager" />.</summary>
+ <returns>The <see langword="XmlNamespaceManager" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.NameTable">
+ <summary>Gets the <see cref="T:System.Xml.XmlNameTable" /> used to atomize strings. For more information on atomized strings, see <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <returns>The <see langword="XmlNameTable" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.PublicId">
+ <summary>Gets or sets the public identifier.</summary>
+ <returns>The public identifier.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.SystemId">
+ <summary>Gets or sets the system identifier.</summary>
+ <returns>The system identifier.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.XmlLang">
+ <summary>Gets or sets the current <see langword="xml:lang" /> scope.</summary>
+ <returns>The current <see langword="xml:lang" /> scope. If there is no <see langword="xml:lang" /> in scope, <see langword="String.Empty" /> is returned.</returns>
+ </member>
+ <member name="P:System.Xml.XmlParserContext.XmlSpace">
+ <summary>Gets or sets the current <see langword="xml:space" /> scope.</summary>
+ <returns>An <see cref="T:System.Xml.XmlSpace" /> value indicating the <see langword="xml:space" /> scope.</returns>
+ </member>
+ <member name="T:System.Xml.XmlProcessingInstruction">
+ <summary>Represents a processing instruction, which XML defines to keep processor-specific information in the text of the document.</summary>
+ </member>
+ <member name="M:System.Xml.XmlProcessingInstruction.#ctor(System.String,System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlProcessingInstruction" /> class.</summary>
+ <param name="target">The target of the processing instruction; see the <see cref="P:System.Xml.XmlProcessingInstruction.Target" /> property.</param>
+ <param name="data">The content of the instruction; see the <see cref="P:System.Xml.XmlProcessingInstruction.Data" /> property.</param>
+ <param name="doc">The parent XML document.</param>
+ </member>
+ <member name="M:System.Xml.XmlProcessingInstruction.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
+ <returns>The duplicate node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlProcessingInstruction.Data">
+ <summary>Gets or sets the content of the processing instruction, excluding the target.</summary>
+ <returns>The content of the processing instruction, excluding the target.</returns>
+ </member>
+ <member name="P:System.Xml.XmlProcessingInstruction.InnerText">
+ <summary>Gets or sets the concatenated values of the node and all its children.</summary>
+ <returns>The concatenated values of the node and all its children.</returns>
+ </member>
+ <member name="P:System.Xml.XmlProcessingInstruction.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For processing instruction nodes, this property returns the target of the processing instruction.</returns>
+ </member>
+ <member name="P:System.Xml.XmlProcessingInstruction.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For processing instruction nodes, this property returns the target of the processing instruction.</returns>
+ </member>
+ <member name="P:System.Xml.XmlProcessingInstruction.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>For <see langword="XmlProcessingInstruction" /> nodes, this value is XmlNodeType.ProcessingInstruction.</returns>
+ </member>
+ <member name="P:System.Xml.XmlProcessingInstruction.Target">
+ <summary>Gets the target of the processing instruction.</summary>
+ <returns>The target of the processing instruction.</returns>
+ </member>
+ <member name="P:System.Xml.XmlProcessingInstruction.Value">
+ <summary>Gets or sets the value of the node.</summary>
+ <returns>The entire content of the processing instruction, excluding the target.</returns>
+ <exception cref="T:System.ArgumentException">Node is read-only.</exception>
+ </member>
+ <member name="M:System.Xml.XmlProcessingInstruction.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. Because ProcessingInstruction nodes do not have children, this method has no effect.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlProcessingInstruction.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlQualifiedName">
+ <summary>Represents an XML qualified name.</summary>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class with the specified name.</summary>
+ <param name="name">The local name to use as the name of the <see cref="T:System.Xml.XmlQualifiedName" /> object.</param>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlQualifiedName" /> class with the specified name and namespace.</summary>
+ <param name="name">The local name to use as the name of the <see cref="T:System.Xml.XmlQualifiedName" /> object.</param>
+ <param name="ns">The namespace for the <see cref="T:System.Xml.XmlQualifiedName" /> object.</param>
+ </member>
+ <member name="F:System.Xml.XmlQualifiedName.Empty">
+ <summary>Provides an empty <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Xml.XmlQualifiedName" /> object is equal to the current <see cref="T:System.Xml.XmlQualifiedName" /> object.</summary>
+ <param name="other">The <see cref="T:System.Xml.XmlQualifiedName" /> to compare.</param>
+ <returns>
+ <see langword="true" /> if the two are the same instance object; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.GetHashCode">
+ <summary>Returns the hash code for the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
+ <returns>A hash code for this object.</returns>
+ </member>
+ <member name="P:System.Xml.XmlQualifiedName.IsEmpty">
+ <summary>Gets a value indicating whether the <see cref="T:System.Xml.XmlQualifiedName" /> is empty.</summary>
+ <returns>
+ <see langword="true" /> if name and namespace are empty strings; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlQualifiedName.Name">
+ <summary>Gets a string representation of the qualified name of the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
+ <returns>A string representation of the qualified name or String.Empty if a name is not defined for the object.</returns>
+ </member>
+ <member name="P:System.Xml.XmlQualifiedName.Namespace">
+ <summary>Gets a string representation of the namespace of the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
+ <returns>A string representation of the namespace or String.Empty if a namespace is not defined for the object.</returns>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.op_Equality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)">
+ <summary>Compares two <see cref="T:System.Xml.XmlQualifiedName" /> objects.</summary>
+ <param name="a">An <see cref="T:System.Xml.XmlQualifiedName" /> to compare.</param>
+ <param name="b">An <see cref="T:System.Xml.XmlQualifiedName" /> to compare.</param>
+ <returns>
+ <see langword="true" /> if the two objects have the same name and namespace values; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.op_Inequality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)">
+ <summary>Compares two <see cref="T:System.Xml.XmlQualifiedName" /> objects.</summary>
+ <param name="a">An <see cref="T:System.Xml.XmlQualifiedName" /> to compare.</param>
+ <param name="b">An <see cref="T:System.Xml.XmlQualifiedName" /> to compare.</param>
+ <returns>
+ <see langword="true" /> if the name and namespace values for the two objects differ; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.ToString">
+ <summary>Returns the string value of the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
+ <returns>The string value of the <see cref="T:System.Xml.XmlQualifiedName" /> in the format of <see langword="namespace:localname" />. If the object does not have a namespace defined, this method returns just the local name.</returns>
+ </member>
+ <member name="M:System.Xml.XmlQualifiedName.ToString(System.String,System.String)">
+ <summary>Returns the string value of the <see cref="T:System.Xml.XmlQualifiedName" />.</summary>
+ <param name="name">The name of the object.</param>
+ <param name="ns">The namespace of the object.</param>
+ <returns>The string value of the <see cref="T:System.Xml.XmlQualifiedName" /> in the format of <see langword="namespace:localname" />. If the object does not have a namespace defined, this method returns just the local name.</returns>
+ </member>
+ <member name="T:System.Xml.XmlReader">
+ <summary>Represents a reader that provides fast, noncached, forward-only access to XML data.</summary>
+ </member>
+ <member name="M:System.Xml.XmlReader.#ctor">
+ <summary>Initializes a new instance of the <see langword="XmlReader" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.XmlReader.AttributeCount">
+ <summary>When overridden in a derived class, gets the number of attributes on the current node.</summary>
+ <returns>The number of attributes on the current node.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.BaseURI">
+ <summary>When overridden in a derived class, gets the base URI of the current node.</summary>
+ <returns>The base URI of the current node.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.CanReadBinaryContent">
+ <summary>Gets a value indicating whether the <see cref="T:System.Xml.XmlReader" /> implements the binary content read methods.</summary>
+ <returns>
+ <see langword="true" /> if the binary content read methods are implemented; otherwise <see langword="false" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.CanReadValueChunk">
+ <summary>Gets a value indicating whether the <see cref="T:System.Xml.XmlReader" /> implements the <see cref="M:System.Xml.XmlReader.ReadValueChunk(System.Char[],System.Int32,System.Int32)" /> method.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XmlReader" /> implements the <see cref="M:System.Xml.XmlReader.ReadValueChunk(System.Char[],System.Int32,System.Int32)" /> method; otherwise <see langword="false" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.CanResolveEntity">
+ <summary>Gets a value indicating whether this reader can parse and resolve entities.</summary>
+ <returns>
+ <see langword="true" /> if the reader can parse and resolve entities; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Close">
+ <summary>When overridden in a derived class, changes the <see cref="P:System.Xml.XmlReader.ReadState" /> to <see cref="F:System.Xml.ReadState.Closed" />.</summary>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.IO.Stream)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance using the specified stream with default settings.</summary>
+ <param name="input">The stream that contains the XML data.
+ The <see cref="T:System.Xml.XmlReader" /> scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Security.SecurityException">The <see cref="T:System.Xml.XmlReader" /> does not have sufficient permissions to access the location of the XML data.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.IO.Stream,System.Xml.XmlReaderSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance with the specified stream and settings.</summary>
+ <param name="input">The stream that contains the XML data.
+ The <see cref="T:System.Xml.XmlReader" /> scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" /> instance. This value can be <see langword="null" />.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.IO.Stream,System.Xml.XmlReaderSettings,System.String)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance using the specified stream, base URI, and settings.</summary>
+ <param name="input">The stream that contains the XML data.
+ The <see cref="T:System.Xml.XmlReader" /> scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" /> instance. This value can be <see langword="null" />.</param>
+ <param name="baseUri">The base URI for the entity or document being read. This value can be <see langword="null" />.
+ Security Note The base URI is used to resolve the relative URI of the XML document. Do not use a base URI from an untrusted source.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.IO.Stream,System.Xml.XmlReaderSettings,System.Xml.XmlParserContext)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance using the specified stream, settings, and context information for parsing.</summary>
+ <param name="input">The stream that contains the XML data.
+ The <see cref="T:System.Xml.XmlReader" /> scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" /> instance. This value can be <see langword="null" />.</param>
+ <param name="inputContext">The context information required to parse the XML fragment. The context information can include the <see cref="T:System.Xml.XmlNameTable" /> to use, encoding, namespace scope, the current <c>xml:lang</c> and <c>xml:space</c> scope, base URI, and document type definition.
+ This value can be <see langword="null" />.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.IO.TextReader)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance by using the specified text reader.</summary>
+ <param name="input">The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration is not used by the XML reader to decode the data stream.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.IO.TextReader,System.Xml.XmlReaderSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance by using the specified text reader and settings.</summary>
+ <param name="input">The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the XML reader to decode the data stream.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" />. This value can be <see langword="null" />.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.IO.TextReader,System.Xml.XmlReaderSettings,System.String)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance by using the specified text reader, settings, and base URI.</summary>
+ <param name="input">The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the <see cref="T:System.Xml.XmlReader" /> to decode the data stream.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" /> instance. This value can be <see langword="null" />.</param>
+ <param name="baseUri">The base URI for the entity or document being read. This value can be <see langword="null" />.
+ Security Note The base URI is used to resolve the relative URI of the XML document. Do not use a base URI from an untrusted source.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.IO.TextReader,System.Xml.XmlReaderSettings,System.Xml.XmlParserContext)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance by using the specified text reader, settings, and context information for parsing.</summary>
+ <param name="input">The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the XML reader to decode the data stream.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" /> instance. This value can be <see langword="null" />.</param>
+ <param name="inputContext">The context information required to parse the XML fragment. The context information can include the <see cref="T:System.Xml.XmlNameTable" /> to use, encoding, namespace scope, the current <c>xml:lang</c> and <c>xml:space</c> scope, base URI, and document type definition.
+ This value can be <see langword="null" />.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <see cref="P:System.Xml.XmlReaderSettings.NameTable" /> and <see cref="P:System.Xml.XmlParserContext.NameTable" /> properties both contain values. (Only one of these <see langword="NameTable" /> properties can be set and used).</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.String)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance with specified URI.</summary>
+ <param name="inputUri">The URI for the file that contains the XML data. The <see cref="T:System.Xml.XmlUrlResolver" /> class is used to convert the path to a canonical data representation.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="inputUri" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Security.SecurityException">The <see cref="T:System.Xml.XmlReader" /> does not have sufficient permissions to access the location of the XML data.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file identified by the URI does not exist.</exception>
+ <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.
+
+
+
+
+ The URI format is not correct.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.String,System.Xml.XmlReaderSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance by using the specified URI and settings.</summary>
+ <param name="inputUri">The URI for the file containing the XML data. The <see cref="T:System.Xml.XmlResolver" /> object on the <see cref="T:System.Xml.XmlReaderSettings" /> object is used to convert the path to a canonical data representation. If <see cref="P:System.Xml.XmlReaderSettings.XmlResolver" /> is <see langword="null" />, a new <see cref="T:System.Xml.XmlUrlResolver" /> object is used.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" /> instance. This value can be <see langword="null" />.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="inputUri" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file specified by the URI cannot be found.</exception>
+ <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.
+
+
+
+
+ The URI format is not correct.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.String,System.Xml.XmlReaderSettings,System.Xml.XmlParserContext)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance by using the specified URI, settings, and context information for parsing.</summary>
+ <param name="inputUri">The URI for the file containing the XML data. The <see cref="T:System.Xml.XmlResolver" /> object on the <see cref="T:System.Xml.XmlReaderSettings" /> object is used to convert the path to a canonical data representation. If <see cref="P:System.Xml.XmlReaderSettings.XmlResolver" /> is <see langword="null" />, a new <see cref="T:System.Xml.XmlUrlResolver" /> object is used.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" /> instance. This value can be <see langword="null" />.</param>
+ <param name="inputContext">The context information required to parse the XML fragment. The context information can include the <see cref="T:System.Xml.XmlNameTable" /> to use, encoding, namespace scope, the current <c>xml:lang</c> and <c>xml:space</c> scope, base URI, and document type definition.
+ This value can be <see langword="null" />.</param>
+ <returns>An object that is used to read the XML data in the stream.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see langword="inputUri" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Security.SecurityException">The <see cref="T:System.Xml.XmlReader" /> does not have sufficient permissions to access the location of the XML data.</exception>
+ <exception cref="T:System.ArgumentException">The <see cref="P:System.Xml.XmlReaderSettings.NameTable" /> and <see cref="P:System.Xml.XmlParserContext.NameTable" /> properties both contain values. (Only one of these <see langword="NameTable" /> properties can be set and used).</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file specified by the URI cannot be found.</exception>
+ <exception cref="T:System.UriFormatException">The URI format is not correct.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Create(System.Xml.XmlReader,System.Xml.XmlReaderSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlReader" /> instance by using the specified XML reader and settings.</summary>
+ <param name="reader">The object that you want to use as the underlying XML reader.</param>
+ <param name="settings">The settings for the new <see cref="T:System.Xml.XmlReader" /> instance.
+ The conformance level of the <see cref="T:System.Xml.XmlReaderSettings" /> object must either match the conformance level of the underlying reader, or it must be set to <see cref="F:System.Xml.ConformanceLevel.Auto" />.</param>
+ <returns>An object that is wrapped around the specified <see cref="T:System.Xml.XmlReader" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="reader" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">If the <see cref="T:System.Xml.XmlReaderSettings" /> object specifies a conformance level that is not consistent with conformance level of the underlying reader.
+ -or-
+ The underlying <see cref="T:System.Xml.XmlReader" /> is in an <see cref="F:System.Xml.ReadState.Error" /> or <see cref="F:System.Xml.ReadState.Closed" /> state.</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.Depth">
+ <summary>When overridden in a derived class, gets the depth of the current node in the XML document.</summary>
+ <returns>The depth of the current node in the XML document.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Dispose">
+ <summary>Releases all resources used by the current instance of the <see cref="T:System.Xml.XmlReader" /> class.</summary>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Xml.XmlReader" /> and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.EOF">
+ <summary>When overridden in a derived class, gets a value indicating whether the reader is positioned at the end of the stream.</summary>
+ <returns>
+ <see langword="true" /> if the reader is positioned at the end of the stream; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.GetAttribute(System.Int32)">
+ <summary>When overridden in a derived class, gets the value of the attribute with the specified index.</summary>
+ <param name="i">The index of the attribute. The index is zero-based. (The first attribute has index 0.)</param>
+ <returns>The value of the specified attribute. This method does not move the reader.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="i" /> is out of range. It must be non-negative and less than the size of the attribute collection.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.GetAttribute(System.String)">
+ <summary>When overridden in a derived class, gets the value of the attribute with the specified <see cref="P:System.Xml.XmlReader.Name" />.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found or the value is <see langword="String.Empty" />, <see langword="null" /> is returned.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="name" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.GetAttribute(System.String,System.String)">
+ <summary>When overridden in a derived class, gets the value of the attribute with the specified <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" />.</summary>
+ <param name="name">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found or the value is <see langword="String.Empty" />, <see langword="null" /> is returned. This method does not move the reader.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="name" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.GetValueAsync">
+ <summary>Asynchronously gets the value of the current node.</summary>
+ <returns>The value of the current node.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress".
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.HasAttributes">
+ <summary>Gets a value indicating whether the current node has any attributes.</summary>
+ <returns>
+ <see langword="true" /> if the current node has attributes; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.HasValue">
+ <summary>When overridden in a derived class, gets a value indicating whether the current node can have a <see cref="P:System.Xml.XmlReader.Value" />.</summary>
+ <returns>
+ <see langword="true" /> if the node on which the reader is currently positioned can have a <see langword="Value" />; otherwise, <see langword="false" />. If <see langword="false" />, the node has a value of <see langword="String.Empty" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.IsDefault">
+ <summary>When overridden in a derived class, gets a value indicating whether the current node is an attribute that was generated from the default value defined in the DTD or schema.</summary>
+ <returns>
+ <see langword="true" /> if the current node is an attribute whose value was generated from the default value defined in the DTD or schema; <see langword="false" /> if the attribute value was explicitly set.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.IsEmptyElement">
+ <summary>When overridden in a derived class, gets a value indicating whether the current node is an empty element (for example, <c>&lt;MyElement/&gt;</c>).</summary>
+ <returns>
+ <see langword="true" /> if the current node is an element (<see cref="P:System.Xml.XmlReader.NodeType" /> equals <see langword="XmlNodeType.Element" />) that ends with <c>/&gt;</c>; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.IsName(System.String)">
+ <summary>Returns a value indicating whether the string argument is a valid XML name.</summary>
+ <param name="str">The name to validate.</param>
+ <returns>
+ <see langword="true" /> if the name is valid; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="str" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.IsNameToken(System.String)">
+ <summary>Returns a value indicating whether or not the string argument is a valid XML name token.</summary>
+ <param name="str">The name token to validate.</param>
+ <returns>
+ <see langword="true" /> if it is a valid name token; otherwise <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="str" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.IsStartElement">
+ <summary>Calls <see cref="M:System.Xml.XmlReader.MoveToContent" /> and tests if the current content node is a start tag or empty element tag.</summary>
+ <returns>
+ <see langword="true" /> if <see cref="M:System.Xml.XmlReader.MoveToContent" /> finds a start tag or empty element tag; <see langword="false" /> if a node type other than <see langword="XmlNodeType.Element" /> was found.</returns>
+ <exception cref="T:System.Xml.XmlException">Incorrect XML is encountered in the input stream.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.IsStartElement(System.String)">
+ <summary>Calls <see cref="M:System.Xml.XmlReader.MoveToContent" /> and tests if the current content node is a start tag or empty element tag and if the <see cref="P:System.Xml.XmlReader.Name" /> property of the element found matches the given argument.</summary>
+ <param name="name">The string matched against the <see langword="Name" /> property of the element found.</param>
+ <returns>
+ <see langword="true" /> if the resulting node is an element and the <see langword="Name" /> property matches the specified string. <see langword="false" /> if a node type other than <see langword="XmlNodeType.Element" /> was found or if the element <see langword="Name" /> property does not match the specified string.</returns>
+ <exception cref="T:System.Xml.XmlException">Incorrect XML is encountered in the input stream.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.IsStartElement(System.String,System.String)">
+ <summary>Calls <see cref="M:System.Xml.XmlReader.MoveToContent" /> and tests if the current content node is a start tag or empty element tag and if the <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties of the element found match the given strings.</summary>
+ <param name="localname">The string to match against the <see langword="LocalName" /> property of the element found.</param>
+ <param name="ns">The string to match against the <see langword="NamespaceURI" /> property of the element found.</param>
+ <returns>
+ <see langword="true" /> if the resulting node is an element. <see langword="false" /> if a node type other than <see langword="XmlNodeType.Element" /> was found or if the <see langword="LocalName" /> and <see langword="NamespaceURI" /> properties of the element do not match the specified strings.</returns>
+ <exception cref="T:System.Xml.XmlException">Incorrect XML is encountered in the input stream.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.Item(System.Int32)">
+ <summary>When overridden in a derived class, gets the value of the attribute with the specified index.</summary>
+ <param name="i">The index of the attribute.</param>
+ <returns>The value of the specified attribute.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.Item(System.String)">
+ <summary>When overridden in a derived class, gets the value of the attribute with the specified <see cref="P:System.Xml.XmlReader.Name" />.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.Item(System.String,System.String)">
+ <summary>When overridden in a derived class, gets the value of the attribute with the specified <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" />.</summary>
+ <param name="name">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.LocalName">
+ <summary>When overridden in a derived class, gets the local name of the current node.</summary>
+ <returns>The name of the current node with the prefix removed. For example, <see langword="LocalName" /> is <see langword="book" /> for the element <c>&lt;bk:book&gt;</c>.
+ For node types that do not have a name (like <see langword="Text" />, <see langword="Comment" />, and so on), this property returns <see langword="String.Empty" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.LookupNamespace(System.String)">
+ <summary>When overridden in a derived class, resolves a namespace prefix in the current element's scope.</summary>
+ <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string.</param>
+ <returns>The namespace URI to which the prefix maps or <see langword="null" /> if no matching prefix is found.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.MoveToAttribute(System.Int32)">
+ <summary>When overridden in a derived class, moves to the attribute with the specified index.</summary>
+ <param name="i">The index of the attribute.</param>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The parameter has a negative value.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.MoveToAttribute(System.String)">
+ <summary>When overridden in a derived class, moves to the attribute with the specified <see cref="P:System.Xml.XmlReader.Name" />.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>
+ <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the reader's position does not change.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentException">The parameter is an empty string.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.MoveToAttribute(System.String,System.String)">
+ <summary>When overridden in a derived class, moves to the attribute with the specified <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" />.</summary>
+ <param name="name">The local name of the attribute.</param>
+ <param name="ns">The namespace URI of the attribute.</param>
+ <returns>
+ <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the reader's position does not change.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentNullException">Both parameter values are <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.MoveToContent">
+ <summary>Checks whether the current node is a content (non-white space text, <see langword="CDATA" />, <see langword="Element" />, <see langword="EndElement" />, <see langword="EntityReference" />, or <see langword="EndEntity" />) node. If the node is not a content node, the reader skips ahead to the next content node or end of file. It skips over nodes of the following type: <see langword="ProcessingInstruction" />, <see langword="DocumentType" />, <see langword="Comment" />, <see langword="Whitespace" />, or <see langword="SignificantWhitespace" />.</summary>
+ <returns>The <see cref="P:System.Xml.XmlReader.NodeType" /> of the current node found by the method or <see langword="XmlNodeType.None" /> if the reader has reached the end of the input stream.</returns>
+ <exception cref="T:System.Xml.XmlException">Incorrect XML encountered in the input stream.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.MoveToContentAsync">
+ <summary>Asynchronously checks whether the current node is a content node. If the node is not a content node, the reader skips ahead to the next content node or end of file.</summary>
+ <returns>The <see cref="P:System.Xml.XmlReader.NodeType" /> of the current node found by the method or <see langword="XmlNodeType.None" /> if the reader has reached the end of the input stream.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.MoveToElement">
+ <summary>When overridden in a derived class, moves to the element that contains the current attribute node.</summary>
+ <returns>
+ <see langword="true" /> if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); <see langword="false" /> if the reader is not positioned on an attribute (the position of the reader does not change).</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.MoveToFirstAttribute">
+ <summary>When overridden in a derived class, moves to the first attribute.</summary>
+ <returns>
+ <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).</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.MoveToNextAttribute">
+ <summary>When overridden in a derived class, moves to the next attribute.</summary>
+ <returns>
+ <see langword="true" /> if there is a next attribute; <see langword="false" /> if there are no more attributes.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.Name">
+ <summary>When overridden in a derived class, gets the qualified name of the current node.</summary>
+ <returns>The qualified name of the current node. For example, <see langword="Name" /> is <see langword="bk:book" /> for the element <c>&lt;bk:book&gt;</c>.
+ The name returned is dependent on the <see cref="P:System.Xml.XmlReader.NodeType" /> of the node. The following node types return the listed values. All other node types return an empty string.
+ Node type
+
+ Name
+
+ <see langword="Attribute" /> The name of the attribute.
+
+ <see langword="DocumentType" /> The document type name.
+
+ <see langword="Element" /> The tag name.
+
+ <see langword="EntityReference" /> The name of the entity referenced.
+
+ <see langword="ProcessingInstruction" /> The target of the processing instruction.
+
+ <see langword="XmlDeclaration" /> The literal string <see langword="xml" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.NamespaceURI">
+ <summary>When overridden in a derived class, gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.</summary>
+ <returns>The namespace URI of the current node; otherwise an empty string.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.NameTable">
+ <summary>When overridden in a derived class, gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this implementation.</summary>
+ <returns>The <see langword="XmlNameTable" /> enabling you to get the atomized version of a string within the node.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.NodeType">
+ <summary>When overridden in a derived class, gets the type of the current node.</summary>
+ <returns>One of the enumeration values that specify the type of the current node.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.Prefix">
+ <summary>When overridden in a derived class, gets the namespace prefix associated with the current node.</summary>
+ <returns>The namespace prefix associated with the current node.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.QuoteChar">
+ <summary>When overridden in a derived class, gets the quotation mark character used to enclose the value of an attribute node.</summary>
+ <returns>The quotation mark character (" or ') used to enclose the value of an attribute node.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Read">
+ <summary>When overridden in a derived class, reads the next node from the stream.</summary>
+ <returns>
+ <see langword="true" /> if the next node was read successfully; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadAsync">
+ <summary>Asynchronously reads the next node from the stream.</summary>
+ <returns>
+ <see langword="true" /> if the next node was read successfully; <see langword="false" /> if there are no more nodes to read.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadAttributeValue">
+ <summary>When overridden in a derived class, parses the attribute value into one or more <see langword="Text" />, <see langword="EntityReference" />, or <see langword="EndEntity" /> nodes.</summary>
+ <returns>
+ <see langword="true" /> if there are nodes to return.
+<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.
+An empty attribute, such as, <c>misc=""</c>, returns <see langword="true" /> with a single node with a value of <see langword="String.Empty" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAs(System.Type,System.Xml.IXmlNamespaceResolver)">
+ <summary>Reads the content as an object of the type specified.</summary>
+ <param name="returnType">The type of the value to be returned.
+ Note With the release of the .NET Framework 3.5, the value of the <paramref name="returnType" /> parameter can now be the <see cref="T:System.DateTimeOffset" /> type.</param>
+ <param name="namespaceResolver">An <see cref="T:System.Xml.IXmlNamespaceResolver" /> object that is used to resolve any namespace prefixes related to type conversion. For example, this can be used when converting an <see cref="T:System.Xml.XmlQualifiedName" /> object to an <c>xs:string</c>.
+ This value can be <see langword="null" />.</param>
+ <returns>The concatenated text content or attribute value converted to the requested type.</returns>
+ <exception cref="T:System.FormatException">The content is not in the correct format for the target type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="returnType" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not a supported node type. See the table below for details.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.OverflowException">Read <see langword="Decimal.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsAsync(System.Type,System.Xml.IXmlNamespaceResolver)">
+ <summary>Asynchronously reads the content as an object of the type specified.</summary>
+ <param name="returnType">The type of the value to be returned.</param>
+ <param name="namespaceResolver">An <see cref="T:System.Xml.IXmlNamespaceResolver" /> object that is used to resolve any namespace prefixes related to type conversion.</param>
+ <returns>The concatenated text content or attribute value converted to the requested type.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the content and returns the Base64 decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <see cref="M:System.Xml.XmlReader.ReadContentAsBase64(System.Byte[],System.Int32,System.Int32)" /> is not supported on the current node.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlReader" /> implementation does not support this method.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsBase64Async(System.Byte[],System.Int32,System.Int32)">
+ <summary>Asynchronously reads the content and returns the Base64 decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the content and returns the <see langword="BinHex" /> decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <see cref="M:System.Xml.XmlReader.ReadContentAsBinHex(System.Byte[],System.Int32,System.Int32)" /> is not supported on the current node.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlReader" /> implementation does not support this method.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsBinHexAsync(System.Byte[],System.Int32,System.Int32)">
+ <summary>Asynchronously reads the content and returns the <see langword="BinHex" /> decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsBoolean">
+ <summary>Reads the text content at the current position as a <see langword="Boolean" />.</summary>
+ <returns>The text content as a <see cref="T:System.Boolean" /> object.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsDateTime">
+ <summary>Reads the text content at the current position as a <see cref="T:System.DateTime" /> object.</summary>
+ <returns>The text content as a <see cref="T:System.DateTime" /> object.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsDateTimeOffset">
+ <summary>Reads the text content at the current position as a <see cref="T:System.DateTimeOffset" /> object.</summary>
+ <returns>The text content as a <see cref="T:System.DateTimeOffset" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsDecimal">
+ <summary>Reads the text content at the current position as a <see cref="T:System.Decimal" /> object.</summary>
+ <returns>The text content at the current position as a <see cref="T:System.Decimal" /> object.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsDouble">
+ <summary>Reads the text content at the current position as a double-precision floating-point number.</summary>
+ <returns>The text content as a double-precision floating-point number.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsFloat">
+ <summary>Reads the text content at the current position as a single-precision floating point number.</summary>
+ <returns>The text content at the current position as a single-precision floating point number.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsInt">
+ <summary>Reads the text content at the current position as a 32-bit signed integer.</summary>
+ <returns>The text content as a 32-bit signed integer.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsLong">
+ <summary>Reads the text content at the current position as a 64-bit signed integer.</summary>
+ <returns>The text content as a 64-bit signed integer.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsObject">
+ <summary>Reads the text content at the current position as an <see cref="T:System.Object" />.</summary>
+ <returns>The text content as the most appropriate common language runtime (CLR) object.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsObjectAsync">
+ <summary>Asynchronously reads the text content at the current position as an <see cref="T:System.Object" />.</summary>
+ <returns>The text content as the most appropriate common language runtime (CLR) object.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsString">
+ <summary>Reads the text content at the current position as a <see cref="T:System.String" /> object.</summary>
+ <returns>The text content as a <see cref="T:System.String" /> object.</returns>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.FormatException">The string format is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadContentAsStringAsync">
+ <summary>Asynchronously reads the text content at the current position as a <see cref="T:System.String" /> object.</summary>
+ <returns>The text content as a <see cref="T:System.String" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAs(System.Type,System.Xml.IXmlNamespaceResolver)">
+ <summary>Reads the element content as the requested type.</summary>
+ <param name="returnType">The type of the value to be returned.
+ Note With the release of the .NET Framework 3.5, the value of the <paramref name="returnType" /> parameter can now be the <see cref="T:System.DateTimeOffset" /> type.</param>
+ <param name="namespaceResolver">An <see cref="T:System.Xml.IXmlNamespaceResolver" /> object that is used to resolve any namespace prefixes related to type conversion.</param>
+ <returns>The element content converted to the requested typed object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to the requested type.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.OverflowException">Read <see langword="Decimal.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAs(System.Type,System.Xml.IXmlNamespaceResolver,System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the element content as the requested type.</summary>
+ <param name="returnType">The type of the value to be returned.
+ Note With the release of the .NET Framework 3.5, the value of the <paramref name="returnType" /> parameter can now be the <see cref="T:System.DateTimeOffset" /> type.</param>
+ <param name="namespaceResolver">An <see cref="T:System.Xml.IXmlNamespaceResolver" /> object that is used to resolve any namespace prefixes related to type conversion.</param>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element content converted to the requested typed object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to the requested type.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ <exception cref="T:System.OverflowException">Read <see langword="Decimal.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsAsync(System.Type,System.Xml.IXmlNamespaceResolver)">
+ <summary>Asynchronously reads the element content as the requested type.</summary>
+ <param name="returnType">The type of the value to be returned.</param>
+ <param name="namespaceResolver">An <see cref="T:System.Xml.IXmlNamespaceResolver" /> object that is used to resolve any namespace prefixes related to type conversion.</param>
+ <returns>The element content converted to the requested typed object.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the element and decodes the <see langword="Base64" /> content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not an element node.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlReader" /> implementation does not support this method.</exception>
+ <exception cref="T:System.Xml.XmlException">The element contains mixed-content.</exception>
+ <exception cref="T:System.FormatException">The content cannot be converted to the requested type.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsBase64Async(System.Byte[],System.Int32,System.Int32)">
+ <summary>Asynchronously reads the element and decodes the <see langword="Base64" /> content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the element and decodes the <see langword="BinHex" /> content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not an element node.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlReader" /> implementation does not support this method.</exception>
+ <exception cref="T:System.Xml.XmlException">The element contains mixed-content.</exception>
+ <exception cref="T:System.FormatException">The content cannot be converted to the requested type.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsBinHexAsync(System.Byte[],System.Int32,System.Int32)">
+ <summary>Asynchronously reads the element and decodes the <see langword="BinHex" /> content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsBoolean">
+ <summary>Reads the current element and returns the contents as a <see cref="T:System.Boolean" /> object.</summary>
+ <returns>The element content as a <see cref="T:System.Boolean" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a <see cref="T:System.Boolean" /> object.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsBoolean(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a <see cref="T:System.Boolean" /> object.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element content as a <see cref="T:System.Boolean" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to the requested type.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsDateTime">
+ <summary>Reads the current element and returns the contents as a <see cref="T:System.DateTime" /> object.</summary>
+ <returns>The element content as a <see cref="T:System.DateTime" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a <see cref="T:System.DateTime" /> object.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsDateTime(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a <see cref="T:System.DateTime" /> object.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element contents as a <see cref="T:System.DateTime" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to the requested type.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsDecimal">
+ <summary>Reads the current element and returns the contents as a <see cref="T:System.Decimal" /> object.</summary>
+ <returns>The element content as a <see cref="T:System.Decimal" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a <see cref="T:System.Decimal" />.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsDecimal(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a <see cref="T:System.Decimal" /> object.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element content as a <see cref="T:System.Decimal" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a <see cref="T:System.Decimal" />.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsDouble">
+ <summary>Reads the current element and returns the contents as a double-precision floating-point number.</summary>
+ <returns>The element content as a double-precision floating-point number.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a double-precision floating-point number.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsDouble(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a double-precision floating-point number.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element content as a double-precision floating-point number.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to the requested type.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsFloat">
+ <summary>Reads the current element and returns the contents as single-precision floating-point number.</summary>
+ <returns>The element content as a single-precision floating point number.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a single-precision floating-point number.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsFloat(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a single-precision floating-point number.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element content as a single-precision floating point number.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a single-precision floating-point number.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsInt">
+ <summary>Reads the current element and returns the contents as a 32-bit signed integer.</summary>
+ <returns>The element content as a 32-bit signed integer.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a 32-bit signed integer.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsInt(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a 32-bit signed integer.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element content as a 32-bit signed integer.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a 32-bit signed integer.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsLong">
+ <summary>Reads the current element and returns the contents as a 64-bit signed integer.</summary>
+ <returns>The element content as a 64-bit signed integer.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a 64-bit signed integer.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsLong(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a 64-bit signed integer.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element content as a 64-bit signed integer.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a 64-bit signed integer.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsObject">
+ <summary>Reads the current element and returns the contents as an <see cref="T:System.Object" />.</summary>
+ <returns>A boxed common language runtime (CLR) object of the most appropriate type. The <see cref="P:System.Xml.XmlReader.ValueType" /> property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to the requested type</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsObject(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as an <see cref="T:System.Object" />.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>A boxed common language runtime (CLR) object of the most appropriate type. The <see cref="P:System.Xml.XmlReader.ValueType" /> property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to the requested type.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsObjectAsync">
+ <summary>Asynchronously reads the current element and returns the contents as an <see cref="T:System.Object" />.</summary>
+ <returns>A boxed common language runtime (CLR) object of the most appropriate type. The <see cref="P:System.Xml.XmlReader.ValueType" /> property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsString">
+ <summary>Reads the current element and returns the contents as a <see cref="T:System.String" /> object.</summary>
+ <returns>The element content as a <see cref="T:System.String" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a <see cref="T:System.String" /> object.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsString(System.String,System.String)">
+ <summary>Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a <see cref="T:System.String" /> object.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>The element content as a <see cref="T:System.String" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XmlReader" /> is not positioned on an element.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Xml.XmlException">The current element contains child elements.
+ -or-
+ The element content cannot be converted to a <see cref="T:System.String" /> object.</exception>
+ <exception cref="T:System.ArgumentNullException">The method is called with <see langword="null" /> arguments.</exception>
+ <exception cref="T:System.ArgumentException">The specified local name and namespace URI do not match that of the current element being read.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementContentAsStringAsync">
+ <summary>Asynchronously reads the current element and returns the contents as a <see cref="T:System.String" /> object.</summary>
+ <returns>The element content as a <see cref="T:System.String" /> object.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementString">
+ <summary>Reads a text-only element. However, we recommend that you use the <see cref="M:System.Xml.XmlReader.ReadElementContentAsString" /> method instead, because it provides a more straightforward way to handle this operation.</summary>
+ <returns>The text contained in the element that was read. An empty string if the element is empty.</returns>
+ <exception cref="T:System.Xml.XmlException">The next content node is not a start tag; or the element found does not contain a simple text value.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementString(System.String)">
+ <summary>Checks that the <see cref="P:System.Xml.XmlReader.Name" /> property of the element found matches the given string before reading a text-only element. However, we recommend that you use the <see cref="M:System.Xml.XmlReader.ReadElementContentAsString" /> method instead, because it provides a more straightforward way to handle this operation.</summary>
+ <param name="name">The name to check.</param>
+ <returns>The text contained in the element that was read. An empty string if the element is empty.</returns>
+ <exception cref="T:System.Xml.XmlException">If the next content node is not a start tag; if the element <see langword="Name" /> does not match the given argument; or if the element found does not contain a simple text value.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadElementString(System.String,System.String)">
+ <summary>Checks that the <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties of the element found matches the given strings before reading a text-only element. However, we recommend that you use the <see cref="M:System.Xml.XmlReader.ReadElementContentAsString(System.String,System.String)" /> method instead, because it provides a more straightforward way to handle this operation.</summary>
+ <param name="localname">The local name to check.</param>
+ <param name="ns">The namespace URI to check.</param>
+ <returns>The text contained in the element that was read. An empty string if the element is empty.</returns>
+ <exception cref="T:System.Xml.XmlException">If the next content node is not a start tag; if the element <see langword="LocalName" /> or <see langword="NamespaceURI" /> do not match the given arguments; or if the element found does not contain a simple text value.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadEndElement">
+ <summary>Checks that the current content node is an end tag and advances the reader to the next node.</summary>
+ <exception cref="T:System.Xml.XmlException">The current node is not an end tag or if incorrect XML is encountered in the input stream.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadInnerXml">
+ <summary>When overridden in a derived class, reads all the content, including markup, as a string.</summary>
+ <returns>All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.
+ If the current node is neither an element nor attribute, an empty string is returned.</returns>
+ <exception cref="T:System.Xml.XmlException">The XML was not well-formed, or an error occurred while parsing the XML.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadInnerXmlAsync">
+ <summary>Asynchronously reads all the content, including markup, as a string.</summary>
+ <returns>All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadOuterXml">
+ <summary>When overridden in a derived class, reads the content, including markup, representing this node and all its children.</summary>
+ <returns>If the reader is positioned on an element or an attribute node, this method returns all the XML content, including markup, of the current node and all its children; otherwise, it returns an empty string.</returns>
+ <exception cref="T:System.Xml.XmlException">The XML was not well-formed, or an error occurred while parsing the XML.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadOuterXmlAsync">
+ <summary>Asynchronously reads the content, including markup, representing this node and all its children.</summary>
+ <returns>If the reader is positioned on an element or an attribute node, this method returns all the XML content, including markup, of the current node and all its children; otherwise, it returns an empty string.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadStartElement">
+ <summary>Checks that the current node is an element and advances the reader to the next node.</summary>
+ <exception cref="T:System.Xml.XmlException">Incorrect XML was encountered in the input stream.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadStartElement(System.String)">
+ <summary>Checks that the current content node is an element with the given <see cref="P:System.Xml.XmlReader.Name" /> and advances the reader to the next node.</summary>
+ <param name="name">The qualified name of the element.</param>
+ <exception cref="T:System.Xml.XmlException">Incorrect XML was encountered in the input stream.
+ -or-
+ The <see cref="P:System.Xml.XmlReader.Name" /> of the element does not match the given <paramref name="name" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadStartElement(System.String,System.String)">
+ <summary>Checks that the current content node is an element with the given <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> and advances the reader to the next node.</summary>
+ <param name="localname">The local name of the element.</param>
+ <param name="ns">The namespace URI of the element.</param>
+ <exception cref="T:System.Xml.XmlException">Incorrect XML was encountered in the input stream.
+ -or-
+ The <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties of the element found do not match the given arguments.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.ReadState">
+ <summary>When overridden in a derived class, gets the state of the reader.</summary>
+ <returns>One of the enumeration values that specifies the state of the reader.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadString">
+ <summary>When overridden in a derived class, reads the contents of an element or text node as a string. However, we recommend that you use the <see cref="Overload:System.Xml.XmlReader.ReadElementContentAsString" /> method instead, because it provides a more straightforward way to handle this operation.</summary>
+ <returns>The contents of the element or an empty string.</returns>
+ <exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadSubtree">
+ <summary>Returns a new <see langword="XmlReader" /> instance that can be used to read the current node, and all its descendants.</summary>
+ <returns>A new XML reader instance set to <see cref="F:System.Xml.ReadState.Initial" />. Calling the <see cref="M:System.Xml.XmlReader.Read" /> method positions the new reader on the node that was current before the call to the <see cref="M:System.Xml.XmlReader.ReadSubtree" /> method.</returns>
+ <exception cref="T:System.InvalidOperationException">The XML reader isn't positioned on an element when this method is called.
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadToDescendant(System.String)">
+ <summary>Advances the <see cref="T:System.Xml.XmlReader" /> to the next descendant element with the specified qualified name.</summary>
+ <param name="name">The qualified name of the element you wish to move to.</param>
+ <returns>
+ <see langword="true" /> if a matching descendant element is found; otherwise <see langword="false" />. If a matching child element is not found, the <see cref="T:System.Xml.XmlReader" /> is positioned on the end tag (<see cref="P:System.Xml.XmlReader.NodeType" /> is <see langword="XmlNodeType.EndElement" />) of the element.
+If the <see cref="T:System.Xml.XmlReader" /> is not positioned on an element when <see cref="M:System.Xml.XmlReader.ReadToDescendant(System.String)" /> was called, this method returns <see langword="false" /> and the position of the <see cref="T:System.Xml.XmlReader" /> is not changed.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentException">The parameter is an empty string.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadToDescendant(System.String,System.String)">
+ <summary>Advances the <see cref="T:System.Xml.XmlReader" /> to the next descendant element with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the element you wish to move to.</param>
+ <param name="namespaceURI">The namespace URI of the element you wish to move to.</param>
+ <returns>
+ <see langword="true" /> if a matching descendant element is found; otherwise <see langword="false" />. If a matching child element is not found, the <see cref="T:System.Xml.XmlReader" /> is positioned on the end tag (<see cref="P:System.Xml.XmlReader.NodeType" /> is <see langword="XmlNodeType.EndElement" />) of the element.
+If the <see cref="T:System.Xml.XmlReader" /> is not positioned on an element when <see cref="M:System.Xml.XmlReader.ReadToDescendant(System.String,System.String)" /> was called, this method returns <see langword="false" /> and the position of the <see cref="T:System.Xml.XmlReader" /> is not changed.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentNullException">Both parameter values are <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadToFollowing(System.String)">
+ <summary>Reads until an element with the specified qualified name is found.</summary>
+ <param name="name">The qualified name of the element.</param>
+ <returns>
+ <see langword="true" /> if a matching element is found; otherwise <see langword="false" /> and the <see cref="T:System.Xml.XmlReader" /> is in an end of file state.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentException">The parameter is an empty string.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadToFollowing(System.String,System.String)">
+ <summary>Reads until an element with the specified local name and namespace URI is found.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>
+ <see langword="true" /> if a matching element is found; otherwise <see langword="false" /> and the <see cref="T:System.Xml.XmlReader" /> is in an end of file state.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentNullException">Both parameter values are <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadToNextSibling(System.String)">
+ <summary>Advances the <see langword="XmlReader" /> to the next sibling element with the specified qualified name.</summary>
+ <param name="name">The qualified name of the sibling element you wish to move to.</param>
+ <returns>
+ <see langword="true" /> if a matching sibling element is found; otherwise <see langword="false" />. If a matching sibling element is not found, the <see langword="XmlReader" /> is positioned on the end tag (<see cref="P:System.Xml.XmlReader.NodeType" /> is <see langword="XmlNodeType.EndElement" />) of the parent element.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentException">The parameter is an empty string.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadToNextSibling(System.String,System.String)">
+ <summary>Advances the <see langword="XmlReader" /> to the next sibling element with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the sibling element you wish to move to.</param>
+ <param name="namespaceURI">The namespace URI of the sibling element you wish to move to.</param>
+ <returns>
+ <see langword="true" /> if a matching sibling element is found; otherwise, <see langword="false" />. If a matching sibling element is not found, the <see langword="XmlReader" /> is positioned on the end tag (<see cref="P:System.Xml.XmlReader.NodeType" /> is <see langword="XmlNodeType.EndElement" />) of the parent element.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentNullException">Both parameter values are <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadValueChunk(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads large streams of text embedded in an XML document.</summary>
+ <param name="buffer">The array of characters that serves as the buffer to which the text contents are written. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset within the buffer where the <see cref="T:System.Xml.XmlReader" /> can start to copy the results.</param>
+ <param name="count">The maximum number of characters to copy into the buffer. The actual number of characters copied is returned from this method.</param>
+ <returns>The number of characters read into the buffer. The value zero is returned when there is no more text content.</returns>
+ <exception cref="T:System.InvalidOperationException">The current node does not have a value (<see cref="P:System.Xml.XmlReader.HasValue" /> is <see langword="false" />).
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer, or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlReader" /> implementation does not support this method.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML data is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ReadValueChunkAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Asynchronously reads large streams of text embedded in an XML document.</summary>
+ <param name="buffer">The array of characters that serves as the buffer to which the text contents are written. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset within the buffer where the <see cref="T:System.Xml.XmlReader" /> can start to copy the results.</param>
+ <param name="count">The maximum number of characters to copy into the buffer. The actual number of characters copied is returned from this method.</param>
+ <returns>The number of characters read into the buffer. The value zero is returned when there is no more text content.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.ResolveEntity">
+ <summary>When overridden in a derived class, resolves the entity reference for <see langword="EntityReference" /> nodes.</summary>
+ <exception cref="T:System.InvalidOperationException">The reader is not positioned on an <see langword="EntityReference" /> node; this implementation of the reader cannot resolve entities (<see cref="P:System.Xml.XmlReader.CanResolveEntity" /> returns <see langword="false" />).
+-or-
+An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.SchemaInfo">
+ <summary>Gets the schema information that has been assigned to the current node as a result of schema validation.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.IXmlSchemaInfo" /> object containing the schema information for the current node. Schema information can be set on elements, attributes, or on text nodes with a non-null <see cref="P:System.Xml.XmlReader.ValueType" /> (typed values).
+ If the current node is not one of the above node types, or if the <see langword="XmlReader" /> instance does not report schema information, this property returns <see langword="null" />.
+ If this property is called from an <see cref="T:System.Xml.XmlTextReader" /> or an <see cref="T:System.Xml.XmlValidatingReader" /> object, this property always returns <see langword="null" />. These <see langword="XmlReader" /> implementations do not expose schema information through the <see langword="SchemaInfo" /> property.
+
+ If you have to get the post-schema-validation information set (PSVI) for an element, position the reader on the end tag of the element, rather than on the start tag. You get the PSVI through the <see langword="SchemaInfo" /> property of a reader. The validating reader that is created through <see cref="Overload:System.Xml.XmlReader.Create" /> with the <see cref="P:System.Xml.XmlReaderSettings.ValidationType" /> property set to <see cref="F:System.Xml.ValidationType.Schema" /> has complete PSVI for an element only when the reader is positioned on the end tag of an element.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.Settings">
+ <summary>Gets the <see cref="T:System.Xml.XmlReaderSettings" /> object used to create this <see cref="T:System.Xml.XmlReader" /> instance.</summary>
+ <returns>The <see cref="T:System.Xml.XmlReaderSettings" /> object used to create this reader instance. If this reader was not created using the <see cref="Overload:System.Xml.XmlReader.Create" /> method, this property returns <see langword="null" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.Skip">
+ <summary>Skips the children of the current node.</summary>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlReader.SkipAsync">
+ <summary>Asynchronously skips the children of the current node.</summary>
+ <returns>The current node.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlReader" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlReaderSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlReaderSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.Value">
+ <summary>When overridden in a derived class, gets the text value of the current node.</summary>
+ <returns>The value returned depends on the <see cref="P:System.Xml.XmlReader.NodeType" /> of the node. The following table lists node types that have a value to return. All other node types return <see langword="String.Empty" />.
+ Node type
+
+ Value
+
+ <see langword="Attribute" /> The value of the attribute.
+
+ <see langword="CDATA" /> The content of the CDATA section.
+
+ <see langword="Comment" /> The content of the comment.
+
+ <see langword="DocumentType" /> The internal subset.
+
+ <see langword="ProcessingInstruction" /> The entire content, excluding the target.
+
+ <see langword="SignificantWhitespace" /> The white space between markup in a mixed content model.
+
+ <see langword="Text" /> The content of the text node.
+
+ <see langword="Whitespace" /> The white space between markup.
+
+ <see langword="XmlDeclaration" /> The content of the declaration.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.ValueType">
+ <summary>Gets The Common Language Runtime (CLR) type for the current node.</summary>
+ <returns>The CLR type that corresponds to the typed value of the node. The default is <see langword="System.String" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.XmlLang">
+ <summary>When overridden in a derived class, gets the current <see langword="xml:lang" /> scope.</summary>
+ <returns>The current <see langword="xml:lang" /> scope.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlReader.XmlSpace">
+ <summary>When overridden in a derived class, gets the current <see langword="xml:space" /> scope.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlSpace" /> values. If no <see langword="xml:space" /> scope exists, this property defaults to <see langword="XmlSpace.None" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlReader" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="T:System.Xml.XmlReaderSettings">
+ <summary>Specifies a set of features to support on the <see cref="T:System.Xml.XmlReader" /> object created by the <see cref="Overload:System.Xml.XmlReader.Create" /> method.</summary>
+ </member>
+ <member name="M:System.Xml.XmlReaderSettings.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlReaderSettings" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.Async">
+ <summary>Gets or sets whether asynchronous <see cref="T:System.Xml.XmlReader" /> methods can be used on a particular <see cref="T:System.Xml.XmlReader" /> instance.</summary>
+ <returns>
+ <see langword="true" /> if asynchronous methods can be used; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.CheckCharacters">
+ <summary>Gets or sets a value indicating whether to do character checking.</summary>
+ <returns>
+ <see langword="true" /> to do character checking; otherwise <see langword="false" />. The default is <see langword="true" />.
+
+ If the <see cref="T:System.Xml.XmlReader" /> is processing text data, it always checks that the XML names and text content are valid, regardless of the property setting. Setting <see cref="P:System.Xml.XmlReaderSettings.CheckCharacters" /> to <see langword="false" /> turns off character checking for character entity references.</returns>
+ </member>
+ <member name="M:System.Xml.XmlReaderSettings.Clone">
+ <summary>Creates a copy of the <see cref="T:System.Xml.XmlReaderSettings" /> instance.</summary>
+ <returns>The cloned <see cref="T:System.Xml.XmlReaderSettings" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.CloseInput">
+ <summary>Gets or sets a value indicating whether the underlying stream or <see cref="T:System.IO.TextReader" /> should be closed when the reader is closed.</summary>
+ <returns>
+ <see langword="true" /> to close the underlying stream or <see cref="T:System.IO.TextReader" /> when the reader is closed; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.ConformanceLevel">
+ <summary>Gets or sets the level of conformance which the <see cref="T:System.Xml.XmlReader" /> will comply.</summary>
+ <returns>One of the enumeration values that specifies the level of conformance that the XML reader will enforce. The default is <see cref="F:System.Xml.ConformanceLevel.Document" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.DtdProcessing">
+ <summary>Gets or sets a value that determines the processing of DTDs.</summary>
+ <returns>One of the enumeration values that determines the processing of DTDs. The default is <see cref="F:System.Xml.DtdProcessing.Prohibit" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.IgnoreComments">
+ <summary>Gets or sets a value indicating whether to ignore comments.</summary>
+ <returns>
+ <see langword="true" /> to ignore comments; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.IgnoreProcessingInstructions">
+ <summary>Gets or sets a value indicating whether to ignore processing instructions.</summary>
+ <returns>
+ <see langword="true" /> to ignore processing instructions; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.IgnoreWhitespace">
+ <summary>Gets or sets a value indicating whether to ignore insignificant white space.</summary>
+ <returns>
+ <see langword="true" /> to ignore white space; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.LineNumberOffset">
+ <summary>Gets or sets line number offset of the <see cref="T:System.Xml.XmlReader" /> object.</summary>
+ <returns>The line number offset. The default is 0.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.LinePositionOffset">
+ <summary>Gets or sets line position offset of the <see cref="T:System.Xml.XmlReader" /> object.</summary>
+ <returns>The line position offset. The default is 0.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.MaxCharactersFromEntities">
+ <summary>Gets or sets a value indicating the maximum allowable number of characters in a document that result from expanding entities.</summary>
+ <returns>The maximum allowable number of characters from expanded entities. The default is 0.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.MaxCharactersInDocument">
+ <summary>Gets or sets a value indicating the maximum allowable number of characters in an XML document. A zero (0) value means no limits on the size of the XML document. A non-zero value specifies the maximum size, in characters.</summary>
+ <returns>The maximum allowable number of characters in an XML document. The default is 0.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.NameTable">
+ <summary>Gets or sets the <see cref="T:System.Xml.XmlNameTable" /> used for atomized string comparisons.</summary>
+ <returns>The <see cref="T:System.Xml.XmlNameTable" /> that stores all the atomized strings used by all <see cref="T:System.Xml.XmlReader" /> instances created using this <see cref="T:System.Xml.XmlReaderSettings" /> object.
+ The default is <see langword="null" />. The created <see cref="T:System.Xml.XmlReader" /> instance will use a new empty <see cref="T:System.Xml.NameTable" /> if this value is <see langword="null" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.ProhibitDtd">
+ <summary>Gets or sets a value indicating whether to prohibit document type definition (DTD) processing. This property is obsolete. Use <see cref="P:System.Xml.XmlTextReader.DtdProcessing" /> instead.</summary>
+ <returns>
+ <see langword="true" /> to prohibit DTD processing; otherwise <see langword="false" />. The default is <see langword="true" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlReaderSettings.Reset">
+ <summary>Resets the members of the settings class to their default values.</summary>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.Schemas">
+ <summary>Gets or sets the <see cref="T:System.Xml.Schema.XmlSchemaSet" /> to use when performing schema validation.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaSet" /> to use when performing schema validation. The default is an empty <see cref="T:System.Xml.Schema.XmlSchemaSet" /> object.</returns>
+ </member>
+ <member name="E:System.Xml.XmlReaderSettings.ValidationEventHandler">
+ <summary>Occurs when the reader encounters validation errors.</summary>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.ValidationFlags">
+ <summary>Gets or sets a value indicating the schema validation settings. This setting applies to <see cref="T:System.Xml.XmlReader" /> objects that validate schemas (<see cref="P:System.Xml.XmlReaderSettings.ValidationType" /> property set to <see langword="ValidationType.Schema" />).</summary>
+ <returns>A bitwise combination of enumeration values that specify validation options. <see cref="F:System.Xml.Schema.XmlSchemaValidationFlags.ProcessIdentityConstraints" /> and <see cref="F:System.Xml.Schema.XmlSchemaValidationFlags.AllowXmlAttributes" /> are enabled by default. <see cref="F:System.Xml.Schema.XmlSchemaValidationFlags.ProcessInlineSchema" />, <see cref="F:System.Xml.Schema.XmlSchemaValidationFlags.ProcessSchemaLocation" />, and <see cref="F:System.Xml.Schema.XmlSchemaValidationFlags.ReportValidationWarnings" /> are disabled by default.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.ValidationType">
+ <summary>Gets or sets a value indicating whether the <see cref="T:System.Xml.XmlReader" /> will perform validation or type assignment when reading.</summary>
+ <returns>One of the <see cref="T:System.Xml.ValidationType" /> values that indicates whether XmlReader will perform validation or type assignment when reading. The default is <see langword="ValidationType.None" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlReaderSettings.XmlResolver">
+ <summary>Sets the <see cref="T:System.Xml.XmlResolver" /> used to access external documents.</summary>
+ <returns>An <see cref="T:System.Xml.XmlResolver" /> used to access external documents. If set to <see langword="null" />, an <see cref="T:System.Xml.XmlException" /> is thrown when the <see cref="T:System.Xml.XmlReader" /> tries to access an external resource. The default is a new <see cref="T:System.Xml.XmlUrlResolver" /> with no credentials. Starting with the .NET Framework 4.5.2, this setting has a default value of <see langword="null" />.</returns>
+ </member>
+ <member name="T:System.Xml.XmlResolver">
+ <summary>Resolves external XML resources named by a Uniform Resource Identifier (URI).</summary>
+ </member>
+ <member name="M:System.Xml.XmlResolver.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlResolver" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.XmlResolver.Credentials">
+ <summary>When overridden in a derived class, sets the credentials used to authenticate web requests.</summary>
+ <returns>The credentials to be used to authenticate web requests. If this property is not set, the value defaults to <see langword="null" />; that is, the <see langword="XmlResolver" /> has no user credentials.</returns>
+ </member>
+ <member name="M:System.Xml.XmlResolver.GetEntity(System.Uri,System.String,System.Type)">
+ <summary>When overridden in a derived class, maps a URI to an object that contains the actual resource.</summary>
+ <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)" />.</param>
+ <param name="role">Currently not used.</param>
+ <param name="ofObjectToReturn">The type of object to return. The current version only returns System.IO.Stream objects.</param>
+ <returns>A stream object or <see langword="null" /> if a type other than stream is specified.</returns>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="ofObjectToReturn" /> is not a <see langword="Stream" /> type.</exception>
+ <exception cref="T:System.UriFormatException">The specified URI is not an absolute URI.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="absoluteUri" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.Exception">There is a runtime error (for example, an interrupted server connection).</exception>
+ </member>
+ <member name="M:System.Xml.XmlResolver.GetEntityAsync(System.Uri,System.String,System.Type)">
+ <summary>Asynchronously maps a URI to an object that contains the actual resource.</summary>
+ <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)" />.</param>
+ <param name="role">Currently not used.</param>
+ <param name="ofObjectToReturn">The type of object to return. The current version only returns <see cref="T:System.IO.Stream" /> objects.</param>
+ <returns>A stream object or <see langword="null" /> if a type other than stream is specified.</returns>
+ </member>
+ <member name="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)">
+ <summary>When overridden in a derived class, resolves the absolute URI from the base and relative URIs.</summary>
+ <param name="baseUri">The base URI used to resolve the relative URI.</param>
+ <param name="relativeUri">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.</param>
+ <returns>The absolute URI or <see langword="null" /> if the relative URI cannot be resolved.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="relativeUri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlResolver.SupportsType(System.Uri,System.Type)">
+ <summary>Enables the resolver to return types other than <see cref="T:System.IO.Stream" />.</summary>
+ <param name="absoluteUri">The URI.</param>
+ <param name="type">The type to return.</param>
+ <returns>
+ <see langword="true" /> if the <paramref name="type" /> is supported; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="T:System.Xml.XmlSecureResolver">
+ <summary>Helps to secure another implementation of <see cref="T:System.Xml.XmlResolver" /> by wrapping the <see cref="T:System.Xml.XmlResolver" /> object and restricting the resources that the underlying <see cref="T:System.Xml.XmlResolver" /> has access to.</summary>
+ </member>
+ <member name="M:System.Xml.XmlSecureResolver.#ctor(System.Xml.XmlResolver,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlSecureResolver" /> class with the <see cref="T:System.Xml.XmlResolver" /> and URL provided.</summary>
+ <param name="resolver">The XML resolver that is wrapped by the <see cref="T:System.Xml.XmlSecureResolver" />.</param>
+ <param name="securityUrl">The URL used to create the <see cref="T:System.Security.PermissionSet" /> that will be applied to the underlying <see cref="T:System.Xml.XmlResolver" />. The <see cref="T:System.Xml.XmlSecureResolver" /> calls <see cref="M:System.Security.PermissionSet.PermitOnly" /> on the created <see cref="T:System.Security.PermissionSet" /> before calling <see cref="M:System.Xml.XmlSecureResolver.GetEntity(System.Uri,System.String,System.Type)" /> on the underlying <see cref="T:System.Xml.XmlResolver" />.</param>
+ </member>
+ <member name="P:System.Xml.XmlSecureResolver.Credentials">
+ <summary>Sets credentials used to authenticate web requests.</summary>
+ <returns>The credentials to be used to authenticate web requests. The <see cref="T:System.Xml.XmlSecureResolver" /> sets the given credentials on the underlying <see cref="T:System.Xml.XmlResolver" />. If this property is not set, the value defaults to <see langword="null" />; that is, the <see cref="T:System.Xml.XmlSecureResolver" /> has no user credentials.</returns>
+ </member>
+ <member name="M:System.Xml.XmlSecureResolver.GetEntity(System.Uri,System.String,System.Type)">
+ <summary>Maps a URI to an object that contains the actual resource. This method temporarily sets the <see cref="T:System.Security.PermissionSet" /> created in the constructor by calling <see cref="M:System.Security.PermissionSet.PermitOnly" /> before calling <see langword="GetEntity" /> on the underlying <see cref="T:System.Xml.XmlResolver" /> to open the resource.</summary>
+ <param name="absoluteUri">The URI that is returned from <see cref="M:System.Xml.XmlSecureResolver.ResolveUri(System.Uri,System.String)" />.</param>
+ <param name="role">Currently not used.</param>
+ <param name="ofObjectToReturn">The type of object to return. The current version only returns <see cref="T:System.IO.Stream" /> objects.</param>
+ <returns>The stream returned by calling <see langword="GetEntity" /> on the underlying <see cref="T:System.Xml.XmlResolver" />. If a type other than <see cref="T:System.IO.Stream" /> is specified, the method returns <see langword="null" />.</returns>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="ofObjectToReturn" /> is neither <see langword="null" /> nor a <see cref="T:System.IO.Stream" /> type.</exception>
+ <exception cref="T:System.UriFormatException">The specified URI is not an absolute URI.</exception>
+ <exception cref="T:System.NullReferenceException">
+ <paramref name="absoluteUri" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.Exception">There is a runtime error (for example, an interrupted server connection).</exception>
+ </member>
+ <member name="M:System.Xml.XmlSecureResolver.GetEntityAsync(System.Uri,System.String,System.Type)">
+ <summary>Asynchronously maps a URI to an object that contains the actual resource.</summary>
+ <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlSecureResolver.ResolveUri(System.Uri,System.String)" />.</param>
+ <param name="role">Currently not used.</param>
+ <param name="ofObjectToReturn">The type of object to return. The current version only returns <see cref="T:System.IO.Stream" /> objects.</param>
+ <returns>The stream returned by calling <see langword="GetEntity" /> on the underlying <see cref="T:System.Xml.XmlResolver" />. If a type other than <see cref="T:System.IO.Stream" /> is specified, the method returns <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlSecureResolver.ResolveUri(System.Uri,System.String)">
+ <summary>Resolves the absolute URI from the base and relative URIs by calling <see langword="ResolveUri" /> on the underlying <see cref="T:System.Xml.XmlResolver" />.</summary>
+ <param name="baseUri">The base URI used to resolve the relative URI.</param>
+ <param name="relativeUri">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.</param>
+ <returns>The absolute URI or <see langword="null" /> if the relative URI cannot be resolved (returned by calling <see langword="ResolveUri" /> on the underlying <see cref="T:System.Xml.XmlResolver" />).</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="relativeUri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.Xml.XmlSignificantWhitespace">
+ <summary>Represents white space between markup in a mixed content node or white space within an xml:space= 'preserve' scope. This is also referred to as significant white space.</summary>
+ </member>
+ <member name="M:System.Xml.XmlSignificantWhitespace.#ctor(System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlSignificantWhitespace" /> class.</summary>
+ <param name="strData">The white space characters of the node.</param>
+ <param name="doc">The <see cref="T:System.Xml.XmlDocument" /> object.</param>
+ </member>
+ <member name="M:System.Xml.XmlSignificantWhitespace.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <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>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlSignificantWhitespace.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For <see langword="XmlSignificantWhitespace" /> nodes, this property returns <see langword="#significant-whitespace" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlSignificantWhitespace.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For <see langword="XmlSignificantWhitespace" /> nodes, this property returns <see langword="#significant-whitespace" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlSignificantWhitespace.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>For <see langword="XmlSignificantWhitespace" /> nodes, this value is XmlNodeType.SignificantWhitespace.</returns>
+ </member>
+ <member name="P:System.Xml.XmlSignificantWhitespace.ParentNode">
+ <summary>Gets the parent of the current node.</summary>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> parent node of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlSignificantWhitespace.PreviousText">
+ <summary>Gets the text node that immediately precedes this node.</summary>
+ <returns>Returns <see cref="T:System.Xml.XmlNode" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlSignificantWhitespace.Value">
+ <summary>Gets or sets the value of the node.</summary>
+ <returns>The white space characters found in the node.</returns>
+ <exception cref="T:System.ArgumentException">Setting <see langword="Value" /> to invalid white space characters.</exception>
+ </member>
+ <member name="M:System.Xml.XmlSignificantWhitespace.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlSignificantWhitespace.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlSpace">
+ <summary>Specifies the current <see langword="xml:space" /> scope.</summary>
+ </member>
+ <member name="F:System.Xml.XmlSpace.Default">
+ <summary>The <see langword="xml:space" /> scope equals <see langword="default" />.</summary>
+ </member>
+ <member name="F:System.Xml.XmlSpace.None">
+ <summary>No <see langword="xml:space" /> scope.</summary>
+ </member>
+ <member name="F:System.Xml.XmlSpace.Preserve">
+ <summary>The <see langword="xml:space" /> scope equals <see langword="preserve" />.</summary>
+ </member>
+ <member name="T:System.Xml.XmlText">
+ <summary>Represents the text content of an element or attribute.</summary>
+ </member>
+ <member name="M:System.Xml.XmlText.#ctor(System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlText" /> class.</summary>
+ <param name="strData">The content of the node; see the <see cref="P:System.Xml.XmlText.Value" /> property.</param>
+ <param name="doc">The parent XML document.</param>
+ </member>
+ <member name="M:System.Xml.XmlText.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlText.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For text nodes, this property returns <see langword="#text" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlText.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For text nodes, this property returns <see langword="#text" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlText.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>For text nodes, this value is XmlNodeType.Text.</returns>
+ </member>
+ <member name="P:System.Xml.XmlText.ParentNode">
+ <summary>Gets the parent of this node (for nodes that can have parents).</summary>
+ <returns>The <see langword="XmlNode" /> that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is <see langword="null" />. For all other nodes, the value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node. The following table describes the possible return values for the <see langword="ParentNode" /> property.</returns>
+ </member>
+ <member name="P:System.Xml.XmlText.PreviousText">
+ <summary>Gets the text node that immediately precedes this node.</summary>
+ <returns>Returns <see cref="T:System.Xml.XmlNode" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlText.SplitText(System.Int32)">
+ <summary>Splits the node into two nodes at the specified offset, keeping both in the tree as siblings.</summary>
+ <param name="offset">The offset at which to split the node.</param>
+ <returns>The new node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlText.Value">
+ <summary>Gets or sets the value of the node.</summary>
+ <returns>The content of the text node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlText.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. <see langword="XmlText" /> nodes do not have children, so this method has no effect.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlText.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see langword="XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlTextReader">
+ <summary>Represents a reader that provides fast, non-cached, forward-only access to XML data.
+ Starting with the .NET Framework 2.0, we recommend that you use the <see cref="T:System.Xml.XmlReader" /> class instead.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor">
+ <summary>Initializes a new instance of the <see langword="XmlTextReader" />.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified stream.</summary>
+ <param name="input">The stream containing the XML data to read.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.Stream,System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified stream and <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="input">The stream containing the XML data to read.</param>
+ <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
+ <exception cref="T:System.NullReferenceException">The <paramref name="input" /> or <paramref name="nt" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.Stream,System.Xml.XmlNodeType,System.Xml.XmlParserContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified stream, <see cref="T:System.Xml.XmlNodeType" />, and <see cref="T:System.Xml.XmlParserContext" />.</summary>
+ <param name="xmlFragment">The stream containing the XML fragment to parse.</param>
+ <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>
+ <param name="context">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.</param>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="fragType" /> is not an Element, Attribute, or Document <see langword="XmlNodeType" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="xmlFragment" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.TextReader)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified <see cref="T:System.IO.TextReader" />.</summary>
+ <param name="input">The <see langword="TextReader" /> containing the XML data to read.</param>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.IO.TextReader,System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified <see cref="T:System.IO.TextReader" /> and <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="input">The <see langword="TextReader" /> containing the XML data to read.</param>
+ <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
+ <exception cref="T:System.NullReferenceException">The <paramref name="nt" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified file.</summary>
+ <param name="url">The URL for the file containing the XML data. The <see cref="P:System.Xml.XmlTextReader.BaseURI" /> is set to this value.</param>
+ <exception cref="T:System.IO.FileNotFoundException">The specified file cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">Part of the filename or directory cannot be found.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="url" /> is an empty string.</exception>
+ <exception cref="T:System.Net.WebException">The remote filename cannot be resolved.
+ -or-
+ An error occurred while processing the request.</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="url" /> is not a valid URI.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified URL and stream.</summary>
+ <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>
+ <param name="input">The stream containing the XML data to read.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="input" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.IO.Stream,System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified URL, stream and <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="url">The URL to use for resolving external resources. The <see cref="P:System.Xml.XmlTextReader.BaseURI" /> is set to this value. If <paramref name="url" /> is <see langword="null" />, <see langword="BaseURI" /> is set to <see langword="String.Empty" />.</param>
+ <param name="input">The stream containing the XML data to read.</param>
+ <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
+ <exception cref="T:System.NullReferenceException">The <paramref name="input" /> or <paramref name="nt" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.IO.TextReader)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified URL and <see cref="T:System.IO.TextReader" />.</summary>
+ <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>
+ <param name="input">The <see langword="TextReader" /> containing the XML data to read.</param>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.IO.TextReader,System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified URL, <see cref="T:System.IO.TextReader" /> and <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="url">The URL to use for resolving external resources. The <see cref="P:System.Xml.XmlTextReader.BaseURI" /> is set to this value. If <paramref name="url" /> is <see langword="null" />, <see langword="BaseURI" /> is set to <see langword="String.Empty" />.</param>
+ <param name="input">The <see langword="TextReader" /> containing the XML data to read.</param>
+ <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="nt" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified file and <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="url">The URL for the file containing the XML data to read.</param>
+ <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
+ <exception cref="T:System.NullReferenceException">The <paramref name="nt" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The specified file cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">Part of the filename or directory cannot be found.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="url" /> is an empty string.</exception>
+ <exception cref="T:System.Net.WebException">The remote filename cannot be resolved.
+ -or-
+ An error occurred while processing the request.</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="url" /> is not a valid URI.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified string, <see cref="T:System.Xml.XmlNodeType" />, and <see cref="T:System.Xml.XmlParserContext" />.</summary>
+ <param name="xmlFragment">The string containing the XML fragment to parse.</param>
+ <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>
+ <param name="context">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.</param>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="fragType" /> is not an <see langword="Element" />, <see langword="Attribute" />, or <see langword="Document" /><see langword="XmlNodeType" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="xmlFragment" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.#ctor(System.Xml.XmlNameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlTextReader" /> class with the specified <see cref="T:System.Xml.XmlNameTable" />.</summary>
+ <param name="nt">The <see langword="XmlNameTable" /> to use.</param>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.AttributeCount">
+ <summary>Gets the number of attributes on the current node.</summary>
+ <returns>The number of attributes on the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.BaseURI">
+ <summary>Gets the base URI of the current node.</summary>
+ <returns>The base URI of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.CanReadBinaryContent">
+ <summary>Gets a value indicating whether the <see cref="T:System.Xml.XmlTextReader" /> implements the binary content read methods.</summary>
+ <returns>
+ <see langword="true" /> if the binary content read methods are implemented; otherwise <see langword="false" />. The <see cref="T:System.Xml.XmlTextReader" /> class always returns <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.CanReadValueChunk">
+ <summary>Gets a value indicating whether the <see cref="T:System.Xml.XmlTextReader" /> implements the <see cref="M:System.Xml.XmlReader.ReadValueChunk(System.Char[],System.Int32,System.Int32)" /> method.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XmlTextReader" /> implements the <see cref="M:System.Xml.XmlReader.ReadValueChunk(System.Char[],System.Int32,System.Int32)" /> method; otherwise <see langword="false" />. The <see cref="T:System.Xml.XmlTextReader" /> class always returns <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.CanResolveEntity">
+ <summary>Gets a value indicating whether this reader can parse and resolve entities.</summary>
+ <returns>
+ <see langword="true" /> if the reader can parse and resolve entities; otherwise, <see langword="false" />. The <see langword="XmlTextReader" /> class always returns <see langword="true" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.Close">
+ <summary>Changes the <see cref="P:System.Xml.XmlReader.ReadState" /> to <see langword="Closed" />.</summary>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.Depth">
+ <summary>Gets the depth of the current node in the XML document.</summary>
+ <returns>The depth of the current node in the XML document.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.DtdProcessing">
+ <summary>Gets or sets the <see cref="T:System.Xml.DtdProcessing" /> enumeration.</summary>
+ <returns>The <see cref="T:System.Xml.DtdProcessing" /> enumeration.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.Encoding">
+ <summary>Gets the encoding of the document.</summary>
+ <returns>The encoding value. If no encoding attribute exists, and there is no byte-order mark, this defaults to UTF-8.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.EntityHandling">
+ <summary>Gets or sets a value that specifies how the reader handles entities.</summary>
+ <returns>One of the <see cref="T:System.Xml.EntityHandling" /> values. If no <see langword="EntityHandling" /> is specified, it defaults to <see langword="EntityHandling.ExpandCharEntities" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.EOF">
+ <summary>Gets a value indicating whether the reader is positioned at the end of the stream.</summary>
+ <returns>
+ <see langword="true" /> if the reader is positioned at the end of the stream; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.GetAttribute(System.Int32)">
+ <summary>Gets the value of the attribute with the specified index.</summary>
+ <param name="i">The index of the attribute. The index is zero-based. (The first attribute has index 0.)</param>
+ <returns>The value of the specified attribute.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="i" /> parameter is less than 0 or greater than or equal to <see cref="P:System.Xml.XmlTextReader.AttributeCount" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.GetAttribute(System.String)">
+ <summary>Gets the value of the attribute with the specified name.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.GetAttribute(System.String,System.String)">
+ <summary>Gets the value of the attribute with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned. This method does not move the reader.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.GetNamespacesInScope(System.Xml.XmlNamespaceScope)">
+ <summary>Gets a collection that contains all namespaces currently in-scope.</summary>
+ <param name="scope">An <see cref="T:System.Xml.XmlNamespaceScope" /> value that specifies the type of namespace nodes to return.</param>
+ <returns>An <see cref="T:System.Collections.IDictionary" /> object that contains all the current in-scope namespaces. If the reader is not positioned on an element, an empty dictionary (no namespaces) is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.GetRemainder">
+ <summary>Gets the remainder of the buffered XML.</summary>
+ <returns>A <see cref="T:System.IO.TextReader" /> containing the remainder of the buffered XML.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.HasLineInfo">
+ <summary>Gets a value indicating whether the class can return line information.</summary>
+ <returns>
+ <see langword="true" /> if the class can return line information; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.HasValue">
+ <summary>Gets a value indicating whether the current node can have a <see cref="P:System.Xml.XmlTextReader.Value" /> other than <see langword="String.Empty" />.</summary>
+ <returns>
+ <see langword="true" /> if the node on which the reader is currently positioned can have a <see langword="Value" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.IsDefault">
+ <summary>Gets a value indicating whether the current node is an attribute that was generated from the default value defined in the DTD or schema.</summary>
+ <returns>This property always returns <see langword="false" />. (<see cref="T:System.Xml.XmlTextReader" /> does not expand default attributes.)</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.IsEmptyElement">
+ <summary>Gets a value indicating whether the current node is an empty element (for example, <c>&lt;MyElement/&gt;</c>).</summary>
+ <returns>
+ <see langword="true" /> if the current node is an element (<see cref="P:System.Xml.XmlTextReader.NodeType" /> equals <see langword="XmlNodeType.Element" />) that ends with <c>/&gt;</c>; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.LineNumber">
+ <summary>Gets the current line number.</summary>
+ <returns>The current line number.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.LinePosition">
+ <summary>Gets the current line position.</summary>
+ <returns>The current line position.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.LocalName">
+ <summary>Gets the local name of the current node.</summary>
+ <returns>The name of the current node with the prefix removed. For example, <see langword="LocalName" /> is <see langword="book" /> for the element <c>&lt;bk:book&gt;</c>.
+ For node types that do not have a name (like <see langword="Text" />, <see langword="Comment" />, and so on), this property returns <see langword="String.Empty" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.LookupNamespace(System.String)">
+ <summary>Resolves a namespace prefix in the current element's scope.</summary>
+ <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>
+ <returns>The namespace URI to which the prefix maps or <see langword="null" /> if no matching prefix is found.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="P:System.Xml.XmlTextReader.Namespaces" /> property is set to <see langword="true" /> and the <paramref name="prefix" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.MoveToAttribute(System.Int32)">
+ <summary>Moves to the attribute with the specified index.</summary>
+ <param name="i">The index of the attribute.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="i" /> parameter is less than 0 or greater than or equal to <see cref="P:System.Xml.XmlReader.AttributeCount" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.MoveToAttribute(System.String)">
+ <summary>Moves to the attribute with the specified name.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>
+ <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the reader's position does not change.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.MoveToAttribute(System.String,System.String)">
+ <summary>Moves to the attribute with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>
+ <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the reader's position does not change.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.MoveToElement">
+ <summary>Moves to the element that contains the current attribute node.</summary>
+ <returns>
+ <see langword="true" /> if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); <see langword="false" /> if the reader is not positioned on an attribute (the position of the reader does not change).</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.MoveToFirstAttribute">
+ <summary>Moves to the first attribute.</summary>
+ <returns>
+ <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).</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.MoveToNextAttribute">
+ <summary>Moves to the next attribute.</summary>
+ <returns>
+ <see langword="true" /> if there is a next attribute; <see langword="false" /> if there are no more attributes.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.Name">
+ <summary>Gets the qualified name of the current node.</summary>
+ <returns>The qualified name of the current node. For example, <see langword="Name" /> is <see langword="bk:book" /> for the element <c>&lt;bk:book&gt;</c>.
+ The name returned is dependent on the <see cref="P:System.Xml.XmlTextReader.NodeType" /> of the node. The following node types return the listed values. All other node types return an empty string.
+ Node Type
+
+ Name
+
+ <see langword="Attribute" /> The name of the attribute.
+
+ <see langword="DocumentType" /> The document type name.
+
+ <see langword="Element" /> The tag name.
+
+ <see langword="EntityReference" /> The name of the entity referenced.
+
+ <see langword="ProcessingInstruction" /> The target of the processing instruction.
+
+ <see langword="XmlDeclaration" /> The literal string <see langword="xml" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.Namespaces">
+ <summary>Gets or sets a value indicating whether to do namespace support.</summary>
+ <returns>
+ <see langword="true" /> to do namespace support; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
+ <exception cref="T:System.InvalidOperationException">Setting this property after a read operation has occurred (<see cref="P:System.Xml.XmlTextReader.ReadState" /> is not <see langword="ReadState.Initial" />).</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.NamespaceURI">
+ <summary>Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.</summary>
+ <returns>The namespace URI of the current node; otherwise an empty string.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.NameTable">
+ <summary>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this implementation.</summary>
+ <returns>The <see langword="XmlNameTable" /> enabling you to get the atomized version of a string within the node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlNodeType" /> values representing the type of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.Normalization">
+ <summary>Gets or sets a value indicating whether to normalize white space and attribute values.</summary>
+ <returns>
+ <see langword="true" /> to normalize; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ <exception cref="T:System.InvalidOperationException">Setting this property when the reader is closed (<see cref="P:System.Xml.XmlTextReader.ReadState" /> is <see langword="ReadState.Closed" />).</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.Prefix">
+ <summary>Gets the namespace prefix associated with the current node.</summary>
+ <returns>The namespace prefix associated with the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.ProhibitDtd">
+ <summary>Gets or sets a value indicating whether to allow DTD processing. This property is obsolete. Use <see cref="P:System.Xml.XmlTextReader.DtdProcessing" /> instead.</summary>
+ <returns>
+ <see langword="true" /> to disallow DTD processing; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.QuoteChar">
+ <summary>Gets the quotation mark character used to enclose the value of an attribute node.</summary>
+ <returns>The quotation mark character (" or ') used to enclose the value of an attribute node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.Read">
+ <summary>Reads the next node from the stream.</summary>
+ <returns>
+ <see langword="true" /> if the next node was read successfully; <see langword="false" /> if there are no more nodes to read.</returns>
+ <exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadAttributeValue">
+ <summary>Parses the attribute value into one or more <see langword="Text" />, <see langword="EntityReference" />, or <see langword="EndEntity" /> nodes.</summary>
+ <returns>
+ <see langword="true" /> if there are nodes to return.
+<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.
+An empty attribute, such as, <c>misc=""</c>, returns <see langword="true" /> with a single node with a value of <see langword="String.Empty" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Decodes Base64 and returns the decoded binary bytes.</summary>
+ <param name="array">The array of characters that serves as the buffer to which the text contents are written.</param>
+ <param name="offset">The zero-based index into the array specifying where the method can begin to write to the buffer.</param>
+ <param name="len">The number of bytes to write into the buffer.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.Xml.XmlException">The Base64 sequence is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The value of <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> &lt; 0, or <paramref name="len" /> &lt; 0, or <paramref name="len" /> &gt; <paramref name="array" />.Length- <paramref name="offset" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Decodes <see langword="BinHex" /> and returns the decoded binary bytes.</summary>
+ <param name="array">The byte array that serves as the buffer to which the decoded binary bytes are written.</param>
+ <param name="offset">The zero-based index into the array specifying where the method can begin to write to the buffer.</param>
+ <param name="len">The number of bytes to write into the buffer.</param>
+ <returns>The number of bytes written to your buffer.</returns>
+ <exception cref="T:System.Xml.XmlException">The <see langword="BinHex" /> sequence is not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">The value of <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> &lt; 0, or <paramref name="len" /> &lt; 0, or <paramref name="len" /> &gt; <paramref name="array" />.Length- <paramref name="offset" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadChars(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads the text contents of an element into a character buffer. This method is designed to read large streams of embedded text by calling it successively.</summary>
+ <param name="buffer">The array of characters that serves as the buffer to which the text contents are written.</param>
+ <param name="index">The position within <paramref name="buffer" /> where the method can begin writing text contents.</param>
+ <param name="count">The number of characters to write into <paramref name="buffer" />.</param>
+ <returns>The number of characters read. This can be <see langword="0" /> if the reader is not positioned on an element or if there is no more text content to return in the current context.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="count" /> is greater than the space specified in the <paramref name="buffer" /> (buffer size - <paramref name="index" />).</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" />
+ <see langword="&lt; 0" /> or <paramref name="count" /><see langword="&lt; 0" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadContentAsBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the content and returns the <see langword="Base64" /> decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <see cref="M:System.Xml.XmlTextReader.ReadContentAsBase64(System.Byte[],System.Int32,System.Int32)" /> is not supported in the current node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadContentAsBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the content and returns the <see langword="BinHex" /> decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <see cref="M:System.Xml.XmlTextReader.ReadContentAsBinHex(System.Byte[],System.Int32,System.Int32)" /> is not supported on the current node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlTextReader" /> implementation does not support this method.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadElementContentAsBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the element and decodes the Base64 content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not an element node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlTextReader" /> implementation does not support this method.</exception>
+ <exception cref="T:System.Xml.XmlException">The element contains mixed-content.</exception>
+ <exception cref="T:System.FormatException">The content cannot be converted to the requested type.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadElementContentAsBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the element and decodes the <see langword="BinHex" /> content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not an element node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlReader" /> implementation does not support this method.</exception>
+ <exception cref="T:System.Xml.XmlException">The element contains mixed-content.</exception>
+ <exception cref="T:System.FormatException">The content cannot be converted to the requested type.</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.ReadState">
+ <summary>Gets the state of the reader.</summary>
+ <returns>One of the <see cref="T:System.Xml.ReadState" /> values.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ReadString">
+ <summary>Reads the contents of an element or a text node as a string.</summary>
+ <returns>The contents of the element or text node. This can be an empty string if the reader is positioned on something other than an element or text node, or if there is no more text content to return in the current context.
+ <see langword="Note:" /> The text node can be either an element or an attribute text node.</returns>
+ <exception cref="T:System.Xml.XmlException">An error occurred while parsing the XML.</exception>
+ <exception cref="T:System.InvalidOperationException">An invalid operation was attempted.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ResetState">
+ <summary>Resets the state of the reader to ReadState.Initial.</summary>
+ <exception cref="T:System.InvalidOperationException">Calling <see langword="ResetState" /> if the reader was constructed using an <see cref="T:System.Xml.XmlParserContext" />.</exception>
+ <exception cref="T:System.Xml.XmlException">Documents in a single stream do not share the same encoding.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.ResolveEntity">
+ <summary>Resolves the entity reference for <see langword="EntityReference" /> nodes.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.Skip">
+ <summary>Skips the children of the current node.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.System#Xml#IXmlNamespaceResolver#GetNamespacesInScope(System.Xml.XmlNamespaceScope)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)" />.</summary>
+ <param name="scope">An <see cref="T:System.Xml.XmlNamespaceScope" /> value that specifies the type of namespace nodes to return.</param>
+ <returns>An <see cref="T:System.Collections.IDictionary" /> that contains the current in-scope namespaces.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.System#Xml#IXmlNamespaceResolver#LookupNamespace(System.String)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)" />.</summary>
+ <param name="prefix">The prefix whose namespace URI you wish to find.</param>
+ <returns>The namespace URI that is mapped to the prefix; <see langword="null" /> if the prefix is not mapped to a namespace URI.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextReader.System#Xml#IXmlNamespaceResolver#LookupPrefix(System.String)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)" />.</summary>
+ <param name="namespaceName">The namespace URI whose prefix you wish to find.</param>
+ <returns>The prefix that is mapped to the namespace URI; <see langword="null" /> if the namespace URI is not mapped to a prefix.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.Value">
+ <summary>Gets the text value of the current node.</summary>
+ <returns>The value returned depends on the <see cref="P:System.Xml.XmlTextReader.NodeType" /> of the node. The following table lists node types that have a value to return. All other node types return <see langword="String.Empty" />.
+ Node Type
+
+ Value
+
+ <see langword="Attribute" /> The value of the attribute.
+
+ <see langword="CDATA" /> The content of the CDATA section.
+
+ <see langword="Comment" /> The content of the comment.
+
+ <see langword="DocumentType" /> The internal subset.
+
+ <see langword="ProcessingInstruction" /> The entire content, excluding the target.
+
+ <see langword="SignificantWhitespace" /> The white space within an <see langword="xml:space" />= 'preserve' scope.
+
+ <see langword="Text" /> The content of the text node.
+
+ <see langword="Whitespace" /> The white space between markup.
+
+ <see langword="XmlDeclaration" /> The content of the declaration.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.WhitespaceHandling">
+ <summary>Gets or sets a value that specifies how white space is handled.</summary>
+ <returns>One of the <see cref="T:System.Xml.WhitespaceHandling" /> values. The default is <see langword="WhitespaceHandling.All" /> (returns <see langword="Whitespace" /> and <see langword="SignificantWhitespace" /> nodes).</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">Invalid value specified.</exception>
+ <exception cref="T:System.InvalidOperationException">Setting this property when the reader is closed (<see cref="P:System.Xml.XmlTextReader.ReadState" /> is <see langword="ReadState.Closed" />).</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.XmlLang">
+ <summary>Gets the current <see langword="xml:lang" /> scope.</summary>
+ <returns>The current <see langword="xml:lang" /> scope.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.XmlResolver">
+ <summary>Sets the <see cref="T:System.Xml.XmlResolver" /> used for resolving DTD references.</summary>
+ <returns>The <see langword="XmlResolver" /> to use. If set to <see langword="null" />, external resources are not resolved.
+ In version 1.1 of the .NET Framework, the caller must be fully trusted in order to specify an <see langword="XmlResolver" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextReader.XmlSpace">
+ <summary>Gets the current <see langword="xml:space" /> scope.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlSpace" /> values. If no <see langword="xml:space" /> scope exists, this property defaults to <see langword="XmlSpace.None" />.</returns>
+ </member>
+ <member name="T:System.Xml.XmlTextWriter">
+ <summary>Represents a writer that provides a fast, non-cached, forward-only way 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.
+ Starting with the .NET Framework 2.0, we recommend that you use the <see cref="T:System.Xml.XmlWriter" /> class instead.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Creates an instance of the <see langword="XmlTextWriter" /> class using the specified stream and encoding.</summary>
+ <param name="w">The stream to which you want to write.</param>
+ <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 <see langword="ProcessingInstruction" />.</param>
+ <exception cref="T:System.ArgumentException">The encoding is not supported or the stream cannot be written to.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="w" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.#ctor(System.IO.TextWriter)">
+ <summary>Creates an instance of the <see langword="XmlTextWriter" /> class using the specified <see cref="T:System.IO.TextWriter" />.</summary>
+ <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>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.#ctor(System.String,System.Text.Encoding)">
+ <summary>Creates an instance of the <see cref="T:System.Xml.XmlTextWriter" /> class using the specified file.</summary>
+ <param name="filename">The filename to write to. If the file exists, it truncates it and overwrites it with the new content.</param>
+ <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 <see langword="ProcessingInstruction" />.</param>
+ <exception cref="T:System.ArgumentException">The encoding is not supported; the filename is empty, contains only white space, or contains one or more invalid characters.</exception>
+ <exception cref="T:System.UnauthorizedAccessException">Access is denied.</exception>
+ <exception cref="T:System.ArgumentNullException">The filename is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The directory to write to is not found.</exception>
+ <exception cref="T:System.IO.IOException">The filename includes an incorrect or invalid syntax for file name, directory name, or volume label syntax.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.BaseStream">
+ <summary>Gets the underlying stream object.</summary>
+ <returns>The stream to which the <see langword="XmlTextWriter" /> is writing or <see langword="null" /> if the <see langword="XmlTextWriter" /> was constructed using a <see cref="T:System.IO.TextWriter" /> that does not inherit from the <see cref="T:System.IO.StreamWriter" /> class.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.Close">
+ <summary>Closes this stream and the underlying stream.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.Flush">
+ <summary>Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.</summary>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.Formatting">
+ <summary>Indicates how the output is formatted.</summary>
+ <returns>One of the <see cref="T:System.Xml.Formatting" /> values. The default is <see langword="Formatting.None" /> (no special formatting).</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.Indentation">
+ <summary>Gets or sets how many IndentChars to write for each level in the hierarchy when <see cref="P:System.Xml.XmlTextWriter.Formatting" /> is set to <see langword="Formatting.Indented" />.</summary>
+ <returns>Number of <see langword="IndentChars" /> for each level. The default is 2.</returns>
+ <exception cref="T:System.ArgumentException">Setting this property to a negative value.</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.IndentChar">
+ <summary>Gets or sets which character to use for indenting when <see cref="P:System.Xml.XmlTextWriter.Formatting" /> is set to <see langword="Formatting.Indented" />.</summary>
+ <returns>The character to use for indenting. The default is space.
+
+ The <see langword="XmlTextWriter" /> allows you to set this property to any character. To ensure valid XML, you must specify a valid white space character, 0x9, 0x10, 0x13 or 0x20.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.LookupPrefix(System.String)">
+ <summary>Returns the closest prefix defined in the current namespace scope for the namespace URI.</summary>
+ <param name="ns">Namespace URI whose prefix you want to find.</param>
+ <returns>The matching prefix. Or <see langword="null" /> if no matching namespace URI is found in the current scope.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ns" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.Namespaces">
+ <summary>Gets or sets a value indicating whether to do namespace support.</summary>
+ <returns>
+ <see langword="true" /> to support namespaces; otherwise, <see langword="false" />.
+The default is <see langword="true" />.</returns>
+ <exception cref="T:System.InvalidOperationException">You can only change this property when in the <see langword="WriteState.Start" /> state.</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.QuoteChar">
+ <summary>Gets or sets which character to use to quote attribute values.</summary>
+ <returns>The character to use to quote attribute values. This must be a single quote (&amp;#39;) or a double quote (&amp;#34;). The default is a double quote.</returns>
+ <exception cref="T:System.ArgumentException">Setting this property to something other than either a single or double quote.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Encodes the specified binary bytes as base64 and writes out the resulting text.</summary>
+ <param name="buffer">Byte array to encode.</param>
+ <param name="index">The position within the buffer indicating the start of the bytes to write.</param>
+ <param name="count">The number of bytes to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Xml.XmlTextWriter.WriteState" /> is <see langword="Closed" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Encodes the specified binary bytes as binhex and writes out the resulting text.</summary>
+ <param name="buffer">Byte array to encode.</param>
+ <param name="index">The position in the buffer indicating the start of the bytes to write.</param>
+ <param name="count">The number of bytes to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Xml.XmlTextWriter.WriteState" /> is Closed.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteCData(System.String)">
+ <summary>Writes out a &lt;![CDATA[...]]&gt; block containing the specified text.</summary>
+ <param name="text">Text to place inside the CDATA block.</param>
+ <exception cref="T:System.ArgumentException">The text would result in a non-well formed XML document.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Xml.XmlTextWriter.WriteState" /> is <see langword="Closed" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteCharEntity(System.Char)">
+ <summary>Forces the generation of a character entity for the specified Unicode character value.</summary>
+ <param name="ch">Unicode character for which to generate a character entity.</param>
+ <exception cref="T:System.ArgumentException">The character is in the surrogate pair character range, <see langword="0xd800" /> - <see langword="0xdfff" />; or the text would result in a non-well formed XML document.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Xml.XmlTextWriter.WriteState" /> is <see langword="Closed" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteChars(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes text one buffer at a time.</summary>
+ <param name="buffer">Character array containing the text to write.</param>
+ <param name="index">The position in the buffer indicating the start of the text to write.</param>
+ <param name="count">The number of characters to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.
+-or-
+The buffer length minus <paramref name="index" /> is less than <paramref name="count" />; the call results in surrogate pair characters being split or an invalid surrogate pair being written.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Xml.XmlTextWriter.WriteState" /> is Closed.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteComment(System.String)">
+ <summary>Writes out a comment &lt;!--...--&gt; containing the specified text.</summary>
+ <param name="text">Text to place inside the comment.</param>
+ <exception cref="T:System.ArgumentException">The text would result in a non-well formed XML document</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Xml.XmlTextWriter.WriteState" /> is <see langword="Closed" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteDocType(System.String,System.String,System.String,System.String)">
+ <summary>Writes the DOCTYPE declaration with the specified name and optional attributes.</summary>
+ <param name="name">The name of the DOCTYPE. This must be non-empty.</param>
+ <param name="pubid">If non-null it also writes PUBLIC "pubid" "sysid" where <paramref name="pubid" /> and <paramref name="sysid" /> are replaced with the value of the given arguments.</param>
+ <param name="sysid">If <paramref name="pubid" /> is null and <paramref name="sysid" /> is non-null it writes SYSTEM "sysid" where <paramref name="sysid" /> is replaced with the value of this argument.</param>
+ <param name="subset">If non-null it writes [subset] where subset is replaced with the value of this argument.</param>
+ <exception cref="T:System.InvalidOperationException">This method was called outside the prolog (after the root element).</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="name" /> is <see langword="null" /> or <see langword="String.Empty" />
+-or-
+the value for <paramref name="name" /> would result in invalid XML.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteEndAttribute">
+ <summary>Closes the previous <see cref="M:System.Xml.XmlTextWriter.WriteStartAttribute(System.String,System.String,System.String)" /> call.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteEndDocument">
+ <summary>Closes any open elements or attributes and puts the writer back in the Start state.</summary>
+ <exception cref="T:System.ArgumentException">The XML document is invalid.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteEndElement">
+ <summary>Closes one element and pops the corresponding namespace scope.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteEntityRef(System.String)">
+ <summary>Writes out an entity reference as <see langword="&amp;name;" />.</summary>
+ <param name="name">Name of the entity reference.</param>
+ <exception cref="T:System.ArgumentException">The text would result in a non-well formed XML document or <paramref name="name" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteFullEndElement">
+ <summary>Closes one element and pops the corresponding namespace scope.</summary>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteName(System.String)">
+ <summary>Writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation.</summary>
+ <param name="name">Name to write.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="name" /> is not a valid XML name; or <paramref name="name" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteNmToken(System.String)">
+ <summary>Writes out the specified name, ensuring it is a valid <see langword="NmToken" /> according to the W3C XML 1.0 recommendation.</summary>
+ <param name="name">Name to write.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="name" /> is not a valid <see langword="NmToken" />; or <paramref name="name" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteProcessingInstruction(System.String,System.String)">
+ <summary>Writes out a processing instruction with a space between the name and text as follows: &lt;?name text?&gt;.</summary>
+ <param name="name">Name of the processing instruction.</param>
+ <param name="text">Text to include in the processing instruction.</param>
+ <exception cref="T:System.ArgumentException">The text would result in a non-well formed XML document.
+ <paramref name="name" /> is either <see langword="null" /> or <see langword="String.Empty" />.
+ This method is being used to create an XML declaration after <see cref="M:System.Xml.XmlTextWriter.WriteStartDocument" /> has already been called.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteQualifiedName(System.String,System.String)">
+ <summary>Writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace.</summary>
+ <param name="localName">The local name to write.</param>
+ <param name="ns">The namespace URI to associate with the name.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="localName" /> is either <see langword="null" /> or <see langword="String.Empty" />.
+<paramref name="localName" /> is not a valid name according to the W3C Namespaces spec.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteRaw(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes raw markup manually from a character buffer.</summary>
+ <param name="buffer">Character array containing the text to write.</param>
+ <param name="index">The position within the buffer indicating the start of the text to write.</param>
+ <param name="count">The number of characters to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.
+-or-
+The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteRaw(System.String)">
+ <summary>Writes raw markup manually from a string.</summary>
+ <param name="data">String containing the text to write.</param>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteStartAttribute(System.String,System.String,System.String)">
+ <summary>Writes the start of an attribute.</summary>
+ <param name="prefix">
+ <see langword="Namespace" /> prefix of the attribute.</param>
+ <param name="localName">
+ <see langword="LocalName" /> of the attribute.</param>
+ <param name="ns">
+ <see langword="NamespaceURI" /> of the attribute</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="localName" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteStartDocument">
+ <summary>Writes the XML declaration with the version "1.0".</summary>
+ <exception cref="T:System.InvalidOperationException">This is not the first write method called after the constructor.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteStartDocument(System.Boolean)">
+ <summary>Writes the XML declaration with the version "1.0" and the standalone attribute.</summary>
+ <param name="standalone">If <see langword="true" />, it writes "standalone=yes"; if <see langword="false" />, it writes "standalone=no".</param>
+ <exception cref="T:System.InvalidOperationException">This is not the first write method called after the constructor.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteStartElement(System.String,System.String,System.String)">
+ <summary>Writes the specified start tag and associates it with the given namespace and prefix.</summary>
+ <param name="prefix">The namespace prefix of the element.</param>
+ <param name="localName">The local name of the element.</param>
+ <param name="ns">The namespace URI to associate with the element. If this namespace is already in scope and has an associated prefix then the writer automatically writes that prefix also.</param>
+ <exception cref="T:System.InvalidOperationException">The writer is closed.</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.WriteState">
+ <summary>Gets the state of the writer.</summary>
+ <returns>One of the <see cref="T:System.Xml.WriteState" /> values.</returns>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteString(System.String)">
+ <summary>Writes the given text content.</summary>
+ <param name="text">Text to write.</param>
+ <exception cref="T:System.ArgumentException">The text string contains an invalid surrogate pair.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteSurrogateCharEntity(System.Char,System.Char)">
+ <summary>Generates and writes the surrogate character entity for the surrogate character pair.</summary>
+ <param name="lowChar">The low surrogate. This must be a value between <see langword="0xDC00" /> and <see langword="0xDFFF" />.</param>
+ <param name="highChar">The high surrogate. This must be a value between <see langword="0xD800" /> and <see langword="0xDBFF" />.</param>
+ <exception cref="T:System.Exception">An invalid surrogate character pair was passed.</exception>
+ </member>
+ <member name="M:System.Xml.XmlTextWriter.WriteWhitespace(System.String)">
+ <summary>Writes out the given white space.</summary>
+ <param name="ws">The string of white space characters.</param>
+ <exception cref="T:System.ArgumentException">The string contains non-white space characters.</exception>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.XmlLang">
+ <summary>Gets the current <see langword="xml:lang" /> scope.</summary>
+ <returns>The current <see langword="xml:lang" /> or <see langword="null" /> if there is no <see langword="xml:lang" /> in the current scope.</returns>
+ </member>
+ <member name="P:System.Xml.XmlTextWriter.XmlSpace">
+ <summary>Gets an <see cref="T:System.Xml.XmlSpace" /> representing the current <see langword="xml:space" /> scope.</summary>
+ <returns>An <see langword="XmlSpace" /> representing the current <see langword="xml:space" /> scope.
+ Value
+
+ Meaning
+
+ None
+
+ This is the default if no <see langword="xml:space" /> scope exists.
+
+ Default
+
+ The current scope is <see langword="xml:space" />="default".
+
+ Preserve
+
+ The current scope is <see langword="xml:space" />="preserve".</returns>
+ </member>
+ <member name="T:System.Xml.XmlTokenizedType">
+ <summary>Represents the XML type for the string. This allows the string to be read as a particular XML type, for example a CDATA section type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.CDATA">
+ <summary>CDATA type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.ENTITIES">
+ <summary>ENTITIES type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.ENTITY">
+ <summary>ENTITY type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.ENUMERATION">
+ <summary>ENUMERATION type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.ID">
+ <summary>ID type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.IDREF">
+ <summary>IDREF type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.IDREFS">
+ <summary>IDREFS type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.NCName">
+ <summary>NCName type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.NMTOKEN">
+ <summary>NMTOKEN type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.NMTOKENS">
+ <summary>NMTOKENS type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.None">
+ <summary>No type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.NOTATION">
+ <summary>NOTATION type.</summary>
+ </member>
+ <member name="F:System.Xml.XmlTokenizedType.QName">
+ <summary>QName type.</summary>
+ </member>
+ <member name="T:System.Xml.XmlUrlResolver">
+ <summary>Resolves external XML resources named by a Uniform Resource Identifier (URI).</summary>
+ </member>
+ <member name="M:System.Xml.XmlUrlResolver.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlUrlResolver" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.XmlUrlResolver.CachePolicy">
+ <summary>Gets or sets the cache policy for the underlying <see cref="T:System.Net.WebRequest" /> object.</summary>
+ <returns>The cache policy for the underlying web request.</returns>
+ </member>
+ <member name="P:System.Xml.XmlUrlResolver.Credentials">
+ <summary>Sets credentials used to authenticate web requests.</summary>
+ <returns>The credentials to be used to authenticate web requests. If this property is not set, the value defaults to <see langword="null" />; that is, the <see langword="XmlUrlResolver" /> has no user credentials.</returns>
+ </member>
+ <member name="M:System.Xml.XmlUrlResolver.GetEntity(System.Uri,System.String,System.Type)">
+ <summary>Maps a URI to an object that contains the actual resource.</summary>
+ <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)" />.</param>
+ <param name="role">Currently not used.</param>
+ <param name="ofObjectToReturn">The type of object to return. The current implementation only returns <see cref="T:System.IO.Stream" /> objects.</param>
+ <returns>A stream object or <see langword="null" /> if a type other than stream is specified.</returns>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="ofObjectToReturn" /> is neither <see langword="null" /> nor a <see langword="Stream" /> type.</exception>
+ <exception cref="T:System.UriFormatException">The specified URI is not an absolute URI.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="absoluteUri" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.Exception">There is a runtime error (for example, an interrupted server connection).</exception>
+ </member>
+ <member name="M:System.Xml.XmlUrlResolver.GetEntityAsync(System.Uri,System.String,System.Type)">
+ <summary>Asynchronously maps a URI to an object that contains the actual resource.</summary>
+ <param name="absoluteUri">The URI returned from <see cref="M:System.Xml.XmlResolver.ResolveUri(System.Uri,System.String)" />.</param>
+ <param name="role">Currently not used.</param>
+ <param name="ofObjectToReturn">The type of object to return. The current implementation only returns <see cref="T:System.IO.Stream" /> objects.</param>
+ <returns>A stream object or <see langword="null" /> if a type other than stream is specified.</returns>
+ </member>
+ <member name="P:System.Xml.XmlUrlResolver.Proxy">
+ <summary>Gets or sets the network proxy for the underlying <see cref="T:System.Net.WebRequest" /> object.</summary>
+ <returns>The <see cref="T:System.Net.IWebProxy" /> to use to access the Internet resource.</returns>
+ </member>
+ <member name="M:System.Xml.XmlUrlResolver.ResolveUri(System.Uri,System.String)">
+ <summary>Resolves the absolute URI from the base and relative URIs.</summary>
+ <param name="baseUri">The base URI used to resolve the relative URI.</param>
+ <param name="relativeUri">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.</param>
+ <returns>The absolute URI, or <see langword="null" /> if the relative URI cannot be resolved.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="baseUri" /> is <see langword="null" /> or <paramref name="relativeUri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.Xml.XmlValidatingReader">
+ <summary>Represents a reader that provides document type definition (DTD), XML-Data Reduced (XDR) schema, and XML Schema definition language (XSD) validation.
+ This class is obsolete. Starting with the .NET Framework 2.0, we recommend that you use the <see cref="T:System.Xml.XmlReaderSettings" /> class and the <see cref="Overload:System.Xml.XmlReader.Create" /> method to create a validating XML reader.</summary>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.#ctor(System.IO.Stream,System.Xml.XmlNodeType,System.Xml.XmlParserContext)">
+ <summary>Initializes a new instance of the <see langword="XmlValidatingReader" /> class with the specified values.</summary>
+ <param name="xmlFragment">The stream containing the XML fragment to parse.</param>
+ <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>
+ <param name="context">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, current <see langword="xml:lang" />, and <see langword="xml:space" /> scope.</param>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="fragType" /> is not one of the node types listed in the table below.</exception>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.#ctor(System.String,System.Xml.XmlNodeType,System.Xml.XmlParserContext)">
+ <summary>Initializes a new instance of the <see langword="XmlValidatingReader" /> class with the specified values.</summary>
+ <param name="xmlFragment">The string containing the XML fragment to parse.</param>
+ <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>
+ <param name="context">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, current xml:lang, and xml:space scope.</param>
+ <exception cref="T:System.Xml.XmlException">
+ <paramref name="fragType" /> is not one of the node types listed in the table below.</exception>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.#ctor(System.Xml.XmlReader)">
+ <summary>Initializes a new instance of the <see langword="XmlValidatingReader" /> class that validates the content returned from the given <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="reader">The <see langword="XmlReader" /> to read from while validating. The current implementation supports only <see cref="T:System.Xml.XmlTextReader" />.</param>
+ <exception cref="T:System.ArgumentException">The reader specified is not an <see langword="XmlTextReader" />.</exception>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.AttributeCount">
+ <summary>Gets the number of attributes on the current node.</summary>
+ <returns>The number of attributes on the current node. This number includes default attributes.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.BaseURI">
+ <summary>Gets the base URI of the current node.</summary>
+ <returns>The base URI of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.CanReadBinaryContent">
+ <summary>Gets a value indicating whether the <see cref="T:System.Xml.XmlValidatingReader" /> implements the binary content read methods.</summary>
+ <returns>
+ <see langword="true" /> if the binary content read methods are implemented; otherwise <see langword="false" />. The <see cref="T:System.Xml.XmlValidatingReader" /> class returns <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.CanResolveEntity">
+ <summary>Gets a value indicating whether this reader can parse and resolve entities.</summary>
+ <returns>
+ <see langword="true" /> if the reader can parse and resolve entities; otherwise, <see langword="false" />. <see langword="XmlValidatingReader" /> always returns <see langword="true" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.Close">
+ <summary>Changes the <see cref="P:System.Xml.XmlReader.ReadState" /> to Closed.</summary>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.Depth">
+ <summary>Gets the depth of the current node in the XML document.</summary>
+ <returns>The depth of the current node in the XML document.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.Encoding">
+ <summary>Gets the encoding attribute for the document.</summary>
+ <returns>The encoding value. If no encoding attribute exists, and there is not byte-order mark, this defaults to UTF-8.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.EntityHandling">
+ <summary>Gets or sets a value that specifies how the reader handles entities.</summary>
+ <returns>One of the <see cref="T:System.Xml.EntityHandling" /> values. If no <see langword="EntityHandling" /> is specified, it defaults to EntityHandling.ExpandEntities.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">Invalid value was specified.</exception>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.EOF">
+ <summary>Gets a value indicating whether the reader is positioned at the end of the stream.</summary>
+ <returns>
+ <see langword="true" /> if the reader is positioned at the end of the stream; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.GetAttribute(System.Int32)">
+ <summary>Gets the value of the attribute with the specified index.</summary>
+ <param name="i">The index of the attribute. The index is zero-based. (The first attribute has index 0.)</param>
+ <returns>The value of the specified attribute.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="i" /> parameter is less than 0 or greater than or equal to <see cref="P:System.Xml.XmlValidatingReader.AttributeCount" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.GetAttribute(System.String)">
+ <summary>Gets the value of the attribute with the specified name.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.GetAttribute(System.String,System.String)">
+ <summary>Gets the value of the attribute with the specified local name and namespace Uniform Resource Identifier (URI).</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned. This method does not move the reader.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.HasLineInfo">
+ <summary>Gets a value indicating whether the class can return line information.</summary>
+ <returns>
+ <see langword="true" /> if the class can return line information; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.HasValue">
+ <summary>Gets a value indicating whether the current node can have a <see cref="P:System.Xml.XmlValidatingReader.Value" /> other than String.Empty.</summary>
+ <returns>
+ <see langword="true" /> if the node on which the reader is currently positioned can have a <see langword="Value" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.IsDefault">
+ <summary>Gets a value indicating whether the current node is an attribute that was generated from the default value defined in the document type definition (DTD) or schema.</summary>
+ <returns>
+ <see langword="true" /> if the current node is an attribute whose value was generated from the default value defined in the DTD or schema; <see langword="false" /> if the attribute value was explicitly set.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.IsEmptyElement">
+ <summary>Gets a value indicating whether the current node is an empty element (for example, <c>&lt;MyElement/&gt;</c>).</summary>
+ <returns>
+ <see langword="true" /> if the current node is an element (<see cref="P:System.Xml.XmlValidatingReader.NodeType" /> equals <see langword="XmlNodeType.Element" />) that ends with <c>/&gt;</c>; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.LineNumber">
+ <summary>Gets the current line number.</summary>
+ <returns>The current line number. The starting value for this property is 1.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.LinePosition">
+ <summary>Gets the current line position.</summary>
+ <returns>The current line position. The starting value for this property is 1.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.LocalName">
+ <summary>Gets the local name of the current node.</summary>
+ <returns>The name of the current node with the prefix removed. For example, <see langword="LocalName" /> is <see langword="book" /> for the element <c>&lt;bk:book&gt;</c>.
+ For node types that do not have a name (like <see langword="Text" />, <see langword="Comment" />, and so on), this property returns String.Empty.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.LookupNamespace(System.String)">
+ <summary>Resolves a namespace prefix in the current element's scope.</summary>
+ <param name="prefix">The prefix whose namespace Uniform Resource Identifier (URI) you want to resolve. To match the default namespace, pass an empty string.</param>
+ <returns>The namespace URI to which the prefix maps or <see langword="null" /> if no matching prefix is found.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.MoveToAttribute(System.Int32)">
+ <summary>Moves to the attribute with the specified index.</summary>
+ <param name="i">The index of the attribute.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="i" /> parameter is less than 0 or greater than or equal to <see cref="P:System.Xml.XmlReader.AttributeCount" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.MoveToAttribute(System.String)">
+ <summary>Moves to the attribute with the specified name.</summary>
+ <param name="name">The qualified name of the attribute.</param>
+ <returns>
+ <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the position of the reader does not change.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.MoveToAttribute(System.String,System.String)">
+ <summary>Moves to the attribute with the specified local name and namespace Uniform Resource Identifier (URI).</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>
+ <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the position of the reader does not change.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.MoveToElement">
+ <summary>Moves to the element that contains the current attribute node.</summary>
+ <returns>
+ <see langword="true" /> if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); <see langword="false" /> if the reader is not positioned on an attribute (the position of the reader does not change).</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.MoveToFirstAttribute">
+ <summary>Moves to the first attribute.</summary>
+ <returns>
+ <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).</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.MoveToNextAttribute">
+ <summary>Moves to the next attribute.</summary>
+ <returns>
+ <see langword="true" /> if there is a next attribute; <see langword="false" /> if there are no more attributes.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.Name">
+ <summary>Gets the qualified name of the current node.</summary>
+ <returns>The qualified name of the current node. For example, <see langword="Name" /> is <see langword="bk:book" /> for the element <c>&lt;bk:book&gt;</c>.
+ The name returned is dependent on the <see cref="P:System.Xml.XmlValidatingReader.NodeType" /> of the node. The following node types return the listed values. All other node types return an empty string.
+ Node Type
+
+ Name
+
+ <see langword="Attribute" /> The name of the attribute.
+
+ <see langword="DocumentType" /> The document type name.
+
+ <see langword="Element" /> The tag name.
+
+ <see langword="EntityReference" /> The name of the entity referenced.
+
+ <see langword="ProcessingInstruction" /> The target of the processing instruction.
+
+ <see langword="XmlDeclaration" /> The literal string <see langword="xml" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.Namespaces">
+ <summary>Gets or sets a value indicating whether to do namespace support.</summary>
+ <returns>
+ <see langword="true" /> to do namespace support; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.NamespaceURI">
+ <summary>Gets the namespace Uniform Resource Identifier (URI) (as defined in the World Wide Web Consortium (W3C) Namespace specification) of the node on which the reader is positioned.</summary>
+ <returns>The namespace URI of the current node; otherwise an empty string.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.NameTable">
+ <summary>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this implementation.</summary>
+ <returns>
+ <see langword="XmlNameTable" /> that enables you to get the atomized version of a string within the node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.NodeType">
+ <summary>Gets the type of the current node.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlNodeType" /> values representing the type of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.Prefix">
+ <summary>Gets the namespace prefix associated with the current node.</summary>
+ <returns>The namespace prefix associated with the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.QuoteChar">
+ <summary>Gets the quotation mark character used to enclose the value of an attribute node.</summary>
+ <returns>The quotation mark character (" or ') used to enclose the value of an attribute node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.Read">
+ <summary>Reads the next node from the stream.</summary>
+ <returns>
+ <see langword="true" /> if the next node was read successfully; <see langword="false" /> if there are no more nodes to read.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.ReadAttributeValue">
+ <summary>Parses the attribute value into one or more <see langword="Text" />, <see langword="EntityReference" />, or <see langword="EndEntity" /> nodes.</summary>
+ <returns>
+ <see langword="true" /> if there are nodes to return.
+<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.
+An empty attribute, such as, <c>misc=""</c>, returns <see langword="true" /> with a single node with a value of String.Empty.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.ReadContentAsBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the content and returns the Base64 decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <see cref="M:System.Xml.XmlValidatingReader.ReadContentAsBase64(System.Byte[],System.Int32,System.Int32)" /> is not supported on the current node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.ReadContentAsBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the content and returns the BinHex decoded binary bytes.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <see cref="M:System.Xml.XmlValidatingReader.ReadContentAsBinHex(System.Byte[],System.Int32,System.Int32)" /> is not supported on the current node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlValidatingReader" /> implementation does not support this method.</exception>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.ReadElementContentAsBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the element and decodes the Base64 content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not an element node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlValidatingReader" /> implementation does not support this method.</exception>
+ <exception cref="T:System.Xml.XmlException">The element contains mixed-content.</exception>
+ <exception cref="T:System.FormatException">The content cannot be converted to the requested type.</exception>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.ReadElementContentAsBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the element and decodes the BinHex content.</summary>
+ <param name="buffer">The buffer into which to copy the resulting text. This value cannot be <see langword="null" />.</param>
+ <param name="index">The offset into the buffer where to start copying the result.</param>
+ <param name="count">The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.</param>
+ <returns>The number of bytes written to the buffer.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node is not an element node.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The index into the buffer or index + count is larger than the allocated buffer size.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XmlValidatingReader" /> implementation does not support this method.</exception>
+ <exception cref="T:System.Xml.XmlException">The element contains mixed-content.</exception>
+ <exception cref="T:System.FormatException">The content cannot be converted to the requested type.</exception>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.Reader">
+ <summary>Gets the <see cref="T:System.Xml.XmlReader" /> used to construct this <see langword="XmlValidatingReader" />.</summary>
+ <returns>The <see langword="XmlReader" /> specified in the constructor.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.ReadState">
+ <summary>Gets the state of the reader.</summary>
+ <returns>One of the <see cref="T:System.Xml.ReadState" /> values.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.ReadString">
+ <summary>Reads the contents of an element or text node as a string.</summary>
+ <returns>The contents of the element or text node. This can be an empty string if the reader is positioned on something other than an element or text node, or if there is no more text content to return in the current context.
+
+ The text node can be either an element or an attribute text node.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.ReadTypedValue">
+ <summary>Gets the common language runtime type for the specified XML Schema definition language (XSD) type.</summary>
+ <returns>The common language runtime type for the specified XML Schema type.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.ResolveEntity">
+ <summary>Resolves the entity reference for <see langword="EntityReference" /> nodes.</summary>
+ <exception cref="T:System.InvalidOperationException">The reader is not positioned on an <see langword="EntityReference" /> node.</exception>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.Schemas">
+ <summary>Gets a <see cref="T:System.Xml.Schema.XmlSchemaCollection" /> to use for validation.</summary>
+ <returns>The <see langword="XmlSchemaCollection" /> to use for validation.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.SchemaType">
+ <summary>Gets a schema type object.</summary>
+ <returns>
+ <see cref="T:System.Xml.Schema.XmlSchemaDatatype" />, <see cref="T:System.Xml.Schema.XmlSchemaSimpleType" />, or <see cref="T:System.Xml.Schema.XmlSchemaComplexType" /> depending whether the node value is a built in XML Schema definition language (XSD) type or a user defined simpleType or complexType; <see langword="null" /> if the current node has no schema type.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.System#Xml#IXmlNamespaceResolver#GetNamespacesInScope(System.Xml.XmlNamespaceScope)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)" />.</summary>
+ <param name="scope">An <see cref="T:System.Xml.XmlNamespaceScope" /> object that identifies the scope of the reader.</param>
+ <returns>An T:System.Collections.IDictionary object that identifies the namespaces in scope.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.System#Xml#IXmlNamespaceResolver#LookupNamespace(System.String)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)" />.</summary>
+ <param name="prefix">The namespace prefix.</param>
+ <returns>A string value that contains the namespace Uri that is associated with the prefix.</returns>
+ </member>
+ <member name="M:System.Xml.XmlValidatingReader.System#Xml#IXmlNamespaceResolver#LookupPrefix(System.String)">
+ <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)" />.</summary>
+ <param name="namespaceName">The namespace that is associated with the prefix.</param>
+ <returns>A string value that contains the namespace prefix that is associated with the <paramref name="namespaceName" />.</returns>
+ </member>
+ <member name="E:System.Xml.XmlValidatingReader.ValidationEventHandler">
+ <summary>Sets an event handler for receiving information about document type definition (DTD), XML-Data Reduced (XDR) schema, and XML Schema definition language (XSD) schema validation errors.</summary>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.ValidationType">
+ <summary>Gets or sets a value indicating the type of validation to perform.</summary>
+ <returns>One of the <see cref="T:System.Xml.ValidationType" /> values. If this property is not set, it defaults to ValidationType.Auto.</returns>
+ <exception cref="T:System.InvalidOperationException">Setting the property after a Read has been called.</exception>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.Value">
+ <summary>Gets the text value of the current node.</summary>
+ <returns>The value returned depends on the <see cref="P:System.Xml.XmlValidatingReader.NodeType" /> of the node. The following table lists node types that have a value to return. All other node types return String.Empty.
+ Node Type
+
+ Value
+
+ <see langword="Attribute" /> The value of the attribute.
+
+ <see langword="CDATA" /> The content of the CDATA section.
+
+ <see langword="Comment" /> The content of the comment.
+
+ <see langword="DocumentType" /> The internal subset.
+
+ <see langword="ProcessingInstruction" /> The entire content, excluding the target.
+
+ <see langword="SignificantWhitespace" /> The white space between markup in a mixed content model.
+
+ <see langword="Text" /> The content of the text node.
+
+ <see langword="Whitespace" /> The white space between markup.
+
+ <see langword="XmlDeclaration" /> The content of the declaration.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.XmlLang">
+ <summary>Gets the current <see langword="xml:lang" /> scope.</summary>
+ <returns>The current <see langword="xml:lang" /> scope.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.XmlResolver">
+ <summary>Sets the <see cref="T:System.Xml.XmlResolver" /> used for resolving external document type definition (DTD) and schema location references. The <see langword="XmlResolver" /> is also used to handle any import or include elements found in XML Schema definition language (XSD) schemas.</summary>
+ <returns>The <see langword="XmlResolver" /> to use. If set to <see langword="null" />, external resources are not resolved.
+ In version 1.1 of the .NET Framework, the caller must be fully trusted to specify an <see langword="XmlResolver" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlValidatingReader.XmlSpace">
+ <summary>Gets the current <see langword="xml:space" /> scope.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlSpace" /> values. If no <see langword="xml:space" /> scope exists, this property defaults to <see langword="XmlSpace.None" />.</returns>
+ </member>
+ <member name="T:System.Xml.XmlWhitespace">
+ <summary>Represents white space in element content.</summary>
+ </member>
+ <member name="M:System.Xml.XmlWhitespace.#ctor(System.String,System.Xml.XmlDocument)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlWhitespace" /> class.</summary>
+ <param name="strData">The white space characters of the node.</param>
+ <param name="doc">The <see cref="T:System.Xml.XmlDocument" /> object.</param>
+ </member>
+ <member name="M:System.Xml.XmlWhitespace.CloneNode(System.Boolean)">
+ <summary>Creates a duplicate of this node.</summary>
+ <param name="deep">
+ <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>
+ <returns>The cloned node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWhitespace.LocalName">
+ <summary>Gets the local name of the node.</summary>
+ <returns>For <see langword="XmlWhitespace" /> nodes, this property returns <see langword="#whitespace" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWhitespace.Name">
+ <summary>Gets the qualified name of the node.</summary>
+ <returns>For <see langword="XmlWhitespace" /> nodes, this property returns <see langword="#whitespace" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWhitespace.NodeType">
+ <summary>Gets the type of the node.</summary>
+ <returns>For <see langword="XmlWhitespace" /> nodes, the value is <see cref="F:System.Xml.XmlNodeType.Whitespace" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWhitespace.ParentNode">
+ <summary>Gets the parent of the current node.</summary>
+ <returns>The <see cref="T:System.Xml.XmlNode" /> parent node of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWhitespace.PreviousText">
+ <summary>Gets the text node that immediately precedes this node.</summary>
+ <returns>Returns <see cref="T:System.Xml.XmlNode" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWhitespace.Value">
+ <summary>Gets or sets the value of the node.</summary>
+ <returns>The white space characters found in the node.</returns>
+ <exception cref="T:System.ArgumentException">Setting <see cref="P:System.Xml.XmlWhitespace.Value" /> to invalid white space characters.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWhitespace.WriteContentTo(System.Xml.XmlWriter)">
+ <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see cref="T:System.Xml.XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="M:System.Xml.XmlWhitespace.WriteTo(System.Xml.XmlWriter)">
+ <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="w">The <see cref="T:System.Xml.XmlWriter" /> to which you want to save.</param>
+ </member>
+ <member name="T:System.Xml.XmlWriter">
+ <summary>Represents a writer that provides a fast, non-cached, forward-only way to generate streams or files that contain XML data.</summary>
+ </member>
+ <member name="M:System.Xml.XmlWriter.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlWriter" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Close">
+ <summary>When overridden in a derived class, closes this stream and the underlying stream.</summary>
+ <exception cref="T:System.InvalidOperationException">A call is made to write more output after <see langword="Close" /> has been called or the result of this call is an invalid XML document.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.IO.Stream)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the specified stream.</summary>
+ <param name="output">The stream to which you want to write. The <see cref="T:System.Xml.XmlWriter" /> writes XML 1.0 text syntax and appends it to the specified stream.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="stream" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.IO.Stream,System.Xml.XmlWriterSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the stream and <see cref="T:System.Xml.XmlWriterSettings" /> object.</summary>
+ <param name="output">The stream to which you want to write. The <see cref="T:System.Xml.XmlWriter" /> writes XML 1.0 text syntax and appends it to the specified stream.</param>
+ <param name="settings">The <see cref="T:System.Xml.XmlWriterSettings" /> object used to configure the new <see cref="T:System.Xml.XmlWriter" /> instance. If this is <see langword="null" />, a <see cref="T:System.Xml.XmlWriterSettings" /> with default settings is used.
+ If the <see cref="T:System.Xml.XmlWriter" /> is being used with the <see cref="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.XmlWriter)" /> method, you should use the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property to obtain an <see cref="T:System.Xml.XmlWriterSettings" /> object with the correct settings. This ensures that the created <see cref="T:System.Xml.XmlWriter" /> object has the correct output settings.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="stream" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.IO.TextWriter)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the specified <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="output">The <see cref="T:System.IO.TextWriter" /> to which you want to write. The <see cref="T:System.Xml.XmlWriter" /> writes XML 1.0 text syntax and appends it to the specified <see cref="T:System.IO.TextWriter" />.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="text" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.IO.TextWriter,System.Xml.XmlWriterSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the <see cref="T:System.IO.TextWriter" /> and <see cref="T:System.Xml.XmlWriterSettings" /> objects.</summary>
+ <param name="output">The <see cref="T:System.IO.TextWriter" /> to which you want to write. The <see cref="T:System.Xml.XmlWriter" /> writes XML 1.0 text syntax and appends it to the specified <see cref="T:System.IO.TextWriter" />.</param>
+ <param name="settings">The <see cref="T:System.Xml.XmlWriterSettings" /> object used to configure the new <see cref="T:System.Xml.XmlWriter" /> instance. If this is <see langword="null" />, a <see cref="T:System.Xml.XmlWriterSettings" /> with default settings is used.
+ If the <see cref="T:System.Xml.XmlWriter" /> is being used with the <see cref="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.XmlWriter)" /> method, you should use the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property to obtain an <see cref="T:System.Xml.XmlWriterSettings" /> object with the correct settings. This ensures that the created <see cref="T:System.Xml.XmlWriter" /> object has the correct output settings.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="text" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.String)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the specified filename.</summary>
+ <param name="outputFileName">The file to which you want to write. The <see cref="T:System.Xml.XmlWriter" /> creates a file at the specified path and writes to it in XML 1.0 text syntax. The <paramref name="outputFileName" /> must be a file system path.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.String,System.Xml.XmlWriterSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the filename and <see cref="T:System.Xml.XmlWriterSettings" /> object.</summary>
+ <param name="outputFileName">The file to which you want to write. The <see cref="T:System.Xml.XmlWriter" /> creates a file at the specified path and writes to it in XML 1.0 text syntax. The <paramref name="outputFileName" /> must be a file system path.</param>
+ <param name="settings">The <see cref="T:System.Xml.XmlWriterSettings" /> object used to configure the new <see cref="T:System.Xml.XmlWriter" /> instance. If this is <see langword="null" />, a <see cref="T:System.Xml.XmlWriterSettings" /> with default settings is used.
+ If the <see cref="T:System.Xml.XmlWriter" /> is being used with the <see cref="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.XmlWriter)" /> method, you should use the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property to obtain an <see cref="T:System.Xml.XmlWriterSettings" /> object with the correct settings. This ensures that the created <see cref="T:System.Xml.XmlWriter" /> object has the correct output settings.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.Text.StringBuilder)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the specified <see cref="T:System.Text.StringBuilder" />.</summary>
+ <param name="output">The <see cref="T:System.Text.StringBuilder" /> to which to write to. Content written by the <see cref="T:System.Xml.XmlWriter" /> is appended to the <see cref="T:System.Text.StringBuilder" />.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="builder" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.Text.StringBuilder,System.Xml.XmlWriterSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the <see cref="T:System.Text.StringBuilder" /> and <see cref="T:System.Xml.XmlWriterSettings" /> objects.</summary>
+ <param name="output">The <see cref="T:System.Text.StringBuilder" /> to which to write to. Content written by the <see cref="T:System.Xml.XmlWriter" /> is appended to the <see cref="T:System.Text.StringBuilder" />.</param>
+ <param name="settings">The <see cref="T:System.Xml.XmlWriterSettings" /> object used to configure the new <see cref="T:System.Xml.XmlWriter" /> instance. If this is <see langword="null" />, a <see cref="T:System.Xml.XmlWriterSettings" /> with default settings is used.
+ If the <see cref="T:System.Xml.XmlWriter" /> is being used with the <see cref="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.XmlWriter)" /> method, you should use the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property to obtain an <see cref="T:System.Xml.XmlWriterSettings" /> object with the correct settings. This ensures that the created <see cref="T:System.Xml.XmlWriter" /> object has the correct output settings.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="builder" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.Xml.XmlWriter)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the specified <see cref="T:System.Xml.XmlWriter" /> object.</summary>
+ <param name="output">The <see cref="T:System.Xml.XmlWriter" /> object that you want to use as the underlying writer.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object that is wrapped around the specified <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="writer" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Create(System.Xml.XmlWriter,System.Xml.XmlWriterSettings)">
+ <summary>Creates a new <see cref="T:System.Xml.XmlWriter" /> instance using the specified <see cref="T:System.Xml.XmlWriter" /> and <see cref="T:System.Xml.XmlWriterSettings" /> objects.</summary>
+ <param name="output">The <see cref="T:System.Xml.XmlWriter" /> object that you want to use as the underlying writer.</param>
+ <param name="settings">The <see cref="T:System.Xml.XmlWriterSettings" /> object used to configure the new <see cref="T:System.Xml.XmlWriter" /> instance. If this is <see langword="null" />, a <see cref="T:System.Xml.XmlWriterSettings" /> with default settings is used.
+ If the <see cref="T:System.Xml.XmlWriter" /> is being used with the <see cref="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.XmlWriter)" /> method, you should use the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property to obtain an <see cref="T:System.Xml.XmlWriterSettings" /> object with the correct settings. This ensures that the created <see cref="T:System.Xml.XmlWriter" /> object has the correct output settings.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object that is wrapped around the specified <see cref="T:System.Xml.XmlWriter" /> object.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="writer" /> value is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Dispose">
+ <summary>Releases all resources used by the current instance of the <see cref="T:System.Xml.XmlWriter" /> class.</summary>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.Xml.XmlWriter" /> and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.Flush">
+ <summary>When overridden in a derived class, flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.</summary>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.FlushAsync">
+ <summary>Asynchronously flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.</summary>
+ <returns>The task that represents the asynchronous <see langword="Flush" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.LookupPrefix(System.String)">
+ <summary>When overridden in a derived class, returns the closest prefix defined in the current namespace scope for the namespace URI.</summary>
+ <param name="ns">The namespace URI whose prefix you want to find.</param>
+ <returns>The matching prefix or <see langword="null" /> if no matching namespace URI is found in the current scope.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ns" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlWriter.Settings">
+ <summary>Gets the <see cref="T:System.Xml.XmlWriterSettings" /> object used to create this <see cref="T:System.Xml.XmlWriter" /> instance.</summary>
+ <returns>The <see cref="T:System.Xml.XmlWriterSettings" /> object used to create this writer instance. If this writer was not created using the <see cref="Overload:System.Xml.XmlWriter.Create" /> method, this property returns <see langword="null" />.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteAttributes(System.Xml.XmlReader,System.Boolean)">
+ <summary>When overridden in a derived class, writes out all the attributes found at the current position in the <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="reader">The <see langword="XmlReader" /> from which to copy the attributes.</param>
+ <param name="defattr">
+ <see langword="true" /> to copy the default attributes from the <see langword="XmlReader" />; otherwise, <see langword="false" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="reader" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.XmlException">The reader is not positioned on an <see langword="element" />, <see langword="attribute" /> or <see langword="XmlDeclaration" /> node.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteAttributesAsync(System.Xml.XmlReader,System.Boolean)">
+ <summary>Asynchronously writes out all the attributes found at the current position in the <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="reader">The <see langword="XmlReader" /> from which to copy the attributes.</param>
+ <param name="defattr">
+ <see langword="true" /> to copy the default attributes from the <see langword="XmlReader" />; otherwise, <see langword="false" />.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteAttributes" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteAttributeString(System.String,System.String)">
+ <summary>When overridden in a derived class, writes out the attribute with the specified local name and value.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="value">The value of the attribute.</param>
+ <exception cref="T:System.InvalidOperationException">The state of writer is not <see langword="WriteState.Element" /> or writer is closed.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentException">The <see langword="xml:space" /> or <see langword="xml:lang" /> attribute value is invalid.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteAttributeString(System.String,System.String,System.String)">
+ <summary>When overridden in a derived class, writes an attribute with the specified local name, namespace URI, and value.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="ns">The namespace URI to associate with the attribute.</param>
+ <param name="value">The value of the attribute.</param>
+ <exception cref="T:System.InvalidOperationException">The state of writer is not <see langword="WriteState.Element" /> or writer is closed.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentException">The <see langword="xml:space" /> or <see langword="xml:lang" /> attribute value is invalid.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteAttributeString(System.String,System.String,System.String,System.String)">
+ <summary>When overridden in a derived class, writes out the attribute with the specified prefix, local name, namespace URI, and value.</summary>
+ <param name="prefix">The namespace prefix of the attribute.</param>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="ns">The namespace URI of the attribute.</param>
+ <param name="value">The value of the attribute.</param>
+ <exception cref="T:System.InvalidOperationException">The state of writer is not <see langword="WriteState.Element" /> or writer is closed.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentException">The <see langword="xml:space" /> or <see langword="xml:lang" /> attribute value is invalid.</exception>
+ <exception cref="T:System.Xml.XmlException">The <paramref name="localName" /> or <paramref name="ns" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteAttributeStringAsync(System.String,System.String,System.String,System.String)">
+ <summary>Asynchronously writes out the attribute with the specified prefix, local name, namespace URI, and value.</summary>
+ <param name="prefix">The namespace prefix of the attribute.</param>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="ns">The namespace URI of the attribute.</param>
+ <param name="value">The value of the attribute.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteAttributeString" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteBase64(System.Byte[],System.Int32,System.Int32)">
+ <summary>When overridden in a derived class, encodes the specified binary bytes as Base64 and writes out the resulting text.</summary>
+ <param name="buffer">Byte array to encode.</param>
+ <param name="index">The position in the buffer indicating the start of the bytes to write.</param>
+ <param name="count">The number of bytes to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.
+-or-
+The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteBase64Async(System.Byte[],System.Int32,System.Int32)">
+ <summary>Asynchronously encodes the specified binary bytes as Base64 and writes out the resulting text.</summary>
+ <param name="buffer">Byte array to encode.</param>
+ <param name="index">The position in the buffer indicating the start of the bytes to write.</param>
+ <param name="count">The number of bytes to write.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteBase64" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteBinHex(System.Byte[],System.Int32,System.Int32)">
+ <summary>When overridden in a derived class, encodes the specified binary bytes as <see langword="BinHex" /> and writes out the resulting text.</summary>
+ <param name="buffer">Byte array to encode.</param>
+ <param name="index">The position in the buffer indicating the start of the bytes to write.</param>
+ <param name="count">The number of bytes to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The writer is closed or in error state.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.
+-or-
+The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteBinHexAsync(System.Byte[],System.Int32,System.Int32)">
+ <summary>Asynchronously encodes the specified binary bytes as <see langword="BinHex" /> and writes out the resulting text.</summary>
+ <param name="buffer">Byte array to encode.</param>
+ <param name="index">The position in the buffer indicating the start of the bytes to write.</param>
+ <param name="count">The number of bytes to write.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteBinHex" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteCData(System.String)">
+ <summary>When overridden in a derived class, writes out a &lt;![CDATA[...]]&gt; block containing the specified text.</summary>
+ <param name="text">The text to place inside the CDATA block.</param>
+ <exception cref="T:System.ArgumentException">The text would result in a non-well formed XML document.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteCDataAsync(System.String)">
+ <summary>Asynchronously writes out a &lt;![CDATA[...]]&gt; block containing the specified text.</summary>
+ <param name="text">The text to place inside the CDATA block.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteCData" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteCharEntity(System.Char)">
+ <summary>When overridden in a derived class, forces the generation of a character entity for the specified Unicode character value.</summary>
+ <param name="ch">The Unicode character for which to generate a character entity.</param>
+ <exception cref="T:System.ArgumentException">The character is in the surrogate pair character range, <see langword="0xd800" /> - <see langword="0xdfff" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteCharEntityAsync(System.Char)">
+ <summary>Asynchronously forces the generation of a character entity for the specified Unicode character value.</summary>
+ <param name="ch">The Unicode character for which to generate a character entity.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteCharEntity" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteChars(System.Char[],System.Int32,System.Int32)">
+ <summary>When overridden in a derived class, writes text one buffer at a time.</summary>
+ <param name="buffer">Character array containing the text to write.</param>
+ <param name="index">The position in the buffer indicating the start of the text to write.</param>
+ <param name="count">The number of characters to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.
+-or-
+The buffer length minus <paramref name="index" /> is less than <paramref name="count" />; the call results in surrogate pair characters being split or an invalid surrogate pair being written.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="buffer" /> parameter value is not valid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteCharsAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Asynchronously writes text one buffer at a time.</summary>
+ <param name="buffer">Character array containing the text to write.</param>
+ <param name="index">The position in the buffer indicating the start of the text to write.</param>
+ <param name="count">The number of characters to write.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteChars" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteComment(System.String)">
+ <summary>When overridden in a derived class, writes out a comment &lt;!--...--&gt; containing the specified text.</summary>
+ <param name="text">Text to place inside the comment.</param>
+ <exception cref="T:System.ArgumentException">The text would result in a non-well-formed XML document.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteCommentAsync(System.String)">
+ <summary>Asynchronously writes out a comment &lt;!--...--&gt; containing the specified text.</summary>
+ <param name="text">Text to place inside the comment.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteComment" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteDocType(System.String,System.String,System.String,System.String)">
+ <summary>When overridden in a derived class, writes the DOCTYPE declaration with the specified name and optional attributes.</summary>
+ <param name="name">The name of the DOCTYPE. This must be non-empty.</param>
+ <param name="pubid">If non-null it also writes PUBLIC "pubid" "sysid" where <paramref name="pubid" /> and <paramref name="sysid" /> are replaced with the value of the given arguments.</param>
+ <param name="sysid">If <paramref name="pubid" /> is <see langword="null" /> and <paramref name="sysid" /> is non-null it writes SYSTEM "sysid" where <paramref name="sysid" /> is replaced with the value of this argument.</param>
+ <param name="subset">If non-null it writes [subset] where subset is replaced with the value of this argument.</param>
+ <exception cref="T:System.InvalidOperationException">This method was called outside the prolog (after the root element).
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.ArgumentException">The value for <paramref name="name" /> would result in invalid XML.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteDocTypeAsync(System.String,System.String,System.String,System.String)">
+ <summary>Asynchronously writes the DOCTYPE declaration with the specified name and optional attributes.</summary>
+ <param name="name">The name of the DOCTYPE. This must be non-empty.</param>
+ <param name="pubid">If non-null it also writes PUBLIC "pubid" "sysid" where <paramref name="pubid" /> and <paramref name="sysid" /> are replaced with the value of the given arguments.</param>
+ <param name="sysid">If <paramref name="pubid" /> is <see langword="null" /> and <paramref name="sysid" /> is non-null it writes SYSTEM "sysid" where <paramref name="sysid" /> is replaced with the value of this argument.</param>
+ <param name="subset">If non-null it writes [subset] where subset is replaced with the value of this argument.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteDocType" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteElementString(System.String,System.String)">
+ <summary>Writes an element with the specified local name and value.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="value">The value of the element.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="localName" /> value is <see langword="null" /> or an empty string.
+ -or-
+ The parameter values are not valid.</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteElementString(System.String,System.String,System.String)">
+ <summary>Writes an element with the specified local name, namespace URI, and value.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="ns">The namespace URI to associate with the element.</param>
+ <param name="value">The value of the element.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="localName" /> value is <see langword="null" /> or an empty string.
+ -or-
+ The parameter values are not valid.</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteElementString(System.String,System.String,System.String,System.String)">
+ <summary>Writes an element with the specified prefix, local name, namespace URI, and value.</summary>
+ <param name="prefix">The prefix of the element.</param>
+ <param name="localName">The local name of the element.</param>
+ <param name="ns">The namespace URI of the element.</param>
+ <param name="value">The value of the element.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="localName" /> value is <see langword="null" /> or an empty string.
+ -or-
+ The parameter values are not valid.</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteElementStringAsync(System.String,System.String,System.String,System.String)">
+ <summary>Asynchronously writes an element with the specified prefix, local name, namespace URI, and value.</summary>
+ <param name="prefix">The prefix of the element.</param>
+ <param name="localName">The local name of the element.</param>
+ <param name="ns">The namespace URI of the element.</param>
+ <param name="value">The value of the element.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteElementString" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteEndAttribute">
+ <summary>When overridden in a derived class, closes the previous <see cref="M:System.Xml.XmlWriter.WriteStartAttribute(System.String,System.String)" /> call.</summary>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteEndAttributeAsync">
+ <summary>Asynchronously closes the previous <see cref="M:System.Xml.XmlWriter.WriteStartAttribute(System.String,System.String)" /> call.</summary>
+ <returns>The task that represents the asynchronous <see langword="WriteEndAttribute" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteEndDocument">
+ <summary>When overridden in a derived class, closes any open elements or attributes and puts the writer back in the Start state.</summary>
+ <exception cref="T:System.ArgumentException">The XML document is invalid.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteEndDocumentAsync">
+ <summary>Asynchronously closes any open elements or attributes and puts the writer back in the Start state.</summary>
+ <returns>The task that represents the asynchronous <see langword="WriteEndDocument" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteEndElement">
+ <summary>When overridden in a derived class, closes one element and pops the corresponding namespace scope.</summary>
+ <exception cref="T:System.InvalidOperationException">This results in an invalid XML document.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteEndElementAsync">
+ <summary>Asynchronously closes one element and pops the corresponding namespace scope.</summary>
+ <returns>The task that represents the asynchronous <see langword="WriteEndElement" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteEntityRef(System.String)">
+ <summary>When overridden in a derived class, writes out an entity reference as <see langword="&amp;name;" />.</summary>
+ <param name="name">The name of the entity reference.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="name" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteEntityRefAsync(System.String)">
+ <summary>Asynchronously writes out an entity reference as <see langword="&amp;name;" />.</summary>
+ <param name="name">The name of the entity reference.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteEntityRef" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteFullEndElement">
+ <summary>When overridden in a derived class, closes one element and pops the corresponding namespace scope.</summary>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteFullEndElementAsync">
+ <summary>Asynchronously closes one element and pops the corresponding namespace scope.</summary>
+ <returns>The task that represents the asynchronous <see langword="WriteFullEndElement" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteName(System.String)">
+ <summary>When overridden in a derived class, writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (https://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).</summary>
+ <param name="name">The name to write.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="name" /> is not a valid XML name; or <paramref name="name" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteNameAsync(System.String)">
+ <summary>Asynchronously writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (https://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).</summary>
+ <param name="name">The name to write.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteName" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteNmToken(System.String)">
+ <summary>When overridden in a derived class, writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (https://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).</summary>
+ <param name="name">The name to write.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="name" /> is not a valid NmToken; or <paramref name="name" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteNmTokenAsync(System.String)">
+ <summary>Asynchronously writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (https://www.w3.org/TR/1998/REC-xml-19980210#NT-Name).</summary>
+ <param name="name">The name to write.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteNmToken" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteNode(System.Xml.XmlReader,System.Boolean)">
+ <summary>When overridden in a derived class, copies everything from the reader to the writer and moves the reader to the start of the next sibling.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
+ <param name="defattr">
+ <see langword="true" /> to copy the default attributes from the <see langword="XmlReader" />; otherwise, <see langword="false" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="reader" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="reader" /> contains invalid characters.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteNode(System.Xml.XPath.XPathNavigator,System.Boolean)">
+ <summary>Copies everything from the <see cref="T:System.Xml.XPath.XPathNavigator" /> object to the writer. The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> remains unchanged.</summary>
+ <param name="navigator">The <see cref="T:System.Xml.XPath.XPathNavigator" /> to copy from.</param>
+ <param name="defattr">
+ <see langword="true" /> to copy the default attributes; otherwise, <see langword="false" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="navigator" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteNodeAsync(System.Xml.XmlReader,System.Boolean)">
+ <summary>Asynchronously copies everything from the reader to the writer and moves the reader to the start of the next sibling.</summary>
+ <param name="reader">The <see cref="T:System.Xml.XmlReader" /> to read from.</param>
+ <param name="defattr">
+ <see langword="true" /> to copy the default attributes from the <see langword="XmlReader" />; otherwise, <see langword="false" />.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteNode" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteNodeAsync(System.Xml.XPath.XPathNavigator,System.Boolean)">
+ <summary>Asynchronously copies everything from the <see cref="T:System.Xml.XPath.XPathNavigator" /> object to the writer. The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> remains unchanged.</summary>
+ <param name="navigator">The <see cref="T:System.Xml.XPath.XPathNavigator" /> to copy from.</param>
+ <param name="defattr">
+ <see langword="true" /> to copy the default attributes; otherwise, <see langword="false" />.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteNode" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteProcessingInstruction(System.String,System.String)">
+ <summary>When overridden in a derived class, writes out a processing instruction with a space between the name and text as follows: &lt;?name text?&gt;.</summary>
+ <param name="name">The name of the processing instruction.</param>
+ <param name="text">The text to include in the processing instruction.</param>
+ <exception cref="T:System.ArgumentException">The text would result in a non-well formed XML document.
+ <paramref name="name" /> is either <see langword="null" /> or <see langword="String.Empty" />.
+ This method is being used to create an XML declaration after <see cref="M:System.Xml.XmlWriter.WriteStartDocument" /> has already been called.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteProcessingInstructionAsync(System.String,System.String)">
+ <summary>Asynchronously writes out a processing instruction with a space between the name and text as follows: &lt;?name text?&gt;.</summary>
+ <param name="name">The name of the processing instruction.</param>
+ <param name="text">The text to include in the processing instruction.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteProcessingInstruction" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteQualifiedName(System.String,System.String)">
+ <summary>When overridden in a derived class, writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace.</summary>
+ <param name="localName">The local name to write.</param>
+ <param name="ns">The namespace URI for the name.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="localName" /> is either <see langword="null" /> or <see langword="String.Empty" />.
+<paramref name="localName" /> is not a valid name.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteQualifiedNameAsync(System.String,System.String)">
+ <summary>Asynchronously writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace.</summary>
+ <param name="localName">The local name to write.</param>
+ <param name="ns">The namespace URI for the name.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteQualifiedName" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteRaw(System.Char[],System.Int32,System.Int32)">
+ <summary>When overridden in a derived class, writes raw markup manually from a character buffer.</summary>
+ <param name="buffer">Character array containing the text to write.</param>
+ <param name="index">The position within the buffer indicating the start of the text to write.</param>
+ <param name="count">The number of characters to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.
+-or-
+The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteRaw(System.String)">
+ <summary>When overridden in a derived class, writes raw markup manually from a string.</summary>
+ <param name="data">String containing the text to write.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="data" /> is either <see langword="null" /> or <see langword="String.Empty" />.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteRawAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Asynchronously writes raw markup manually from a character buffer.</summary>
+ <param name="buffer">Character array containing the text to write.</param>
+ <param name="index">The position within the buffer indicating the start of the text to write.</param>
+ <param name="count">The number of characters to write.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteRaw" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteRawAsync(System.String)">
+ <summary>Asynchronously writes raw markup manually from a string.</summary>
+ <param name="data">String containing the text to write.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteRaw" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartAttribute(System.String)">
+ <summary>Writes the start of an attribute with the specified local name.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <exception cref="T:System.InvalidOperationException">The writer is closed.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartAttribute(System.String,System.String)">
+ <summary>Writes the start of an attribute with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="ns">The namespace URI of the attribute.</param>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartAttribute(System.String,System.String,System.String)">
+ <summary>When overridden in a derived class, writes the start of an attribute with the specified prefix, local name, and namespace URI.</summary>
+ <param name="prefix">The namespace prefix of the attribute.</param>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="ns">The namespace URI for the attribute.</param>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartAttributeAsync(System.String,System.String,System.String)">
+ <summary>Asynchronously writes the start of an attribute with the specified prefix, local name, and namespace URI.</summary>
+ <param name="prefix">The namespace prefix of the attribute.</param>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="ns">The namespace URI for the attribute.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteStartAttribute" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartDocument">
+ <summary>When overridden in a derived class, writes the XML declaration with the version "1.0".</summary>
+ <exception cref="T:System.InvalidOperationException">This is not the first write method called after the constructor.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartDocument(System.Boolean)">
+ <summary>When overridden in a derived class, writes the XML declaration with the version "1.0" and the standalone attribute.</summary>
+ <param name="standalone">If <see langword="true" />, it writes "standalone=yes"; if <see langword="false" />, it writes "standalone=no".</param>
+ <exception cref="T:System.InvalidOperationException">This is not the first write method called after the constructor.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartDocumentAsync">
+ <summary>Asynchronously writes the XML declaration with the version "1.0".</summary>
+ <returns>The task that represents the asynchronous <see langword="WriteStartDocument" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartDocumentAsync(System.Boolean)">
+ <summary>Asynchronously writes the XML declaration with the version "1.0" and the standalone attribute.</summary>
+ <param name="standalone">If <see langword="true" />, it writes "standalone=yes"; if <see langword="false" />, it writes "standalone=no".</param>
+ <returns>The task that represents the asynchronous <see langword="WriteStartDocument" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartElement(System.String)">
+ <summary>When overridden in a derived class, writes out a start tag with the specified local name.</summary>
+ <param name="localName">The local name of the element.</param>
+ <exception cref="T:System.InvalidOperationException">The writer is closed.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartElement(System.String,System.String)">
+ <summary>When overridden in a derived class, writes the specified start tag and associates it with the given namespace.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="ns">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.</param>
+ <exception cref="T:System.InvalidOperationException">The writer is closed.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartElement(System.String,System.String,System.String)">
+ <summary>When overridden in a derived class, writes the specified start tag and associates it with the given namespace and prefix.</summary>
+ <param name="prefix">The namespace prefix of the element.</param>
+ <param name="localName">The local name of the element.</param>
+ <param name="ns">The namespace URI to associate with the element.</param>
+ <exception cref="T:System.InvalidOperationException">The writer is closed.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections.</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStartElementAsync(System.String,System.String,System.String)">
+ <summary>Asynchronously writes the specified start tag and associates it with the given namespace and prefix.</summary>
+ <param name="prefix">The namespace prefix of the element.</param>
+ <param name="localName">The local name of the element.</param>
+ <param name="ns">The namespace URI to associate with the element.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteStartElement" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="P:System.Xml.XmlWriter.WriteState">
+ <summary>When overridden in a derived class, gets the state of the writer.</summary>
+ <returns>One of the <see cref="T:System.Xml.WriteState" /> values.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteString(System.String)">
+ <summary>When overridden in a derived class, writes the given text content.</summary>
+ <param name="text">The text to write.</param>
+ <exception cref="T:System.ArgumentException">The text string contains an invalid surrogate pair.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteStringAsync(System.String)">
+ <summary>Asynchronously writes the given text content.</summary>
+ <param name="text">The text to write.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteString" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteSurrogateCharEntity(System.Char,System.Char)">
+ <summary>When overridden in a derived class, generates and writes the surrogate character entity for the surrogate character pair.</summary>
+ <param name="lowChar">The low surrogate. This must be a value between 0xDC00 and 0xDFFF.</param>
+ <param name="highChar">The high surrogate. This must be a value between 0xD800 and 0xDBFF.</param>
+ <exception cref="T:System.ArgumentException">An invalid surrogate character pair was passed.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteSurrogateCharEntityAsync(System.Char,System.Char)">
+ <summary>Asynchronously generates and writes the surrogate character entity for the surrogate character pair.</summary>
+ <param name="lowChar">The low surrogate. This must be a value between 0xDC00 and 0xDFFF.</param>
+ <param name="highChar">The high surrogate. This must be a value between 0xD800 and 0xDBFF.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteSurrogateCharEntity" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.Boolean)">
+ <summary>Writes a <see cref="T:System.Boolean" /> value.</summary>
+ <param name="value">The <see cref="T:System.Boolean" /> value to write.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.DateTime)">
+ <summary>Writes a <see cref="T:System.DateTime" /> value.</summary>
+ <param name="value">The <see cref="T:System.DateTime" /> value to write.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.DateTimeOffset)">
+ <summary>Writes a <see cref="T:System.DateTimeOffset" /> value.</summary>
+ <param name="value">The <see cref="T:System.DateTimeOffset" /> value to write.</param>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.Decimal)">
+ <summary>Writes a <see cref="T:System.Decimal" /> value.</summary>
+ <param name="value">The <see cref="T:System.Decimal" /> value to write.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.Double)">
+ <summary>Writes a <see cref="T:System.Double" /> value.</summary>
+ <param name="value">The <see cref="T:System.Double" /> value to write.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.Int32)">
+ <summary>Writes a <see cref="T:System.Int32" /> value.</summary>
+ <param name="value">The <see cref="T:System.Int32" /> value to write.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.Int64)">
+ <summary>Writes a <see cref="T:System.Int64" /> value.</summary>
+ <param name="value">The <see cref="T:System.Int64" /> value to write.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.Object)">
+ <summary>Writes the object value.</summary>
+ <param name="value">The object value to write.
+ Note With the release of the .NET Framework 3.5, this method accepts <see cref="T:System.DateTimeOffset" /> as a parameter.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The writer is closed or in error state.
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.Single)">
+ <summary>Writes a single-precision floating-point number.</summary>
+ <param name="value">The single-precision floating-point number to write.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteValue(System.String)">
+ <summary>Writes a <see cref="T:System.String" /> value.</summary>
+ <param name="value">The <see cref="T:System.String" /> value to write.</param>
+ <exception cref="T:System.ArgumentException">An invalid value was specified.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteWhitespace(System.String)">
+ <summary>When overridden in a derived class, writes out the given white space.</summary>
+ <param name="ws">The string of white space characters.</param>
+ <exception cref="T:System.ArgumentException">The string contains non-white space characters.</exception>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="M:System.Xml.XmlWriter.WriteWhitespaceAsync(System.String)">
+ <summary>Asynchronously writes out the given white space.</summary>
+ <param name="ws">The string of white space characters.</param>
+ <returns>The task that represents the asynchronous <see langword="WriteWhitespace" /> operation.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."
+-or-
+An <see cref="T:System.Xml.XmlWriter" /> asynchronous method was called without setting the <see cref="P:System.Xml.XmlWriterSettings.Async" /> flag to <see langword="true" />. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "Set XmlWriterSettings.Async to true if you want to use Async Methods."</exception>
+ </member>
+ <member name="P:System.Xml.XmlWriter.XmlLang">
+ <summary>When overridden in a derived class, gets the current <see langword="xml:lang" /> scope.</summary>
+ <returns>The current <see langword="xml:lang" /> scope.</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="P:System.Xml.XmlWriter.XmlSpace">
+ <summary>When overridden in a derived class, gets an <see cref="T:System.Xml.XmlSpace" /> representing the current <see langword="xml:space" /> scope.</summary>
+ <returns>An <see langword="XmlSpace" /> representing the current <see langword="xml:space" /> scope.
+ Value
+
+ Meaning
+
+ <see langword="None" /> This is the default if no <see langword="xml:space" /> scope exists.
+
+ <see langword="Default" /> The current scope is <see langword="xml:space" />="default".
+
+ <see langword="Preserve" /> The current scope is <see langword="xml:space" />="preserve".</returns>
+ <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlWriter" /> method was called before a previous asynchronous operation finished. In this case, <see cref="T:System.InvalidOperationException" /> is thrown with the message "An asynchronous operation is already in progress."</exception>
+ </member>
+ <member name="T:System.Xml.XmlWriterSettings">
+ <summary>Specifies a set of features to support on the <see cref="T:System.Xml.XmlWriter" /> object created by the <see cref="Overload:System.Xml.XmlWriter.Create" /> method.</summary>
+ </member>
+ <member name="M:System.Xml.XmlWriterSettings.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlWriterSettings" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.Async">
+ <summary>Gets or sets a value that indicates whether asynchronous <see cref="T:System.Xml.XmlWriter" /> methods can be used on a particular <see cref="T:System.Xml.XmlWriter" /> instance.</summary>
+ <returns>
+ <see langword="true" /> if asynchronous methods can be used; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.CheckCharacters">
+ <summary>Gets or sets a value that indicates whether the XML writer should check to ensure that all characters in the document conform to the "2.2 Characters" section of the W3C XML 1.0 Recommendation.</summary>
+ <returns>
+ <see langword="true" /> to do character checking; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlWriterSettings.Clone">
+ <summary>Creates a copy of the <see cref="T:System.Xml.XmlWriterSettings" /> instance.</summary>
+ <returns>The cloned <see cref="T:System.Xml.XmlWriterSettings" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.CloseOutput">
+ <summary>Gets or sets a value indicating whether the <see cref="T:System.Xml.XmlWriter" /> should also close the underlying stream or <see cref="T:System.IO.TextWriter" /> when the <see cref="M:System.Xml.XmlWriter.Close" /> method is called.</summary>
+ <returns>
+ <see langword="true" /> to also close the underlying stream or <see cref="T:System.IO.TextWriter" />; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.ConformanceLevel">
+ <summary>Gets or sets the level of conformance that the XML writer checks the XML output for.</summary>
+ <returns>One of the enumeration values that specifies the level of conformance (document, fragment, or automatic detection). The default is <see cref="F:System.Xml.ConformanceLevel.Document" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.DoNotEscapeUriAttributes">
+ <summary>Gets or sets a value that indicates whether the <see cref="T:System.Xml.XmlWriter" /> does not escape URI attributes.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XmlWriter" /> does not escape URI attributes; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.Encoding">
+ <summary>Gets or sets the type of text encoding to use.</summary>
+ <returns>The text encoding to use. The default is <see langword="Encoding.UTF8" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.Indent">
+ <summary>Gets or sets a value indicating whether to indent elements.</summary>
+ <returns>
+ <see langword="true" /> to write individual elements on new lines and indent; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.IndentChars">
+ <summary>Gets or sets the character string to use when indenting. This setting is used when the <see cref="P:System.Xml.XmlWriterSettings.Indent" /> property is set to <see langword="true" />.</summary>
+ <returns>The character string to use when indenting. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is two spaces.</returns>
+ <exception cref="T:System.ArgumentNullException">The value assigned to the <see cref="P:System.Xml.XmlWriterSettings.IndentChars" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.NamespaceHandling">
+ <summary>Gets or sets a value that indicates whether the <see cref="T:System.Xml.XmlWriter" /> should remove duplicate namespace declarations when writing XML content. The default behavior is for the writer to output all namespace declarations that are present in the writer's namespace resolver.</summary>
+ <returns>The <see cref="T:System.Xml.NamespaceHandling" /> enumeration used to specify whether to remove duplicate namespace declarations in the <see cref="T:System.Xml.XmlWriter" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.NewLineChars">
+ <summary>Gets or sets the character string to use for line breaks.</summary>
+ <returns>The character string to use for line breaks. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is <c>\r\n</c> (carriage return, new line).</returns>
+ <exception cref="T:System.ArgumentNullException">The value assigned to the <see cref="P:System.Xml.XmlWriterSettings.NewLineChars" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.NewLineHandling">
+ <summary>Gets or sets a value indicating whether to normalize line breaks in the output.</summary>
+ <returns>One of the <see cref="T:System.Xml.NewLineHandling" /> values. The default is <see cref="F:System.Xml.NewLineHandling.Replace" />.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.NewLineOnAttributes">
+ <summary>Gets or sets a value indicating whether to write attributes on a new line.</summary>
+ <returns>
+ <see langword="true" /> to write attributes on individual lines; otherwise, <see langword="false" />. The default is <see langword="false" />.
+
+ This setting has no effect when the <see cref="P:System.Xml.XmlWriterSettings.Indent" /> property value is <see langword="false" />.
+
+
+
+ When <see cref="P:System.Xml.XmlWriterSettings.NewLineOnAttributes" /> is set to <see langword="true" />, each attribute is pre-pended with a new line and one extra level of indentation.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.OmitXmlDeclaration">
+ <summary>Gets or sets a value indicating whether to omit an XML declaration.</summary>
+ <returns>
+ <see langword="true" /> to omit the XML declaration; otherwise, <see langword="false" />. The default is <see langword="false" />, an XML declaration is written.</returns>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.OutputMethod">
+ <summary>Gets the method used to serialize the <see cref="T:System.Xml.XmlWriter" /> output.</summary>
+ <returns>One of the <see cref="T:System.Xml.XmlOutputMethod" /> values. The default is <see cref="F:System.Xml.XmlOutputMethod.Xml" />.</returns>
+ </member>
+ <member name="M:System.Xml.XmlWriterSettings.Reset">
+ <summary>Resets the members of the settings class to their default values.</summary>
+ </member>
+ <member name="P:System.Xml.XmlWriterSettings.WriteEndDocumentOnClose">
+ <summary>Gets or sets a value that indicates whether the <see cref="T:System.Xml.XmlWriter" /> will add closing tags to all unclosed element tags when the <see cref="M:System.Xml.XmlWriter.Close" /> method is called.</summary>
+ <returns>
+ <see langword="true" /> if all unclosed element tags will be closed out; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
+ </member>
+ <member name="T:System.Xml.XPath.IXPathNavigable">
+ <summary>Provides an accessor to the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XPath.IXPathNavigable.CreateNavigator">
+ <summary>Returns a new <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</summary>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</returns>
+ </member>
+ <member name="T:System.Xml.XPath.XmlCaseOrder">
+ <summary>Specifies the sort order for uppercase and lowercase letters.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XmlCaseOrder.LowerFirst">
+ <summary>Lowercase letters are sorted before uppercase letters.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XmlCaseOrder.None">
+ <summary>Ignore the case.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XmlCaseOrder.UpperFirst">
+ <summary>Uppercase letters are sorted before lowercase letters.</summary>
+ </member>
+ <member name="T:System.Xml.XPath.XmlDataType">
+ <summary>Specifies the data type used to determine sort order.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XmlDataType.Number">
+ <summary>Values are sorted numerically.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XmlDataType.Text">
+ <summary>Values are sorted alphabetically.</summary>
+ </member>
+ <member name="T:System.Xml.XPath.XmlSortOrder">
+ <summary>Specifies the sort order.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XmlSortOrder.Ascending">
+ <summary>Nodes are sorted in ascending order. For example, if the numbers 1,2,3, and 4 are sorted in ascending order, they appear as 1,2,3,4.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XmlSortOrder.Descending">
+ <summary>Nodes are sorted in descending order. For example, if the numbers 1,2,3, and 4 are sorted in descending order, they appear as, 4,3,2,1.</summary>
+ </member>
+ <member name="T:System.Xml.XPath.XPathExpression">
+ <summary>Provides a typed class that represents a compiled XPath expression.</summary>
+ </member>
+ <member name="M:System.Xml.XPath.XPathExpression.AddSort(System.Object,System.Collections.IComparer)">
+ <summary>When overridden in a derived class, sorts the nodes selected by the XPath expression according to the specified <see cref="T:System.Collections.IComparer" /> object.</summary>
+ <param name="expr">An object representing the sort key. This can be the <see langword="string" /> value of the node or an <see cref="T:System.Xml.XPath.XPathExpression" /> object with a compiled XPath expression.</param>
+ <param name="comparer">An <see cref="T:System.Collections.IComparer" /> object that provides the specific data type comparisons for comparing two objects for equivalence.</param>
+ <exception cref="T:System.Xml.XPath.XPathException">The <see cref="T:System.Xml.XPath.XPathExpression" /> or sort key includes a prefix and either an <see cref="T:System.Xml.XmlNamespaceManager" /> is not provided, or the prefix cannot be found in the supplied <see cref="T:System.Xml.XmlNamespaceManager" />.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathExpression.AddSort(System.Object,System.Xml.XPath.XmlSortOrder,System.Xml.XPath.XmlCaseOrder,System.String,System.Xml.XPath.XmlDataType)">
+ <summary>When overridden in a derived class, sorts the nodes selected by the XPath expression according to the supplied parameters.</summary>
+ <param name="expr">An object representing the sort key. This can be the <see langword="string" /> value of the node or an <see cref="T:System.Xml.XPath.XPathExpression" /> object with a compiled XPath expression.</param>
+ <param name="order">An <see cref="T:System.Xml.XPath.XmlSortOrder" /> value indicating the sort order.</param>
+ <param name="caseOrder">An <see cref="T:System.Xml.XPath.XmlCaseOrder" /> value indicating how to sort uppercase and lowercase letters.</param>
+ <param name="lang">The language to use for comparison. Uses the <see cref="T:System.Globalization.CultureInfo" /> class that can be passed to the <see cref="Overload:System.String.Compare" /> method for the language types, for example, "us-en" for U.S. English. If an empty string is specified, the system environment is used to determine the <see cref="T:System.Globalization.CultureInfo" />.</param>
+ <param name="dataType">An <see cref="T:System.Xml.XPath.XmlDataType" /> value indicating the sort order for the data type.</param>
+ <exception cref="T:System.Xml.XPath.XPathException">The <see cref="T:System.Xml.XPath.XPathExpression" /> or sort key includes a prefix and either an <see cref="T:System.Xml.XmlNamespaceManager" /> is not provided, or the prefix cannot be found in the supplied <see cref="T:System.Xml.XmlNamespaceManager" />.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathExpression.Clone">
+ <summary>When overridden in a derived class, returns a clone of this <see cref="T:System.Xml.XPath.XPathExpression" />.</summary>
+ <returns>A new <see cref="T:System.Xml.XPath.XPathExpression" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathExpression.Compile(System.String)">
+ <summary>Compiles the XPath expression specified and returns an <see cref="T:System.Xml.XPath.XPathExpression" /> object representing the XPath expression.</summary>
+ <param name="xpath">An XPath expression.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathExpression" /> object.</returns>
+ <exception cref="T:System.ArgumentException">The XPath expression parameter is not a valid XPath expression.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathExpression.Compile(System.String,System.Xml.IXmlNamespaceResolver)">
+ <summary>Compiles the specified XPath expression, with the <see cref="T:System.Xml.IXmlNamespaceResolver" /> object specified for namespace resolution, and returns an <see cref="T:System.Xml.XPath.XPathExpression" /> object that represents the XPath expression.</summary>
+ <param name="xpath">An XPath expression.</param>
+ <param name="nsResolver">An object that implements the <see cref="T:System.Xml.IXmlNamespaceResolver" /> interface for namespace resolution.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathExpression" /> object.</returns>
+ <exception cref="T:System.ArgumentException">The XPath expression parameter is not a valid XPath expression.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathExpression.Expression">
+ <summary>When overridden in a derived class, gets a <see langword="string" /> representation of the <see cref="T:System.Xml.XPath.XPathExpression" />.</summary>
+ <returns>A <see langword="string" /> representation of the <see cref="T:System.Xml.XPath.XPathExpression" />.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathExpression.ReturnType">
+ <summary>When overridden in a derived class, gets the result type of the XPath expression.</summary>
+ <returns>An <see cref="T:System.Xml.XPath.XPathResultType" /> value representing the result type of the XPath expression.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathExpression.SetContext(System.Xml.IXmlNamespaceResolver)">
+ <summary>When overridden in a derived class, specifies the <see cref="T:System.Xml.IXmlNamespaceResolver" /> object to use for namespace resolution.</summary>
+ <param name="nsResolver">An object that implements the <see cref="T:System.Xml.IXmlNamespaceResolver" /> interface to use for namespace resolution.</param>
+ <exception cref="T:System.Xml.XPath.XPathException">The <see cref="T:System.Xml.IXmlNamespaceResolver" /> object parameter is not derived from <see cref="T:System.Xml.IXmlNamespaceResolver" />.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathExpression.SetContext(System.Xml.XmlNamespaceManager)">
+ <summary>When overridden in a derived class, specifies the <see cref="T:System.Xml.XmlNamespaceManager" /> object to use for namespace resolution.</summary>
+ <param name="nsManager">An <see cref="T:System.Xml.XmlNamespaceManager" /> object to use for namespace resolution.</param>
+ <exception cref="T:System.Xml.XPath.XPathException">The <see cref="T:System.Xml.XmlNamespaceManager" /> object parameter is not derived from the <see cref="T:System.Xml.XmlNamespaceManager" /> class.</exception>
+ </member>
+ <member name="T:System.Xml.XPath.XPathItem">
+ <summary>Represents an item in the XQuery 1.0 and XPath 2.0 Data Model.</summary>
+ </member>
+ <member name="M:System.Xml.XPath.XPathItem.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XPath.XPathItem" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.IsNode">
+ <summary>When overridden in a derived class, gets a value indicating whether the item represents an XPath node or an atomic value.</summary>
+ <returns>
+ <see langword="true" /> if the item represents an XPath node; <see langword="false" /> if the item represents an atomic value.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.TypedValue">
+ <summary>When overridden in a derived class, gets the current item as a boxed object of the most appropriate .NET Framework 2.0 type according to its schema type.</summary>
+ <returns>The current item as a boxed object of the most appropriate .NET Framework type.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.Value">
+ <summary>When overridden in a derived class, gets the <see langword="string" /> value of the item.</summary>
+ <returns>The <see langword="string" /> value of the item.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathItem.ValueAs(System.Type)">
+ <summary>Returns the item's value as the specified type.</summary>
+ <param name="returnType">The type to return the item value as.</param>
+ <returns>The value of the item as the type requested.</returns>
+ <exception cref="T:System.FormatException">The item's value is not in the correct format for the target type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathItem.ValueAs(System.Type,System.Xml.IXmlNamespaceResolver)">
+ <summary>When overridden in a derived class, returns the item's value as the type specified using the <see cref="T:System.Xml.IXmlNamespaceResolver" /> object specified to resolve namespace prefixes.</summary>
+ <param name="returnType">The type to return the item's value as.</param>
+ <param name="nsResolver">The <see cref="T:System.Xml.IXmlNamespaceResolver" /> object used to resolve namespace prefixes.</param>
+ <returns>The value of the item as the type requested.</returns>
+ <exception cref="T:System.FormatException">The item's value is not in the correct format for the target type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.ValueAsBoolean">
+ <summary>When overridden in a derived class, gets the item's value as a <see cref="T:System.Boolean" />.</summary>
+ <returns>The item's value as a <see cref="T:System.Boolean" />.</returns>
+ <exception cref="T:System.FormatException">The item's value is not in the correct format for the <see cref="T:System.Boolean" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Boolean" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.ValueAsDateTime">
+ <summary>When overridden in a derived class, gets the item's value as a <see cref="T:System.DateTime" />.</summary>
+ <returns>The item's value as a <see cref="T:System.DateTime" />.</returns>
+ <exception cref="T:System.FormatException">The item's value is not in the correct format for the <see cref="T:System.DateTime" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.DateTime" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.ValueAsDouble">
+ <summary>When overridden in a derived class, gets the item's value as a <see cref="T:System.Double" />.</summary>
+ <returns>The item's value as a <see cref="T:System.Double" />.</returns>
+ <exception cref="T:System.FormatException">The item's value is not in the correct format for the <see cref="T:System.Double" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Double" /> is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.ValueAsInt">
+ <summary>When overridden in a derived class, gets the item's value as an <see cref="T:System.Int32" />.</summary>
+ <returns>The item's value as an <see cref="T:System.Int32" />.</returns>
+ <exception cref="T:System.FormatException">The item's value is not in the correct format for the <see cref="T:System.Int32" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Int32" /> is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.ValueAsLong">
+ <summary>When overridden in a derived class, gets the item's value as an <see cref="T:System.Int64" />.</summary>
+ <returns>The item's value as an <see cref="T:System.Int64" />.</returns>
+ <exception cref="T:System.FormatException">The item's value is not in the correct format for the <see cref="T:System.Int64" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Int64" /> is not valid.</exception>
+ <exception cref="T:System.OverflowException">The attempted cast resulted in an overflow.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.ValueType">
+ <summary>When overridden in a derived class, gets the .NET Framework 2.0 type of the item.</summary>
+ <returns>The .NET Framework type of the item. The default value is <see cref="T:System.String" />.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathItem.XmlType">
+ <summary>When overridden in a derived class, gets the <see cref="T:System.Xml.Schema.XmlSchemaType" /> for the item.</summary>
+ <returns>The <see cref="T:System.Xml.Schema.XmlSchemaType" /> for the item.</returns>
+ </member>
+ <member name="T:System.Xml.XPath.XPathNamespaceScope">
+ <summary>Defines the namespace scope.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNamespaceScope.All">
+ <summary>Returns all namespaces defined in the scope of the current node. This includes the <c>xmlns:xml</c> namespace which is always declared implicitly. The order of the namespaces returned is not defined.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNamespaceScope.ExcludeXml">
+ <summary>Returns all namespaces defined in the scope of the current node, excluding the <c>xmlns:xml</c> namespace. The <c>xmlns:xml</c> namespace is always declared implicitly. The order of the namespaces returned is not defined.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNamespaceScope.Local">
+ <summary>Returns all namespaces that are defined locally at the current node.</summary>
+ </member>
+ <member name="T:System.Xml.XPath.XPathNavigator">
+ <summary>Provides a cursor model for navigating and editing XML data.</summary>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.AppendChild">
+ <summary>Returns an <see cref="T:System.Xml.XmlWriter" /> object used to create one or more new child nodes at the end of the list of child nodes of the current node.</summary>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object used to create new child nodes at the end of the list of child nodes of the current node.</returns>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on is not the root node or an element node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.AppendChild(System.String)">
+ <summary>Creates a new child node at the end of the list of child nodes of the current node using the XML data string specified.</summary>
+ <param name="newChild">The XML data string for the new child node.</param>
+ <exception cref="T:System.ArgumentNullException">The XML data string parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on is not the root node or an element node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML data string parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.AppendChild(System.Xml.XmlReader)">
+ <summary>Creates a new child node at the end of the list of child nodes of the current node using the XML contents of the <see cref="T:System.Xml.XmlReader" /> object specified.</summary>
+ <param name="newChild">An <see cref="T:System.Xml.XmlReader" /> object positioned on the XML data for the new child node.</param>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.XmlReader" /> object is in an error state or closed.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlReader" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on is not the root node or an element node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML contents of the <see cref="T:System.Xml.XmlReader" /> object parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.AppendChild(System.Xml.XPath.XPathNavigator)">
+ <summary>Creates a new child node at the end of the list of child nodes of the current node using the nodes in the <see cref="T:System.Xml.XPath.XPathNavigator" /> specified.</summary>
+ <param name="newChild">An <see cref="T:System.Xml.XPath.XPathNavigator" /> object positioned on the node to add as the new child node.</param>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on is not the root node or an element node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.AppendChildElement(System.String,System.String,System.String,System.String)">
+ <summary>Creates a new child element node at the end of the list of child nodes of the current node using the namespace prefix, local name and namespace URI specified with the value specified.</summary>
+ <param name="prefix">The namespace prefix of the new child element node (if any).</param>
+ <param name="localName">The local name of the new child element node (if any).</param>
+ <param name="namespaceURI">The namespace URI of the new child element node (if any). <see cref="F:System.String.Empty" /> and <see langword="null" /> are equivalent.</param>
+ <param name="value">The value of the new child element node. If <see cref="F:System.String.Empty" /> or <see langword="null" /> are passed, an empty element is created.</param>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on is not the root node or an element node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.BaseURI">
+ <summary>When overridden in a derived class, gets the base URI for the current node.</summary>
+ <returns>The location from which the node was loaded, or <see cref="F:System.String.Empty" /> if there is no value.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.CanEdit">
+ <summary>Gets a value that indicates whether the <see cref="T:System.Xml.XPath.XPathNavigator" /> can edit the underlying XML data.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> can edit the underlying XML data; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.CheckValidity(System.Xml.Schema.XmlSchemaSet,System.Xml.Schema.ValidationEventHandler)">
+ <summary>Verifies that the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> conforms to the XML Schema definition language (XSD) schema provided.</summary>
+ <param name="schemas">The <see cref="T:System.Xml.Schema.XmlSchemaSet" /> containing the schemas used to validate the XML data contained in the <see cref="T:System.Xml.XPath.XPathNavigator" />.</param>
+ <param name="validationEventHandler">The <see cref="T:System.Xml.Schema.ValidationEventHandler" /> that receives information about schema validation warnings and errors.</param>
+ <returns>
+ <see langword="true" /> if no schema validation errors occurred; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.Xml.Schema.XmlSchemaValidationException">A schema validation error occurred, and no <see cref="T:System.Xml.Schema.ValidationEventHandler" /> was specified to handle validation errors.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on a node that is not an element, attribute, or the root node or there is not type information to perform validation.</exception>
+ <exception cref="T:System.ArgumentException">The <see cref="M:System.Xml.XPath.XPathNavigator.CheckValidity(System.Xml.Schema.XmlSchemaSet,System.Xml.Schema.ValidationEventHandler)" /> method was called with an <see cref="T:System.Xml.Schema.XmlSchemaSet" /> parameter when the <see cref="T:System.Xml.XPath.XPathNavigator" /> was not positioned on the root node of the XML data.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Clone">
+ <summary>When overridden in a derived class, creates a new <see cref="T:System.Xml.XPath.XPathNavigator" /> positioned at the same node as this <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
+ <returns>A new <see cref="T:System.Xml.XPath.XPathNavigator" /> positioned at the same node as this <see cref="T:System.Xml.XPath.XPathNavigator" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.ComparePosition(System.Xml.XPath.XPathNavigator)">
+ <summary>Compares the position of the current <see cref="T:System.Xml.XPath.XPathNavigator" /> with the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> specified.</summary>
+ <param name="nav">The <see cref="T:System.Xml.XPath.XPathNavigator" /> to compare against.</param>
+ <returns>An <see cref="T:System.Xml.XmlNodeOrder" /> value representing the comparative position of the two <see cref="T:System.Xml.XPath.XPathNavigator" /> objects.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Compile(System.String)">
+ <summary>Compiles a string representing an XPath expression and returns an <see cref="T:System.Xml.XPath.XPathExpression" /> object.</summary>
+ <param name="xpath">A string representing an XPath expression.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathExpression" /> object representing the XPath expression.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="xpath" /> parameter contains an XPath expression that is not valid.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.CreateAttribute(System.String,System.String,System.String,System.String)">
+ <summary>Creates an attribute node on the current element node using the namespace prefix, local name and namespace URI specified with the value specified.</summary>
+ <param name="prefix">The namespace prefix of the new attribute node (if any).</param>
+ <param name="localName">The local name of the new attribute node which cannot <see cref="F:System.String.Empty" /> or <see langword="null" />.</param>
+ <param name="namespaceURI">The namespace URI for the new attribute node (if any).</param>
+ <param name="value">The value of the new attribute node. If <see cref="F:System.String.Empty" /> or <see langword="null" /> are passed, an empty attribute node is created.</param>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.CreateAttributes">
+ <summary>Returns an <see cref="T:System.Xml.XmlWriter" /> object used to create new attributes on the current element.</summary>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object used to create new attributes on the current element.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.CreateNavigator">
+ <summary>Returns a copy of the <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNavigator" /> copy of this <see cref="T:System.Xml.XPath.XPathNavigator" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.DeleteRange(System.Xml.XPath.XPathNavigator)">
+ <summary>Deletes a range of sibling nodes from the current node to the node specified.</summary>
+ <param name="lastSiblingToDelete">An <see cref="T:System.Xml.XPath.XPathNavigator" /> positioned on the last sibling node in the range to delete.</param>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> specified is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.InvalidOperationException">The last node to delete specified is not a valid sibling node of the current node.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.DeleteSelf">
+ <summary>Deletes the current node and its child nodes.</summary>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on a node that cannot be deleted such as the root node or a namespace node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Evaluate(System.String)">
+ <summary>Evaluates the specified XPath expression and returns the typed result.</summary>
+ <param name="xpath">A string representing an XPath expression that can be evaluated.</param>
+ <returns>The result of the expression (Boolean, number, string, or node set). This maps to <see cref="T:System.Boolean" />, <see cref="T:System.Double" />, <see cref="T:System.String" />, or <see cref="T:System.Xml.XPath.XPathNodeIterator" /> objects respectively.</returns>
+ <exception cref="T:System.ArgumentException">The return type of the XPath expression is a node set.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Evaluate(System.String,System.Xml.IXmlNamespaceResolver)">
+ <summary>Evaluates the specified XPath expression and returns the typed result, using the <see cref="T:System.Xml.IXmlNamespaceResolver" /> object specified to resolve namespace prefixes in the XPath expression.</summary>
+ <param name="xpath">A string representing an XPath expression that can be evaluated.</param>
+ <param name="resolver">The <see cref="T:System.Xml.IXmlNamespaceResolver" /> object used to resolve namespace prefixes in the XPath expression.</param>
+ <returns>The result of the expression (Boolean, number, string, or node set). This maps to <see cref="T:System.Boolean" />, <see cref="T:System.Double" />, <see cref="T:System.String" />, or <see cref="T:System.Xml.XPath.XPathNodeIterator" /> objects respectively.</returns>
+ <exception cref="T:System.ArgumentException">The return type of the XPath expression is a node set.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Evaluate(System.Xml.XPath.XPathExpression)">
+ <summary>Evaluates the <see cref="T:System.Xml.XPath.XPathExpression" /> and returns the typed result.</summary>
+ <param name="expr">An <see cref="T:System.Xml.XPath.XPathExpression" /> that can be evaluated.</param>
+ <returns>The result of the expression (Boolean, number, string, or node set). This maps to <see cref="T:System.Boolean" />, <see cref="T:System.Double" />, <see cref="T:System.String" />, or <see cref="T:System.Xml.XPath.XPathNodeIterator" /> objects respectively.</returns>
+ <exception cref="T:System.ArgumentException">The return type of the XPath expression is a node set.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Evaluate(System.Xml.XPath.XPathExpression,System.Xml.XPath.XPathNodeIterator)">
+ <summary>Uses the supplied context to evaluate the <see cref="T:System.Xml.XPath.XPathExpression" />, and returns the typed result.</summary>
+ <param name="expr">An <see cref="T:System.Xml.XPath.XPathExpression" /> that can be evaluated.</param>
+ <param name="context">An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that points to the selected node set that the evaluation is to be performed on.</param>
+ <returns>The result of the expression (Boolean, number, string, or node set). This maps to <see cref="T:System.Boolean" />, <see cref="T:System.Double" />, <see cref="T:System.String" />, or <see cref="T:System.Xml.XPath.XPathNodeIterator" /> objects respectively.</returns>
+ <exception cref="T:System.ArgumentException">The return type of the XPath expression is a node set.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.GetAttribute(System.String,System.String)">
+ <summary>Gets the value of the attribute with the specified local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute. <paramref name="localName" /> is case-sensitive.</param>
+ <param name="namespaceURI">The namespace URI of the attribute.</param>
+ <returns>A <see cref="T:System.String" /> that contains the value of the specified attribute; <see cref="F:System.String.Empty" /> if a matching attribute is not found, or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element node.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.GetNamespace(System.String)">
+ <summary>Returns the value of the namespace node corresponding to the specified local name.</summary>
+ <param name="name">The local name of the namespace node.</param>
+ <returns>A <see cref="T:System.String" /> that contains the value of the namespace node; <see cref="F:System.String.Empty" /> if a matching namespace node is not found, or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element node.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.GetNamespacesInScope(System.Xml.XmlNamespaceScope)">
+ <summary>Returns the in-scope namespaces of the current node.</summary>
+ <param name="scope">An <see cref="T:System.Xml.XmlNamespaceScope" /> value specifying the namespaces to return.</param>
+ <returns>An <see cref="T:System.Collections.Generic.IDictionary`2" /> collection of namespace names keyed by prefix.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.HasAttributes">
+ <summary>Gets a value that indicates whether the current node has any attributes.</summary>
+ <returns>
+ <see langword="true" /> if the current node has attributes; returns <see langword="false" /> if the current node has no attributes, or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element node.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.HasChildren">
+ <summary>Gets a value that indicates whether the current node has any child nodes.</summary>
+ <returns>
+ <see langword="true" /> if the current node has any child nodes; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.InnerXml">
+ <summary>Gets or sets the markup representing the child nodes of the current node.</summary>
+ <returns>A <see cref="T:System.String" /> that contains the markup of the child nodes of the current node.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Xml.XPath.XPathNavigator.InnerXml" /> property cannot be set.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertAfter">
+ <summary>Returns an <see cref="T:System.Xml.XmlWriter" /> object used to create a new sibling node after the currently selected node.</summary>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object used to create a new sibling node after the currently selected node.</returns>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted after the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertAfter(System.String)">
+ <summary>Creates a new sibling node after the currently selected node using the XML string specified.</summary>
+ <param name="newSibling">The XML data string for the new sibling node.</param>
+ <exception cref="T:System.ArgumentNullException">The XML string parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted after the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML string parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertAfter(System.Xml.XmlReader)">
+ <summary>Creates a new sibling node after the currently selected node using the XML contents of the <see cref="T:System.Xml.XmlReader" /> object specified.</summary>
+ <param name="newSibling">An <see cref="T:System.Xml.XmlReader" /> object positioned on the XML data for the new sibling node.</param>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.XmlReader" /> object is in an error state or closed.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlReader" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted after the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML contents of the <see cref="T:System.Xml.XmlReader" /> object parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertAfter(System.Xml.XPath.XPathNavigator)">
+ <summary>Creates a new sibling node after the currently selected node using the nodes in the <see cref="T:System.Xml.XPath.XPathNavigator" /> object specified.</summary>
+ <param name="newSibling">An <see cref="T:System.Xml.XPath.XPathNavigator" /> object positioned on the node to add as the new sibling node.</param>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted after the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertBefore">
+ <summary>Returns an <see cref="T:System.Xml.XmlWriter" /> object used to create a new sibling node before the currently selected node.</summary>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object used to create a new sibling node before the currently selected node.</returns>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted before the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertBefore(System.String)">
+ <summary>Creates a new sibling node before the currently selected node using the XML string specified.</summary>
+ <param name="newSibling">The XML data string for the new sibling node.</param>
+ <exception cref="T:System.ArgumentNullException">The XML string parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted before the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML string parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertBefore(System.Xml.XmlReader)">
+ <summary>Creates a new sibling node before the currently selected node using the XML contents of the <see cref="T:System.Xml.XmlReader" /> object specified.</summary>
+ <param name="newSibling">An <see cref="T:System.Xml.XmlReader" /> object positioned on the XML data for the new sibling node.</param>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.XmlReader" /> object is in an error state or closed.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlReader" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted before the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML contents of the <see cref="T:System.Xml.XmlReader" /> object parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertBefore(System.Xml.XPath.XPathNavigator)">
+ <summary>Creates a new sibling node before the currently selected node using the nodes in the <see cref="T:System.Xml.XPath.XPathNavigator" /> specified.</summary>
+ <param name="newSibling">An <see cref="T:System.Xml.XPath.XPathNavigator" /> object positioned on the node to add as the new sibling node.</param>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted before the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertElementAfter(System.String,System.String,System.String,System.String)">
+ <summary>Creates a new sibling element after the current node using the namespace prefix, local name and namespace URI specified, with the value specified.</summary>
+ <param name="prefix">The namespace prefix of the new child element (if any).</param>
+ <param name="localName">The local name of the new child element (if any).</param>
+ <param name="namespaceURI">The namespace URI of the new child element (if any). <see cref="F:System.String.Empty" /> and <see langword="null" /> are equivalent.</param>
+ <param name="value">The value of the new child element. If <see cref="F:System.String.Empty" /> or <see langword="null" /> are passed, an empty element is created.</param>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted after the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.InsertElementBefore(System.String,System.String,System.String,System.String)">
+ <summary>Creates a new sibling element before the current node using the namespace prefix, local name, and namespace URI specified, with the value specified.</summary>
+ <param name="prefix">The namespace prefix of the new child element (if any).</param>
+ <param name="localName">The local name of the new child element (if any).</param>
+ <param name="namespaceURI">The namespace URI of the new child element (if any). <see cref="F:System.String.Empty" /> and <see langword="null" /> are equivalent.</param>
+ <param name="value">The value of the new child element. If <see cref="F:System.String.Empty" /> or <see langword="null" /> are passed, an empty element is created.</param>
+ <exception cref="T:System.InvalidOperationException">The position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> does not allow a new sibling node to be inserted before the current node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.IsDescendant(System.Xml.XPath.XPathNavigator)">
+ <summary>Determines whether the specified <see cref="T:System.Xml.XPath.XPathNavigator" /> is a descendant of the current <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
+ <param name="nav">The <see cref="T:System.Xml.XPath.XPathNavigator" /> to compare to this <see cref="T:System.Xml.XPath.XPathNavigator" />.</param>
+ <returns>
+ <see langword="true" /> if the specified <see cref="T:System.Xml.XPath.XPathNavigator" /> is a descendant of the current <see cref="T:System.Xml.XPath.XPathNavigator" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.IsEmptyElement">
+ <summary>When overridden in a derived class, gets a value that indicates whether the current node is an empty element without an end element tag.</summary>
+ <returns>
+ <see langword="true" /> if the current node is an empty element; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.IsNode">
+ <summary>Gets a value that indicates if the current node represents an XPath node.</summary>
+ <returns>Always returns <see langword="true" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.IsSamePosition(System.Xml.XPath.XPathNavigator)">
+ <summary>When overridden in a derived class, determines whether the current <see cref="T:System.Xml.XPath.XPathNavigator" /> is at the same position as the specified <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
+ <param name="other">The <see cref="T:System.Xml.XPath.XPathNavigator" /> to compare to this <see cref="T:System.Xml.XPath.XPathNavigator" />.</param>
+ <returns>
+ <see langword="true" /> if the two <see cref="T:System.Xml.XPath.XPathNavigator" /> objects have the same position; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.LocalName">
+ <summary>When overridden in a derived class, gets the <see cref="P:System.Xml.XPath.XPathNavigator.Name" /> of the current node without any namespace prefix.</summary>
+ <returns>A <see cref="T:System.String" /> that contains the local name of the current node, or <see cref="F:System.String.Empty" /> if the current node does not have a name (for example, text or comment nodes).</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.LookupNamespace(System.String)">
+ <summary>Gets the namespace URI for the specified prefix.</summary>
+ <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass <see cref="F:System.String.Empty" />.</param>
+ <returns>A <see cref="T:System.String" /> that contains the namespace URI assigned to the namespace prefix specified; <see langword="null" /> if no namespace URI is assigned to the prefix specified. The <see cref="T:System.String" /> returned is atomized.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.LookupPrefix(System.String)">
+ <summary>Gets the prefix declared for the specified namespace URI.</summary>
+ <param name="namespaceURI">The namespace URI to resolve for the prefix.</param>
+ <returns>A <see cref="T:System.String" /> that contains the namespace prefix assigned to the namespace URI specified; otherwise, <see cref="F:System.String.Empty" /> if no prefix is assigned to the namespace URI specified. The <see cref="T:System.String" /> returned is atomized.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Matches(System.String)">
+ <summary>Determines whether the current node matches the specified XPath expression.</summary>
+ <param name="xpath">The XPath expression.</param>
+ <returns>
+ <see langword="true" /> if the current node matches the specified XPath expression; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentException">The XPath expression cannot be evaluated.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Matches(System.Xml.XPath.XPathExpression)">
+ <summary>Determines whether the current node matches the specified <see cref="T:System.Xml.XPath.XPathExpression" />.</summary>
+ <param name="expr">An <see cref="T:System.Xml.XPath.XPathExpression" /> object containing the compiled XPath expression.</param>
+ <returns>
+ <see langword="true" /> if the current node matches the <see cref="T:System.Xml.XPath.XPathExpression" />; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentException">The XPath expression cannot be evaluated.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveTo(System.Xml.XPath.XPathNavigator)">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the same position as the specified <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
+ <param name="other">The <see cref="T:System.Xml.XPath.XPathNavigator" /> positioned on the node that you want to move to.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the same position as the specified <see cref="T:System.Xml.XPath.XPathNavigator" />; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToAttribute(System.String,System.String)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the attribute with the matching local name and namespace URI.</summary>
+ <param name="localName">The local name of the attribute.</param>
+ <param name="namespaceURI">The namespace URI of the attribute; <see langword="null" /> for an empty namespace.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the attribute; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToChild(System.String,System.String)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the child node with the local name and namespace URI specified.</summary>
+ <param name="localName">The local name of the child node to move to.</param>
+ <param name="namespaceURI">The namespace URI of the child node to move to.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the child node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToChild(System.Xml.XPath.XPathNodeType)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the child node of the <see cref="T:System.Xml.XPath.XPathNodeType" /> specified.</summary>
+ <param name="type">The <see cref="T:System.Xml.XPath.XPathNodeType" /> of the child node to move to.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the child node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirst">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the first sibling node of the current node.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the first sibling node of the current node; <see langword="false" /> if there is no first sibling, or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is currently positioned on an attribute node. If the <see cref="T:System.Xml.XPath.XPathNavigator" /> is already positioned on the first sibling, <see cref="T:System.Xml.XPath.XPathNavigator" /> will return <see langword="true" /> and will not move its position.
+If <see cref="M:System.Xml.XPath.XPathNavigator.MoveToFirst" /> returns <see langword="false" /> because there is no first sibling, or if <see cref="T:System.Xml.XPath.XPathNavigator" /> is currently positioned on an attribute, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirstAttribute">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the first attribute of the current node.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the first attribute of the current node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirstChild">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the first child node of the current node.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the first child node of the current node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirstNamespace">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to first namespace node of the current node.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the first namespace node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFirstNamespace(System.Xml.XPath.XPathNamespaceScope)">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the first namespace node that matches the <see cref="T:System.Xml.XPath.XPathNamespaceScope" /> specified.</summary>
+ <param name="namespaceScope">An <see cref="T:System.Xml.XPath.XPathNamespaceScope" /> value describing the namespace scope.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the first namespace node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFollowing(System.String,System.String)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the element with the local name and namespace URI specified in document order.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> moved successfully; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFollowing(System.String,System.String,System.Xml.XPath.XPathNavigator)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the element with the local name and namespace URI specified, to the boundary specified, in document order.</summary>
+ <param name="localName">The local name of the element.</param>
+ <param name="namespaceURI">The namespace URI of the element.</param>
+ <param name="end">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object positioned on the element boundary which the current <see cref="T:System.Xml.XPath.XPathNavigator" /> will not move past while searching for the following element.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> moved successfully; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFollowing(System.Xml.XPath.XPathNodeType)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the following element of the <see cref="T:System.Xml.XPath.XPathNodeType" /> specified in document order.</summary>
+ <param name="type">The <see cref="T:System.Xml.XPath.XPathNodeType" /> of the element. The <see cref="T:System.Xml.XPath.XPathNodeType" /> cannot be <see cref="F:System.Xml.XPath.XPathNodeType.Attribute" /> or <see cref="F:System.Xml.XPath.XPathNodeType.Namespace" />.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> moved successfully; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToFollowing(System.Xml.XPath.XPathNodeType,System.Xml.XPath.XPathNavigator)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the following element of the <see cref="T:System.Xml.XPath.XPathNodeType" /> specified, to the boundary specified, in document order.</summary>
+ <param name="type">The <see cref="T:System.Xml.XPath.XPathNodeType" /> of the element. The <see cref="T:System.Xml.XPath.XPathNodeType" /> cannot be <see cref="F:System.Xml.XPath.XPathNodeType.Attribute" /> or <see cref="F:System.Xml.XPath.XPathNodeType.Namespace" />.</param>
+ <param name="end">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object positioned on the element boundary which the current <see cref="T:System.Xml.XPath.XPathNavigator" /> will not move past while searching for the following element.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> moved successfully; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToId(System.String)">
+ <summary>When overridden in a derived class, moves to the node that has an attribute of type <c>ID</c> whose value matches the specified <see cref="T:System.String" />.</summary>
+ <param name="id">A <see cref="T:System.String" /> representing the <c>ID</c> value of the node to which you want to move.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving; otherwise, <see langword="false" />. If <see langword="false" />, the position of the navigator is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToNamespace(System.String)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the namespace node with the specified namespace prefix.</summary>
+ <param name="name">The namespace prefix of the namespace node.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the specified namespace; <see langword="false" /> if a matching namespace node was not found, or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element node. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToNext">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the next sibling node of the current node.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the next sibling node; otherwise, <see langword="false" /> if there are no more siblings or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is currently positioned on an attribute node. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToNext(System.String,System.String)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the next sibling node with the local name and namespace URI specified.</summary>
+ <param name="localName">The local name of the next sibling node to move to.</param>
+ <param name="namespaceURI">The namespace URI of the next sibling node to move to.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the next sibling node; <see langword="false" /> if there are no more siblings, or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is currently positioned on an attribute node. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToNext(System.Xml.XPath.XPathNodeType)">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the next sibling node of the current node that matches the <see cref="T:System.Xml.XPath.XPathNodeType" /> specified.</summary>
+ <param name="type">The <see cref="T:System.Xml.XPath.XPathNodeType" /> of the sibling node to move to.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the next sibling node; otherwise, <see langword="false" /> if there are no more siblings or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is currently positioned on an attribute node. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToNextAttribute">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the next attribute.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the next attribute; <see langword="false" /> if there are no more attributes. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToNextNamespace">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the next namespace node.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the next namespace node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToNextNamespace(System.Xml.XPath.XPathNamespaceScope)">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the next namespace node matching the <see cref="T:System.Xml.XPath.XPathNamespaceScope" /> specified.</summary>
+ <param name="namespaceScope">An <see cref="T:System.Xml.XPath.XPathNamespaceScope" /> value describing the namespace scope.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the next namespace node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToParent">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the parent node of the current node.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the parent node of the current node; otherwise, <see langword="false" />. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToPrevious">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the previous sibling node of the current node.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is successful moving to the previous sibling node; otherwise, <see langword="false" /> if there is no previous sibling node or if the <see cref="T:System.Xml.XPath.XPathNavigator" /> is currently positioned on an attribute node. If <see langword="false" />, the position of the <see cref="T:System.Xml.XPath.XPathNavigator" /> is unchanged.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.MoveToRoot">
+ <summary>Moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> to the root node that the current node belongs to.</summary>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.Name">
+ <summary>When overridden in a derived class, gets the qualified name of the current node.</summary>
+ <returns>A <see cref="T:System.String" /> that contains the qualified <see cref="P:System.Xml.XPath.XPathNavigator.Name" /> of the current node, or <see cref="F:System.String.Empty" /> if the current node does not have a name (for example, text or comment nodes).</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.NamespaceURI">
+ <summary>When overridden in a derived class, gets the namespace URI of the current node.</summary>
+ <returns>A <see cref="T:System.String" /> that contains the namespace URI of the current node, or <see cref="F:System.String.Empty" /> if the current node has no namespace URI.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.NameTable">
+ <summary>When overridden in a derived class, gets the <see cref="T:System.Xml.XmlNameTable" /> of the <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
+ <returns>An <see cref="T:System.Xml.XmlNameTable" /> object enabling you to get the atomized version of a <see cref="T:System.String" /> within the XML document.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.NavigatorComparer">
+ <summary>Gets an <see cref="T:System.Collections.IEqualityComparer" /> used for equality comparison of <see cref="T:System.Xml.XPath.XPathNavigator" /> objects.</summary>
+ <returns>An <see cref="T:System.Collections.IEqualityComparer" /> used for equality comparison of <see cref="T:System.Xml.XPath.XPathNavigator" /> objects.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.NodeType">
+ <summary>When overridden in a derived class, gets the <see cref="T:System.Xml.XPath.XPathNodeType" /> of the current node.</summary>
+ <returns>One of the <see cref="T:System.Xml.XPath.XPathNodeType" /> values representing the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.OuterXml">
+ <summary>Gets or sets the markup representing the opening and closing tags of the current node and its child nodes.</summary>
+ <returns>A <see cref="T:System.String" /> that contains the markup representing the opening and closing tags of the current node and its child nodes.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.Prefix">
+ <summary>When overridden in a derived class, gets the namespace prefix associated with the current node.</summary>
+ <returns>A <see cref="T:System.String" /> that contains the namespace prefix associated with the current node.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.PrependChild">
+ <summary>Returns an <see cref="T:System.Xml.XmlWriter" /> object used to create a new child node at the beginning of the list of child nodes of the current node.</summary>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object used to create a new child node at the beginning of the list of child nodes of the current node.</returns>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on does not allow a new child node to be prepended.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.PrependChild(System.String)">
+ <summary>Creates a new child node at the beginning of the list of child nodes of the current node using the XML string specified.</summary>
+ <param name="newChild">The XML data string for the new child node.</param>
+ <exception cref="T:System.ArgumentNullException">The XML string parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on does not allow a new child node to be prepended.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML string parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.PrependChild(System.Xml.XmlReader)">
+ <summary>Creates a new child node at the beginning of the list of child nodes of the current node using the XML contents of the <see cref="T:System.Xml.XmlReader" /> object specified.</summary>
+ <param name="newChild">An <see cref="T:System.Xml.XmlReader" /> object positioned on the XML data for the new child node.</param>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.XmlReader" /> object is in an error state or closed.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlReader" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on does not allow a new child node to be prepended.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML contents of the <see cref="T:System.Xml.XmlReader" /> object parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.PrependChild(System.Xml.XPath.XPathNavigator)">
+ <summary>Creates a new child node at the beginning of the list of child nodes of the current node using the nodes in the <see cref="T:System.Xml.XPath.XPathNavigator" /> object specified.</summary>
+ <param name="newChild">An <see cref="T:System.Xml.XPath.XPathNavigator" /> object positioned on the node to add as the new child node.</param>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on does not allow a new child node to be prepended.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.PrependChildElement(System.String,System.String,System.String,System.String)">
+ <summary>Creates a new child element at the beginning of the list of child nodes of the current node using the namespace prefix, local name, and namespace URI specified with the value specified.</summary>
+ <param name="prefix">The namespace prefix of the new child element (if any).</param>
+ <param name="localName">The local name of the new child element (if any).</param>
+ <param name="namespaceURI">The namespace URI of the new child element (if any). <see cref="F:System.String.Empty" /> and <see langword="null" /> are equivalent.</param>
+ <param name="value">The value of the new child element. If <see cref="F:System.String.Empty" /> or <see langword="null" /> are passed, an empty element is created.</param>
+ <exception cref="T:System.InvalidOperationException">The current node the <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on does not allow a new child node to be prepended.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.ReadSubtree">
+ <summary>Returns an <see cref="T:System.Xml.XmlReader" /> object that contains the current node and its child nodes.</summary>
+ <returns>An <see cref="T:System.Xml.XmlReader" /> object that contains the current node and its child nodes.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element node or the root node.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.ReplaceRange(System.Xml.XPath.XPathNavigator)">
+ <summary>Replaces a range of sibling nodes from the current node to the node specified.</summary>
+ <param name="lastSiblingToReplace">An <see cref="T:System.Xml.XPath.XPathNavigator" /> positioned on the last sibling node in the range to replace.</param>
+ <returns>An <see cref="T:System.Xml.XmlWriter" /> object used to specify the replacement range.</returns>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> specified is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.InvalidOperationException">The last node to replace specified is not a valid sibling node of the current node.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.ReplaceSelf(System.String)">
+ <summary>Replaces the current node with the content of the string specified.</summary>
+ <param name="newNode">The XML data string for the new node.</param>
+ <exception cref="T:System.ArgumentNullException">The XML string parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element, text, processing instruction, or comment node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML string parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.ReplaceSelf(System.Xml.XmlReader)">
+ <summary>Replaces the current node with the contents of the <see cref="T:System.Xml.XmlReader" /> object specified.</summary>
+ <param name="newNode">An <see cref="T:System.Xml.XmlReader" /> object positioned on the XML data for the new node.</param>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.XmlReader" /> object is in an error state or closed.</exception>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XmlReader" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element, text, processing instruction, or comment node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML contents of the <see cref="T:System.Xml.XmlReader" /> object parameter is not well-formed.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.ReplaceSelf(System.Xml.XPath.XPathNavigator)">
+ <summary>Replaces the current node with the contents of the <see cref="T:System.Xml.XPath.XPathNavigator" /> object specified.</summary>
+ <param name="newNode">An <see cref="T:System.Xml.XPath.XPathNavigator" /> object positioned on the new node.</param>
+ <exception cref="T:System.ArgumentNullException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> object parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element, text, processing instruction, or comment node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ <exception cref="T:System.Xml.XmlException">The XML contents of the <see cref="T:System.Xml.XPath.XPathNavigator" /> object parameter is not well-formed.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.SchemaInfo">
+ <summary>Gets the schema information that has been assigned to the current node as a result of schema validation.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.IXmlSchemaInfo" /> object that contains the schema information for the current node.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Select(System.String)">
+ <summary>Selects a node set, using the specified XPath expression.</summary>
+ <param name="xpath">A <see cref="T:System.String" /> representing an XPath expression.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> pointing to the selected node set.</returns>
+ <exception cref="T:System.ArgumentException">The XPath expression contains an error or its return type is not a node set.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Select(System.String,System.Xml.IXmlNamespaceResolver)">
+ <summary>Selects a node set using the specified XPath expression with the <see cref="T:System.Xml.IXmlNamespaceResolver" /> object specified to resolve namespace prefixes.</summary>
+ <param name="xpath">A <see cref="T:System.String" /> representing an XPath expression.</param>
+ <param name="resolver">The <see cref="T:System.Xml.IXmlNamespaceResolver" /> object used to resolve namespace prefixes.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that points to the selected node set.</returns>
+ <exception cref="T:System.ArgumentException">The XPath expression contains an error or its return type is not a node set.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.Select(System.Xml.XPath.XPathExpression)">
+ <summary>Selects a node set using the specified <see cref="T:System.Xml.XPath.XPathExpression" />.</summary>
+ <param name="expr">An <see cref="T:System.Xml.XPath.XPathExpression" /> object containing the compiled XPath query.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that points to the selected node set.</returns>
+ <exception cref="T:System.ArgumentException">The XPath expression contains an error or its return type is not a node set.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath expression is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectAncestors(System.String,System.String,System.Boolean)">
+ <summary>Selects all the ancestor nodes of the current node that have the specified local name and namespace URI.</summary>
+ <param name="name">The local name of the ancestor nodes.</param>
+ <param name="namespaceURI">The namespace URI of the ancestor nodes.</param>
+ <param name="matchSelf">To include the context node in the selection, <see langword="true" />; otherwise, <see langword="false" />.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that contains the selected nodes. The returned nodes are in reverse document order.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <see langword="null" /> cannot be passed as a parameter.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectAncestors(System.Xml.XPath.XPathNodeType,System.Boolean)">
+ <summary>Selects all the ancestor nodes of the current node that have a matching <see cref="T:System.Xml.XPath.XPathNodeType" />.</summary>
+ <param name="type">The <see cref="T:System.Xml.XPath.XPathNodeType" /> of the ancestor nodes.</param>
+ <param name="matchSelf">To include the context node in the selection, <see langword="true" />; otherwise, <see langword="false" />.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that contains the selected nodes. The returned nodes are in reverse document order.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectChildren(System.String,System.String)">
+ <summary>Selects all the child nodes of the current node that have the local name and namespace URI specified.</summary>
+ <param name="name">The local name of the child nodes.</param>
+ <param name="namespaceURI">The namespace URI of the child nodes.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that contains the selected nodes.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <see langword="null" /> cannot be passed as a parameter.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectChildren(System.Xml.XPath.XPathNodeType)">
+ <summary>Selects all the child nodes of the current node that have the matching <see cref="T:System.Xml.XPath.XPathNodeType" />.</summary>
+ <param name="type">The <see cref="T:System.Xml.XPath.XPathNodeType" /> of the child nodes.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that contains the selected nodes.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectDescendants(System.String,System.String,System.Boolean)">
+ <summary>Selects all the descendant nodes of the current node with the local name and namespace URI specified.</summary>
+ <param name="name">The local name of the descendant nodes.</param>
+ <param name="namespaceURI">The namespace URI of the descendant nodes.</param>
+ <param name="matchSelf">
+ <see langword="true" /> to include the context node in the selection; otherwise, <see langword="false" />.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that contains the selected nodes.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <see langword="null" /> cannot be passed as a parameter.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectDescendants(System.Xml.XPath.XPathNodeType,System.Boolean)">
+ <summary>Selects all the descendant nodes of the current node that have a matching <see cref="T:System.Xml.XPath.XPathNodeType" />.</summary>
+ <param name="type">The <see cref="T:System.Xml.XPath.XPathNodeType" /> of the descendant nodes.</param>
+ <param name="matchSelf">
+ <see langword="true" /> to include the context node in the selection; otherwise, <see langword="false" />.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNodeIterator" /> that contains the selected nodes.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectSingleNode(System.String)">
+ <summary>Selects a single node in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified XPath query.</summary>
+ <param name="xpath">A <see cref="T:System.String" /> representing an XPath expression.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNavigator" /> object that contains the first matching node for the XPath query specified; otherwise, <see langword="null" /> if there are no query results.</returns>
+ <exception cref="T:System.ArgumentException">An error was encountered in the XPath query or the return type of the XPath expression is not a node.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath query is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectSingleNode(System.String,System.Xml.IXmlNamespaceResolver)">
+ <summary>Selects a single node in the <see cref="T:System.Xml.XPath.XPathNavigator" /> object using the specified XPath query with the <see cref="T:System.Xml.IXmlNamespaceResolver" /> object specified to resolve namespace prefixes.</summary>
+ <param name="xpath">A <see cref="T:System.String" /> representing an XPath expression.</param>
+ <param name="resolver">The <see cref="T:System.Xml.IXmlNamespaceResolver" /> object used to resolve namespace prefixes in the XPath query.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNavigator" /> object that contains the first matching node for the XPath query specified; otherwise <see langword="null" /> if there are no query results.</returns>
+ <exception cref="T:System.ArgumentException">An error was encountered in the XPath query or the return type of the XPath expression is not a node.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath query is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SelectSingleNode(System.Xml.XPath.XPathExpression)">
+ <summary>Selects a single node in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <see cref="T:System.Xml.XPath.XPathExpression" /> object.</summary>
+ <param name="expression">An <see cref="T:System.Xml.XPath.XPathExpression" /> object containing the compiled XPath query.</param>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNavigator" /> object that contains the first matching node for the XPath query specified; otherwise <see langword="null" /> if there are no query results.</returns>
+ <exception cref="T:System.ArgumentException">An error was encountered in the XPath query or the return type of the XPath expression is not a node.</exception>
+ <exception cref="T:System.Xml.XPath.XPathException">The XPath query is not valid.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SetTypedValue(System.Object)">
+ <summary>Sets the typed value of the current node.</summary>
+ <param name="typedValue">The new typed value of the node.</param>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support the type of the object specified.</exception>
+ <exception cref="T:System.ArgumentNullException">The value specified cannot be <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is not positioned on an element or attribute node.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.SetValue(System.String)">
+ <summary>Sets the value of the current node.</summary>
+ <param name="value">The new value of the node.</param>
+ <exception cref="T:System.ArgumentNullException">The value parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> is positioned on the root node, a namespace node, or the specified value is invalid.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Xml.XPath.XPathNavigator" /> does not support editing.</exception>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.System#ICloneable#Clone">
+ <summary>Creates a new copy of the <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</summary>
+ <returns>A new copy of the <see cref="T:System.Xml.XPath.XPathNavigator" /> object.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.ToString">
+ <summary>Gets the text value of the current node.</summary>
+ <returns>A <see langword="string" /> that contains the text value of the current node.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.TypedValue">
+ <summary>Gets the current node as a boxed object of the most appropriate .NET Framework type.</summary>
+ <returns>The current node as a boxed object of the most appropriate .NET Framework type.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.UnderlyingObject">
+ <summary>Used by <see cref="T:System.Xml.XPath.XPathNavigator" /> implementations which provide a "virtualized" XML view over a store, to provide access to underlying objects.</summary>
+ <returns>The default is <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.ValueAs(System.Type,System.Xml.IXmlNamespaceResolver)">
+ <summary>Gets the current node's value as the <see cref="T:System.Type" /> specified, using the <see cref="T:System.Xml.IXmlNamespaceResolver" /> object specified to resolve namespace prefixes.</summary>
+ <param name="returnType">The <see cref="T:System.Type" /> to return the current node's value as.</param>
+ <param name="nsResolver">The <see cref="T:System.Xml.IXmlNamespaceResolver" /> object used to resolve namespace prefixes.</param>
+ <returns>The value of the current node as the <see cref="T:System.Type" /> requested.</returns>
+ <exception cref="T:System.FormatException">The current node's value is not in the correct format for the target type.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.ValueAsBoolean">
+ <summary>Gets the current node's value as a <see cref="T:System.Boolean" />.</summary>
+ <returns>The current node's value as a <see cref="T:System.Boolean" />.</returns>
+ <exception cref="T:System.FormatException">The current node's string value cannot be converted to a <see cref="T:System.Boolean" />.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Boolean" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.ValueAsDateTime">
+ <summary>Gets the current node's value as a <see cref="T:System.DateTime" />.</summary>
+ <returns>The current node's value as a <see cref="T:System.DateTime" />.</returns>
+ <exception cref="T:System.FormatException">The current node's string value cannot be converted to a <see cref="T:System.DateTime" />.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.DateTime" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.ValueAsDouble">
+ <summary>Gets the current node's value as a <see cref="T:System.Double" />.</summary>
+ <returns>The current node's value as a <see cref="T:System.Double" />.</returns>
+ <exception cref="T:System.FormatException">The current node's string value cannot be converted to a <see cref="T:System.Double" />.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Double" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.ValueAsInt">
+ <summary>Gets the current node's value as an <see cref="T:System.Int32" />.</summary>
+ <returns>The current node's value as an <see cref="T:System.Int32" />.</returns>
+ <exception cref="T:System.FormatException">The current node's string value cannot be converted to a <see cref="T:System.Int32" />.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Int32" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.ValueAsLong">
+ <summary>Gets the current node's value as an <see cref="T:System.Int64" />.</summary>
+ <returns>The current node's value as an <see cref="T:System.Int64" />.</returns>
+ <exception cref="T:System.FormatException">The current node's string value cannot be converted to a <see cref="T:System.Int64" />.</exception>
+ <exception cref="T:System.InvalidCastException">The attempted cast to <see cref="T:System.Int64" /> is not valid.</exception>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.ValueType">
+ <summary>Gets the .NET Framework <see cref="T:System.Type" /> of the current node.</summary>
+ <returns>The .NET Framework <see cref="T:System.Type" /> of the current node. The default value is <see cref="T:System.String" />.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNavigator.WriteSubtree(System.Xml.XmlWriter)">
+ <summary>Streams the current node and its child nodes to the <see cref="T:System.Xml.XmlWriter" /> object specified.</summary>
+ <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> object to stream to.</param>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.XmlLang">
+ <summary>Gets the <c>xml:lang</c> scope for the current node.</summary>
+ <returns>A <see cref="T:System.String" /> that contains the value of the <c>xml:lang</c> scope, or <see cref="F:System.String.Empty" /> if the current node has no <c>xml:lang</c> scope value to return.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNavigator.XmlType">
+ <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaType" /> information for the current node.</summary>
+ <returns>An <see cref="T:System.Xml.Schema.XmlSchemaType" /> object; default is <see langword="null" />.</returns>
+ </member>
+ <member name="T:System.Xml.XPath.XPathNodeIterator">
+ <summary>Provides an iterator over a selected set of nodes.</summary>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNodeIterator.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.XPath.XPathNodeIterator" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNodeIterator.Clone">
+ <summary>When overridden in a derived class, returns a clone of this <see cref="T:System.Xml.XPath.XPathNodeIterator" /> object.</summary>
+ <returns>A new <see cref="T:System.Xml.XPath.XPathNodeIterator" /> object clone of this <see cref="T:System.Xml.XPath.XPathNodeIterator" /> object.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNodeIterator.Count">
+ <summary>Gets the index of the last node in the selected set of nodes.</summary>
+ <returns>The index of the last node in the selected set of nodes, or 0 if there are no selected nodes.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNodeIterator.Current">
+ <summary>When overridden in a derived class, gets the <see cref="T:System.Xml.XPath.XPathNavigator" /> object for this <see cref="T:System.Xml.XPath.XPathNodeIterator" />, positioned on the current context node.</summary>
+ <returns>An <see cref="T:System.Xml.XPath.XPathNavigator" /> object positioned on the context node from which the node set was selected. The <see cref="M:System.Xml.XPath.XPathNodeIterator.MoveNext" /> method must be called to move the <see cref="T:System.Xml.XPath.XPathNodeIterator" /> to the first node in the selected set.</returns>
+ </member>
+ <member name="P:System.Xml.XPath.XPathNodeIterator.CurrentPosition">
+ <summary>When overridden in a derived class, gets the index of the current position in the selected set of nodes.</summary>
+ <returns>The index of the current position.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNodeIterator.GetEnumerator">
+ <summary>Returns an <see cref="T:System.Collections.IEnumerator" /> object to iterate through the selected node set.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator" /> object to iterate through the selected node set.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNodeIterator.MoveNext">
+ <summary>When overridden in a derived class, moves the <see cref="T:System.Xml.XPath.XPathNavigator" /> object returned by the <see cref="P:System.Xml.XPath.XPathNodeIterator.Current" /> property to the next node in the selected node set.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Xml.XPath.XPathNavigator" /> object moved to the next node; <see langword="false" /> if there are no more selected nodes.</returns>
+ </member>
+ <member name="M:System.Xml.XPath.XPathNodeIterator.System#ICloneable#Clone">
+ <summary>Creates a new object that is a copy of the current instance.</summary>
+ <returns>A new object that is a copy of this instance.</returns>
+ </member>
+ <member name="T:System.Xml.XPath.XPathNodeType">
+ <summary>Defines the XPath node types that can be returned from the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.All">
+ <summary>Any of the <see cref="T:System.Xml.XPath.XPathNodeType" /> node types.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.Attribute">
+ <summary>An attribute, such as <c>id='123'</c>.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.Comment">
+ <summary>A comment, such as <c>&lt;!-- my comment --&gt;</c></summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.Element">
+ <summary>An element, such as <c>&lt;element&gt;</c>.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.Namespace">
+ <summary>A namespace, such as <c>xmlns="namespace"</c>.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.ProcessingInstruction">
+ <summary>A processing instruction, such as <c>&lt;?pi test?&gt;</c>. This does not include XML declarations, which are not visible to the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.Root">
+ <summary>The root node of the XML document or node tree.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.SignificantWhitespace">
+ <summary>A node with white space characters and <c>xml:space</c> set to <c>preserve</c>.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.Text">
+ <summary>The text content of a node. Equivalent to the Document Object Model (DOM) Text and CDATA node types. Contains at least one character.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathNodeType.Whitespace">
+ <summary>A node with only white space characters and no significant white space. White space characters are <c>#x20</c>, <c>#x9</c>, <c>#xD</c>, or <c>#xA</c>.</summary>
+ </member>
+ <member name="T:System.Xml.XPath.XPathResultType">
+ <summary>Specifies the return type of the XPath expression.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathResultType.Any">
+ <summary>Any of the XPath node types.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathResultType.Boolean">
+ <summary>A <see cref="T:System.Boolean" /><see langword="true" /> or <see langword="false" /> value.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathResultType.Error">
+ <summary>The expression does not evaluate to the correct XPath type.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathResultType.Navigator">
+ <summary>A tree fragment.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathResultType.NodeSet">
+ <summary>A node collection.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathResultType.Number">
+ <summary>A numeric value.</summary>
+ </member>
+ <member name="F:System.Xml.XPath.XPathResultType.String">
+ <summary>A <see cref="T:System.String" /> value.</summary>
+ </member>
+ <member name="T:System.Xml.Xsl.IXsltContextFunction">
+ <summary>Provides an interface to a given function defined in the Extensible Stylesheet Language for Transformations (XSLT) style sheet during runtime execution.</summary>
+ </member>
+ <member name="P:System.Xml.Xsl.IXsltContextFunction.ArgTypes">
+ <summary>Gets the supplied XML Path Language (XPath) types for the function's argument list. This information can be used to discover the signature of the function which allows you to differentiate between overloaded functions.</summary>
+ <returns>An array of <see cref="T:System.Xml.XPath.XPathResultType" /> representing the types for the function's argument list.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.IXsltContextFunction.Invoke(System.Xml.Xsl.XsltContext,System.Object[],System.Xml.XPath.XPathNavigator)">
+ <summary>Provides the method to invoke the function with the given arguments in the given context.</summary>
+ <param name="xsltContext">The XSLT context for the function call.</param>
+ <param name="args">The arguments of the function call. Each argument is an element in the array.</param>
+ <param name="docContext">The context node for the function call.</param>
+ <returns>An <see cref="T:System.Object" /> representing the return value of the function.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.IXsltContextFunction.Maxargs">
+ <summary>Gets the maximum number of arguments for the function. This enables the user to differentiate between overloaded functions.</summary>
+ <returns>The maximum number of arguments for the function.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.IXsltContextFunction.Minargs">
+ <summary>Gets the minimum number of arguments for the function. This enables the user to differentiate between overloaded functions.</summary>
+ <returns>The minimum number of arguments for the function.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.IXsltContextFunction.ReturnType">
+ <summary>Gets the <see cref="T:System.Xml.XPath.XPathResultType" /> representing the XPath type returned by the function.</summary>
+ <returns>An <see cref="T:System.Xml.XPath.XPathResultType" /> representing the XPath type returned by the function</returns>
+ </member>
+ <member name="T:System.Xml.Xsl.IXsltContextVariable">
+ <summary>Provides an interface to a given variable that is defined in the style sheet during runtime execution.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.IXsltContextVariable.Evaluate(System.Xml.Xsl.XsltContext)">
+ <summary>Evaluates the variable at runtime and returns an object that represents the value of the variable.</summary>
+ <param name="xsltContext">An <see cref="T:System.Xml.Xsl.XsltContext" /> representing the execution context of the variable.</param>
+ <returns>An <see cref="T:System.Object" /> representing the value of the variable. Possible return types include number, string, Boolean, document fragment, or node set.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.IXsltContextVariable.IsLocal">
+ <summary>Gets a value indicating whether the variable is local.</summary>
+ <returns>
+ <see langword="true" /> if the variable is a local variable in the current context; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.IXsltContextVariable.IsParam">
+ <summary>Gets a value indicating whether the variable is an Extensible Stylesheet Language Transformations (XSLT) parameter. This can be a parameter to a style sheet or a template.</summary>
+ <returns>
+ <see langword="true" /> if the variable is an XSLT parameter; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.IXsltContextVariable.VariableType">
+ <summary>Gets the <see cref="T:System.Xml.XPath.XPathResultType" /> representing the XML Path Language (XPath) type of the variable.</summary>
+ <returns>The <see cref="T:System.Xml.XPath.XPathResultType" /> representing the XPath type of the variable.</returns>
+ </member>
+ <member name="T:System.Xml.Xsl.XslCompiledTransform">
+ <summary>Transforms XML data using an XSLT style sheet.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XslCompiledTransform" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.#ctor(System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XslCompiledTransform" /> class with the specified debug setting.</summary>
+ <param name="enableDebug">
+ <see langword="true" /> to generate debug information; otherwise <see langword="false" />. Setting this to <see langword="true" /> enables you to debug the style sheet with the Microsoft Visual Studio Debugger.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Load(System.Reflection.MethodInfo,System.Byte[],System.Type[])">
+ <summary>Loads a method from a style sheet compiled using the <see langword="XSLTC.exe" /> utility.</summary>
+ <param name="executeMethod">A <see cref="T:System.Reflection.MethodInfo" /> object representing the compiler-generated <c>execute</c> method of the compiled style sheet.</param>
+ <param name="queryData">A byte array of serialized data structures in the <c>staticData</c> field of the compiled style sheet as generated by the <see cref="M:System.Xml.Xsl.XslCompiledTransform.CompileToType(System.Xml.XmlReader,System.Xml.Xsl.XsltSettings,System.Xml.XmlResolver,System.Boolean,System.Reflection.Emit.TypeBuilder,System.String)" /> method.</param>
+ <param name="earlyBoundTypes">An array of types stored in the compiler-generated <c>ebTypes</c> field of the compiled style sheet.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Load(System.String)">
+ <summary>Loads and compiles the style sheet located at the specified URI.</summary>
+ <param name="stylesheetUri">The URI of the style sheet.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="stylesheetUri" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">The style sheet contains an error.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The style sheet cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The <paramref name="stylesheetUri" /> value includes a filename or directory that cannot be found.</exception>
+ <exception cref="T:System.Net.WebException">The <paramref name="stylesheetUri" /> value cannot be resolved.
+ -or-
+ An error occurred while processing the request.</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="stylesheetUri" /> is not a valid URI.</exception>
+ <exception cref="T:System.Xml.XmlException">There was a parsing error loading the style sheet.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Load(System.String,System.Xml.Xsl.XsltSettings,System.Xml.XmlResolver)">
+ <summary>Loads and compiles the XSLT style sheet specified by the URI. The <see cref="T:System.Xml.XmlResolver" /> resolves any XSLT <c>import</c> or <c>include</c> elements and the XSLT settings determine the permissions for the style sheet.</summary>
+ <param name="stylesheetUri">The URI of the style sheet.</param>
+ <param name="settings">The <see cref="T:System.Xml.Xsl.XsltSettings" /> to apply to the style sheet. If this is <see langword="null" />, the <see cref="P:System.Xml.Xsl.XsltSettings.Default" /> setting is applied.</param>
+ <param name="stylesheetResolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the style sheet URI and any style sheets referenced in XSLT <c>import</c> and <c>include</c> elements.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="stylesheetUri" /> or <paramref name="stylesheetResolver" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">The style sheet contains an error.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The style sheet cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The <paramref name="stylesheetUri" /> value includes a filename or directory that cannot be found.</exception>
+ <exception cref="T:System.Net.WebException">The <paramref name="stylesheetUri" /> value cannot be resolved.
+ -or-
+ An error occurred while processing the request.</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="stylesheetUri" /> is not a valid URI.</exception>
+ <exception cref="T:System.Xml.XmlException">There was a parsing error loading the style sheet.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Load(System.Type)">
+ <summary>Loads the compiled style sheet that was created using the XSLT Compiler (xsltc.exe).</summary>
+ <param name="compiledStylesheet">The name of the class that contains the compiled style sheet.
+ This is usually the name of the style sheet. Unless otherwise specified, the xsltc.exe tool uses the name of the style sheet for the class and assembly names.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Load(System.Xml.XmlReader)">
+ <summary>Compiles the style sheet contained in the <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="stylesheet">An <see cref="T:System.Xml.XmlReader" /> containing the style sheet.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="stylesheet" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">The style sheet contains an error.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Load(System.Xml.XmlReader,System.Xml.Xsl.XsltSettings,System.Xml.XmlResolver)">
+ <summary>Compiles the XSLT style sheet contained in the <see cref="T:System.Xml.XmlReader" />. The <see cref="T:System.Xml.XmlResolver" /> resolves any XSLT <c>import</c> or <c>include</c> elements and the XSLT settings determine the permissions for the style sheet.</summary>
+ <param name="stylesheet">The <see cref="T:System.Xml.XmlReader" /> containing the style sheet.</param>
+ <param name="settings">The <see cref="T:System.Xml.Xsl.XsltSettings" /> to apply to the style sheet. If this is <see langword="null" />, the <see cref="P:System.Xml.Xsl.XsltSettings.Default" /> setting is applied.</param>
+ <param name="stylesheetResolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve any style sheets referenced in XSLT <c>import</c> and <c>include</c> elements. If this is <see langword="null" />, external resources are not resolved.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="stylesheet" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">The style sheet contains an error.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Load(System.Xml.XPath.IXPathNavigable)">
+ <summary>Compiles the style sheet contained in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object.</summary>
+ <param name="stylesheet">An object implementing the <see cref="T:System.Xml.XPath.IXPathNavigable" /> interface. In the Microsoft .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 style sheet.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="stylesheet" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">The style sheet contains an error.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Load(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltSettings,System.Xml.XmlResolver)">
+ <summary>Compiles the XSLT style sheet contained in the <see cref="T:System.Xml.XPath.IXPathNavigable" />. The <see cref="T:System.Xml.XmlResolver" /> resolves any XSLT <c>import</c> or <c>include</c> elements and the XSLT settings determine the permissions for the style sheet.</summary>
+ <param name="stylesheet">An object implementing the <see cref="T:System.Xml.XPath.IXPathNavigable" /> interface. In the Microsoft .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 style sheet.</param>
+ <param name="settings">The <see cref="T:System.Xml.Xsl.XsltSettings" /> to apply to the style sheet. If this is <see langword="null" />, the <see cref="P:System.Xml.Xsl.XsltSettings.Default" /> setting is applied.</param>
+ <param name="stylesheetResolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve any style sheets referenced in XSLT <c>import</c> and <c>include</c> elements. If this is <see langword="null" />, external resources are not resolved.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="stylesheet" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">The style sheet contains an error.</exception>
+ </member>
+ <member name="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings">
+ <summary>Gets an <see cref="T:System.Xml.XmlWriterSettings" /> object that contains the output information derived from the <c>xsl:output</c> element of the style sheet.</summary>
+ <returns>A read-only <see cref="T:System.Xml.XmlWriterSettings" /> object that contains the output information derived from the <c>xsl:output</c> element of the style sheet. This value can be <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.String)">
+ <summary>Executes the transform using the input document specified by the URI and outputs the results to a file.</summary>
+ <param name="inputUri">The URI of the input document.</param>
+ <param name="resultsFile">The URI of the output file.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="inputUri" /> or <paramref name="resultsFile" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The input document cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The <paramref name="inputUri" /> or <paramref name="resultsFile" /> value includes a filename or directory cannot be found.</exception>
+ <exception cref="T:System.Net.WebException">The <paramref name="inputUri" /> or <paramref name="resultsFile" /> value cannot be resolved.
+ -or-
+ An error occurred while processing the request</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="inputUri" /> or <paramref name="resultsFile" /> is not a valid URI.</exception>
+ <exception cref="T:System.Xml.XmlException">There was a parsing error loading the input document.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.XmlWriter)">
+ <summary>Executes the transform using the input document specified by the URI and outputs the results to an <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="inputUri">The URI of the input document.</param>
+ <param name="results">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.
+ If the style sheet contains an <c>xsl:output</c> element, you should create the <see cref="T:System.Xml.XmlWriter" /> using the <see cref="T:System.Xml.XmlWriterSettings" /> object returned from the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property. This ensures that the <see cref="T:System.Xml.XmlWriter" /> has the correct output settings.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="inputUri" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The <paramref name="inputUri" /> value includes a filename or directory cannot be found.</exception>
+ <exception cref="T:System.Net.WebException">The <paramref name="inputUri" /> value cannot be resolved.
+ -or-
+ An error occurred while processing the request.</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="inputUri" /> is not a valid URI.</exception>
+ <exception cref="T:System.Xml.XmlException">There was a parsing error loading the input document.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.Xsl.XsltArgumentList,System.IO.Stream)">
+ <summary>Executes the transform using the input document specified by the URI and outputs the results to stream. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments.</summary>
+ <param name="inputUri">The URI of the input document.</param>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The stream to which you want to output.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="inputUri" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The <paramref name="inputUri" /> value includes a filename or directory cannot be found.</exception>
+ <exception cref="T:System.Net.WebException">The <paramref name="inputUri" /> value cannot be resolved.
+ -or-
+ An error occurred while processing the request</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="inputUri" /> is not a valid URI.</exception>
+ <exception cref="T:System.Xml.XmlException">There was a parsing error loading the input document.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter)">
+ <summary>Executes the transform using the input document specified by the URI and outputs the results to a <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="inputUri">The URI of the input document.</param>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The <see cref="T:System.IO.TextWriter" /> to which you want to output.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="inputUri" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The <paramref name="inputUri" /> value includes a filename or directory cannot be found.</exception>
+ <exception cref="T:System.Net.WebException">The <paramref name="inputUri" /> value cannot be resolved.
+ -or-
+ An error occurred while processing the request</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="inputUri" /> is not a valid URI.</exception>
+ <exception cref="T:System.Xml.XmlException">There was a parsing error loading the input document.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.String,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter)">
+ <summary>Executes the transform using the input document specified by the URI and outputs the results to an <see cref="T:System.Xml.XmlWriter" />. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments.</summary>
+ <param name="inputUri">The URI of the input document.</param>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.
+ If the style sheet contains an <c>xsl:output</c> element, you should create the <see cref="T:System.Xml.XmlWriter" /> using the <see cref="T:System.Xml.XmlWriterSettings" /> object returned from the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property. This ensures that the <see cref="T:System.Xml.XmlWriter" /> has the correct output settings.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="inputUri" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The <paramref name="inputtUri" /> value includes a filename or directory cannot be found.</exception>
+ <exception cref="T:System.Net.WebException">The <paramref name="inputUri" /> value cannot be resolved.
+ -or-
+ An error occurred while processing the request.</exception>
+ <exception cref="T:System.UriFormatException">
+ <paramref name="inputUri" /> is not a valid URI.</exception>
+ <exception cref="T:System.Xml.XmlException">There was a parsing error loading the input document.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XmlReader,System.Xml.XmlWriter)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XmlReader" /> object and outputs the results to an <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="input">The <see cref="T:System.Xml.XmlReader" /> containing the input document.</param>
+ <param name="results">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.
+ If the style sheet contains an <c>xsl:output</c> element, you should create the <see cref="T:System.Xml.XmlWriter" /> using the <see cref="T:System.Xml.XmlWriterSettings" /> object returned from the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property. This ensures that the <see cref="T:System.Xml.XmlWriter" /> has the correct output settings.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XmlReader,System.Xml.Xsl.XsltArgumentList,System.IO.Stream)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XmlReader" /> object and outputs the results to a stream. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments.</summary>
+ <param name="input">An <see cref="T:System.Xml.XmlReader" /> containing the input document.</param>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The stream to which you want to output.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XmlReader,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XmlReader" /> object and outputs the results to a <see cref="T:System.IO.TextWriter" />. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments.</summary>
+ <param name="input">An <see cref="T:System.Xml.XmlReader" /> containing the input document.</param>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The <see cref="T:System.IO.TextWriter" /> to which you want to output.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XmlReader,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XmlReader" /> object and outputs the results to an <see cref="T:System.Xml.XmlWriter" />. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments.</summary>
+ <param name="input">An <see cref="T:System.Xml.XmlReader" /> containing the input document.</param>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.
+ If the style sheet contains an <c>xsl:output</c> element, you should create the <see cref="T:System.Xml.XmlWriter" /> using the <see cref="T:System.Xml.XmlWriterSettings" /> object returned from the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property. This ensures that the <see cref="T:System.Xml.XmlWriter" /> has the correct output settings.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XmlReader,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XmlReader" /> object and outputs the results to an <see cref="T:System.Xml.XmlWriter" />. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments and the XmlResolver resolves the XSLT <c>document()</c> function.</summary>
+ <param name="input">An <see cref="T:System.Xml.XmlReader" /> containing the input document.</param>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.
+ If the style sheet contains an <c>xsl:output</c> element, you should create the <see cref="T:System.Xml.XmlWriter" /> using the <see cref="T:System.Xml.XmlWriterSettings" /> object returned from the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property. This ensures that the <see cref="T:System.Xml.XmlWriter" /> has the correct output settings.</param>
+ <param name="documentResolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.XmlWriter)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object and outputs the results to an <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.IXPathNavigable" /> interface. In the Microsoft .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>
+ <param name="results">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.
+ If the style sheet contains an <c>xsl:output</c> element, you should create the <see cref="T:System.Xml.XmlWriter" /> using the <see cref="T:System.Xml.XmlWriterSettings" /> object returned from the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property. This ensures that the <see cref="T:System.Xml.XmlWriter" /> has the correct output settings.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.Stream)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object and outputs the results to a stream. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional runtime arguments.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.IXPathNavigable" /> interface. In the Microsoft .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>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The stream to which you want to output.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object and outputs the results to an <see cref="T:System.IO.TextWriter" />. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.IXPathNavigable" /> interface. In the Microsoft .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>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The <see cref="T:System.IO.TextWriter" /> to which you want to output.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter)">
+ <summary>Executes the transform using the input document specified by the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object and outputs the results to an <see cref="T:System.Xml.XmlWriter" />. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.IXPathNavigable" /> interface. In the Microsoft .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>
+ <param name="arguments">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transform. This value can be <see langword="null" />.</param>
+ <param name="results">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.
+ If the style sheet contains an <c>xsl:output</c> element, you should create the <see cref="T:System.Xml.XmlWriter" /> using the <see cref="T:System.Xml.XmlWriterSettings" /> object returned from the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property. This ensures that the <see cref="T:System.Xml.XmlWriter" /> has the correct output settings.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="input" /> or <paramref name="results" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.Xml.Xsl.XsltException">There was an error executing the XSLT transform.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslCompiledTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver)">
+ <summary>Executes the transform by using the input document that is specified by the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object and outputs the results to an <see cref="T:System.Xml.XmlWriter" />. The <see cref="T:System.Xml.Xsl.XsltArgumentList" /> provides additional run-time arguments and the <see cref="T:System.Xml.XmlResolver" /> resolves the XSLT <see langword="document()" /> function.</summary>
+ <param name="input">The document to transform that is specified by the <see cref="T:System.Xml.XPath.IXPathNavigable" /> object.</param>
+ <param name="arguments">Argument list as <see cref="T:System.Xml.Xsl.XsltArgumentList" />.</param>
+ <param name="results">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.
+ If the style sheet contains an <see langword="xsl:output" /> element, you should create the <see cref="T:System.Xml.XmlWriter" /> by using the <see cref="T:System.Xml.XmlWriterSettings" /> object that is returned from the <see cref="P:System.Xml.Xsl.XslCompiledTransform.OutputSettings" /> property. This ensures that the <see cref="T:System.Xml.XmlWriter" /> has the correct output settings.</param>
+ <param name="documentResolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <see langword="document()" /> function. If this is <see langword="null" />, the <see langword="document()" /> function is not resolved.</param>
+ </member>
+ <member name="T:System.Xml.Xsl.XsltArgumentList">
+ <summary>Contains a variable number of arguments which are either XSLT parameters or extension objects.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltArgumentList.#ctor">
+ <summary>Implements a new instance of the <see cref="T:System.Xml.Xsl.XsltArgumentList" />.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltArgumentList.AddExtensionObject(System.String,System.Object)">
+ <summary>Adds a new object to the <see cref="T:System.Xml.Xsl.XsltArgumentList" /> and associates it with the namespace URI.</summary>
+ <param name="namespaceUri">The namespace URI to associate with the object. To use the default namespace, specify an empty string.</param>
+ <param name="extension">The object to add to the list.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="namespaceUri" /> is either <see langword="null" /> or http://www.w3.org/1999/XSL/Transform
+ The <paramref name="namespaceUri" /> already has an extension object associated with it.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have sufficient permissions to call this method.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltArgumentList.AddParam(System.String,System.String,System.Object)">
+ <summary>Adds a parameter to the <see cref="T:System.Xml.Xsl.XsltArgumentList" /> and associates it with the namespace qualified name.</summary>
+ <param name="name">The name to associate with the parameter.</param>
+ <param name="namespaceUri">The namespace URI to associate with the parameter. To use the default namespace, specify an empty string.</param>
+ <param name="parameter">The parameter value or object to add to the list.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="namespaceUri" /> is either <see langword="null" /> or http://www.w3.org/1999/XSL/Transform.
+ The <paramref name="name" /> is not a valid name according to the W3C XML specification.
+ The <paramref name="namespaceUri" /> already has a parameter associated with it.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltArgumentList.Clear">
+ <summary>Removes all parameters and extension objects from the <see cref="T:System.Xml.Xsl.XsltArgumentList" />.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltArgumentList.GetExtensionObject(System.String)">
+ <summary>Gets the object associated with the given namespace.</summary>
+ <param name="namespaceUri">The namespace URI of the object.</param>
+ <returns>The namespace URI object or <see langword="null" /> if one was not found.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltArgumentList.GetParam(System.String,System.String)">
+ <summary>Gets the parameter associated with the namespace qualified name.</summary>
+ <param name="name">The name of the parameter. <see cref="T:System.Xml.Xsl.XsltArgumentList" /> does not check to ensure the name passed is a valid local name; however, the name cannot be <see langword="null" />.</param>
+ <param name="namespaceUri">The namespace URI associated with the parameter.</param>
+ <returns>The parameter object or <see langword="null" /> if one was not found.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltArgumentList.RemoveExtensionObject(System.String)">
+ <summary>Removes the object with the namespace URI from the <see cref="T:System.Xml.Xsl.XsltArgumentList" />.</summary>
+ <param name="namespaceUri">The namespace URI associated with the object to remove.</param>
+ <returns>The object with the namespace URI or <see langword="null" /> if one was not found.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltArgumentList.RemoveParam(System.String,System.String)">
+ <summary>Removes the parameter from the <see cref="T:System.Xml.Xsl.XsltArgumentList" />.</summary>
+ <param name="name">The name of the parameter to remove. <see cref="T:System.Xml.Xsl.XsltArgumentList" /> does not check to ensure the name passed is a valid local name; however, the name cannot be <see langword="null" />.</param>
+ <param name="namespaceUri">The namespace URI of the parameter to remove.</param>
+ <returns>The parameter object or <see langword="null" /> if one was not found.</returns>
+ </member>
+ <member name="E:System.Xml.Xsl.XsltArgumentList.XsltMessageEncountered">
+ <summary>Occurs when a message is specified in the style sheet by the <c>xsl:message</c> element.</summary>
+ </member>
+ <member name="T:System.Xml.Xsl.XsltCompileException">
+ <summary>The exception that is thrown by the Load method when an error is found in the XSLT style sheet.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltCompileException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltCompileException" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltCompileException.#ctor(System.Exception,System.String,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see langword="XsltCompileException" /> class.</summary>
+ <param name="inner">The <see cref="T:System.Exception" /> that threw the <see langword="XsltCompileException" />.</param>
+ <param name="sourceUri">The location path of the style sheet.</param>
+ <param name="lineNumber">The line number indicating where the error occurred in the style sheet.</param>
+ <param name="linePosition">The line position indicating where the error occurred in the style sheet.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltCompileException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see langword="XsltCompileException" /> class using the information in the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects.</summary>
+ <param name="info">The <see langword="SerializationInfo" /> object containing all the properties of an <see langword="XsltCompileException" />.</param>
+ <param name="context">The <see langword="StreamingContext" /> object containing the context information.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltCompileException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltCompileException" /> class with a specified error message.</summary>
+ <param name="message">The message that describes the error.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltCompileException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltCompileException" /> class specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The message that describes the error.</param>
+ <param name="innerException">The exception that is the cause of the current exception, or <see langword="null" /> if no inner exception is specified.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltCompileException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Streams all the <see langword="XsltCompileException" /> properties into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class for the given <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
+ <param name="info">The <see langword="SerializationInfo" /> object.</param>
+ <param name="context">The <see langword="StreamingContext" /> object.</param>
+ </member>
+ <member name="T:System.Xml.Xsl.XsltContext">
+ <summary>Encapsulates the current execution context of the Extensible Stylesheet Language for Transformations (XSLT) processor allowing XML Path Language (XPath) to resolve functions, parameters, and namespaces within XPath expressions.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltContext.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltContext" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltContext.#ctor(System.Xml.NameTable)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltContext" /> class with the specified <see cref="T:System.Xml.NameTable" />.</summary>
+ <param name="table">The <see cref="T:System.Xml.NameTable" /> to use.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltContext.CompareDocument(System.String,System.String)">
+ <summary>When overridden in a derived class, compares the base Uniform Resource Identifiers (URIs) of two documents based upon the order the documents were loaded by the XSLT processor (that is, the <see cref="T:System.Xml.Xsl.XslTransform" /> class).</summary>
+ <param name="baseUri">The base URI of the first document to compare.</param>
+ <param name="nextbaseUri">The base URI of the second document to compare.</param>
+ <returns>An integer value describing the relative order of the two base URIs: -1 if <paramref name="baseUri" /> occurs before <paramref name="nextbaseUri" />; 0 if the two base URIs are identical; and 1 if <paramref name="baseUri" /> occurs after <paramref name="nextbaseUri" />.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltContext.PreserveWhitespace(System.Xml.XPath.XPathNavigator)">
+ <summary>When overridden in a derived class, evaluates whether to preserve white space nodes or strip them for the given context.</summary>
+ <param name="node">The white space node that is to be preserved or stripped in the current context.</param>
+ <returns>
+ <see langword="true" /> if the white space is to be preserved; <see langword="false" /> if the white space is to be stripped.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltContext.ResolveFunction(System.String,System.String,System.Xml.XPath.XPathResultType[])">
+ <summary>When overridden in a derived class, resolves a function reference and returns an <see cref="T:System.Xml.Xsl.IXsltContextFunction" /> representing the function. The <see cref="T:System.Xml.Xsl.IXsltContextFunction" /> is used at execution time to get the return value of the function.</summary>
+ <param name="prefix">The prefix of the function as it appears in the XPath expression.</param>
+ <param name="name">The name of the function.</param>
+ <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>
+ <returns>An <see cref="T:System.Xml.Xsl.IXsltContextFunction" /> representing the function.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltContext.ResolveVariable(System.String,System.String)">
+ <summary>When overridden in a derived class, resolves a variable reference and returns an <see cref="T:System.Xml.Xsl.IXsltContextVariable" /> representing the variable.</summary>
+ <param name="prefix">The prefix of the variable as it appears in the XPath expression.</param>
+ <param name="name">The name of the variable.</param>
+ <returns>An <see cref="T:System.Xml.Xsl.IXsltContextVariable" /> representing the variable at runtime.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltContext.Whitespace">
+ <summary>When overridden in a derived class, gets a value indicating whether to include white space nodes in the output.</summary>
+ <returns>
+ <see langword="true" /> to check white space nodes in the source document for inclusion in the output; <see langword="false" /> to not evaluate white space nodes. The default is <see langword="true" />.</returns>
+ </member>
+ <member name="T:System.Xml.Xsl.XsltException">
+ <summary>The exception that is thrown when an error occurs while processing an XSLT transformation.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltException" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <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.</summary>
+ <param name="info">The <see langword="SerializationInfo" /> object containing all the properties of an <see langword="XsltException" />.</param>
+ <param name="context">The <see langword="StreamingContext" /> object.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltException" /> class with a specified error message.</summary>
+ <param name="message">The message that describes the error.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see langword="XsltException" /> class.</summary>
+ <param name="message">The description of the error condition.</param>
+ <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>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Streams all the <see langword="XsltException" /> properties into the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class for the given <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
+ <param name="info">The <see langword="SerializationInfo" /> object.</param>
+ <param name="context">The <see langword="StreamingContext" /> object.</param>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltException.LineNumber">
+ <summary>Gets the line number indicating where the error occurred in the style sheet.</summary>
+ <returns>The line number indicating where the error occurred in the style sheet.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltException.LinePosition">
+ <summary>Gets the line position indicating where the error occurred in the style sheet.</summary>
+ <returns>The line position indicating where the error occurred in the style sheet.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltException.Message">
+ <summary>Gets the formatted error message describing the current exception.</summary>
+ <returns>The formatted error message describing the current exception.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltException.SourceUri">
+ <summary>Gets the location path of the style sheet.</summary>
+ <returns>The location path of the style sheet.</returns>
+ </member>
+ <member name="T:System.Xml.Xsl.XsltMessageEncounteredEventArgs">
+ <summary>Provides data for the <see cref="E:System.Xml.Xsl.XsltArgumentList.XsltMessageEncountered" /> event.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltMessageEncounteredEventArgs.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltMessageEncounteredEventArgs" /> class.</summary>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltMessageEncounteredEventArgs.Message">
+ <summary>Gets the contents of the <c>xsl:message</c> element.</summary>
+ <returns>The contents of the <c>xsl:message</c> element.</returns>
+ </member>
+ <member name="T:System.Xml.Xsl.XsltMessageEncounteredEventHandler">
+ <summary>Represents the method that will handle the <see cref="E:System.Xml.Xsl.XsltArgumentList.XsltMessageEncountered" /> event.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="e">The <see cref="T:System.Xml.Xsl.XsltMessageEncounteredEventArgs" /> containing the event data.</param>
+ </member>
+ <member name="T:System.Xml.Xsl.XslTransform">
+ <summary>Transforms XML data using an Extensible Stylesheet Language for Transformations (XSLT) style sheet.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XslTransform" /> class.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Load(System.String)">
+ <summary>Loads the XSLT style sheet specified by a URL.</summary>
+ <param name="url">The URL that specifies the XSLT style sheet to load.</param>
+ <exception cref="T:System.Xml.Xsl.XsltCompileException">The loaded resource is not a valid style sheet.</exception>
+ <exception cref="T:System.Security.SecurityException">The style sheet contains embedded script, and the caller does not have <see langword="UnmanagedCode" /> permission.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Load(System.String,System.Xml.XmlResolver)">
+ <summary>Loads the XSLT style sheet specified by a URL.</summary>
+ <param name="url">The URL that specifies the XSLT style sheet to load.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> to use to load the style sheet and any style sheet(s) referenced in <c>xsl:import</c> and <c>xsl:include</c> elements.
+ If this is <see langword="null" />, a default <see cref="T:System.Xml.XmlUrlResolver" /> with no user credentials is used to open the style sheet. The default <see cref="T:System.Xml.XmlUrlResolver" /> is not used to resolve any external resources in the style sheet, so <c>xsl:import</c> and <c>xsl:include</c> elements are not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Load(System.String,System.Xml.XmlResolver)" /> method completes.</param>
+ <exception cref="T:System.Xml.Xsl.XsltCompileException">The loaded resource is not a valid style sheet.</exception>
+ <exception cref="T:System.Security.SecurityException">The style sheet contains embedded script, and the caller does not have <see langword="UnmanagedCode" /> permission.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XmlReader)">
+ <summary>Loads the XSLT style sheet contained in the <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="stylesheet">An <see cref="T:System.Xml.XmlReader" /> object that contains the XSLT style sheet.</param>
+ <exception cref="T:System.Xml.Xsl.XsltCompileException">The current node does not conform to a valid style sheet.</exception>
+ <exception cref="T:System.Security.SecurityException">The style sheet contains embedded scripts, and the caller does not have <see langword="UnmanagedCode" /> permission.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XmlReader,System.Xml.XmlResolver)">
+ <summary>Loads the XSLT style sheet contained in the <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="stylesheet">An <see cref="T:System.Xml.XmlReader" /> object that contains the XSLT style sheet.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to load any style sheets referenced in <c>xsl:import</c> and <c>xsl:include</c> elements. If this is <see langword="null" />, external resources are not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XmlReader,System.Xml.XmlResolver)" /> method completes.</param>
+ <exception cref="T:System.Xml.Xsl.XsltCompileException">The current node does not conform to a valid style sheet.</exception>
+ <exception cref="T:System.Security.SecurityException">The style sheet contains embedded scripts, and the caller does not have <see langword="UnmanagedCode" /> permission.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.IXPathNavigable)">
+ <summary>Loads the XSLT style sheet contained in the <see cref="T:System.Xml.XPath.IXPathNavigable" />.</summary>
+ <param name="stylesheet">An object implementing the <see cref="T:System.Xml.XPath.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 style sheet.</param>
+ <exception cref="T:System.Xml.Xsl.XsltCompileException">The loaded resource is not a valid style sheet.</exception>
+ <exception cref="T:System.Security.SecurityException">The style sheet contains embedded scripts, and the caller does not have <see langword="UnmanagedCode" /> permission.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.IXPathNavigable,System.Xml.XmlResolver)">
+ <summary>Loads the XSLT style sheet contained in the <see cref="T:System.Xml.XPath.IXPathNavigable" />.</summary>
+ <param name="stylesheet">An object implementing the <see cref="T:System.Xml.XPath.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 style sheet.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to load any style sheets referenced in <c>xsl:import</c> and <c>xsl:include</c> elements. If this is <see langword="null" />, external resources are not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="Overload:System.Xml.Xsl.XslTransform.Load" /> method completes.</param>
+ <exception cref="T:System.Xml.Xsl.XsltCompileException">The loaded resource is not a valid style sheet.</exception>
+ <exception cref="T:System.Security.SecurityException">The style sheet contains embedded scripts, and the caller does not have <see langword="UnmanagedCode" /> permission.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.XPathNavigator)">
+ <summary>Loads the XSLT style sheet contained in the <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
+ <param name="stylesheet">An <see cref="T:System.Xml.XPath.XPathNavigator" /> object that contains the XSLT style sheet.</param>
+ <exception cref="T:System.Xml.Xsl.XsltCompileException">The current node does not conform to a valid style sheet.</exception>
+ <exception cref="T:System.Security.SecurityException">The style sheet contains embedded scripts, and the caller does not have <see langword="UnmanagedCode" /> permission.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlResolver)">
+ <summary>Loads the XSLT style sheet contained in the <see cref="T:System.Xml.XPath.XPathNavigator" />.</summary>
+ <param name="stylesheet">An <see cref="T:System.Xml.XPath.XPathNavigator" /> object that contains the XSLT style sheet.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to load any style sheets referenced in <c>xsl:import</c> and <c>xsl:include</c> elements. If this is <see langword="null" />, external resources are not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="Overload:System.Xml.Xsl.XslTransform.Load" /> method completes.</param>
+ <exception cref="T:System.Xml.Xsl.XsltCompileException">The current node does not conform to a valid style sheet.</exception>
+ <exception cref="T:System.Security.SecurityException">The style sheet contains embedded scripts, and the caller does not have <see langword="UnmanagedCode" /> permission.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.String,System.String)">
+ <summary>Transforms the XML data in the input file and outputs the result to an output file.</summary>
+ <param name="inputfile">The URL of the source document to be transformed.</param>
+ <param name="outputfile">The URL of the output file.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.String,System.String,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the input file and outputs the result to an output file.</summary>
+ <param name="inputfile">The URL of the source document to be transformed.</param>
+ <param name="outputfile">The URL of the output file.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="Overload:System.Xml.Xsl.XslTransform.Transform" /> method completes.</param>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" /> and outputs the result to an <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.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>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <returns>An <see cref="T:System.Xml.XmlReader" /> containing the results of the transformation.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.Stream)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" /> and outputs the result to a <see cref="T:System.IO.Stream" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.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>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The stream to which you want to output.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.Stream,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" /> and outputs the result to a <see cref="T:System.IO.Stream" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.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>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The stream to which you want to output.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="Overload:System.Xml.Xsl.XslTransform.Transform" /> method completes.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" /> and outputs the result to a <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.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>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The <see cref="T:System.IO.TextWriter" /> to which you want to output.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" /> and outputs the result to a <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.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>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The <see cref="T:System.IO.TextWriter" /> to which you want to output.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter,System.Xml.XmlResolver)" /> method completes.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" /> and outputs the result to an <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.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>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlResolver)" /> method completes.</param>
+ <returns>An <see cref="T:System.Xml.XmlReader" /> containing the results of the transformation.</returns>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" /> and outputs the result to an <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.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>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.IXPathNavigable" /> using the specified <paramref name="args" /> and outputs the result to an <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="input">An object implementing the <see cref="T:System.Xml.XPath.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>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver)" /> method completes.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <paramref name="args" /> and outputs the result to an <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="input">An <see cref="T:System.Xml.XPath.XPathNavigator" /> containing the data to be transformed.</param>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <returns>An <see cref="T:System.Xml.XmlReader" /> containing the results of the transformation.</returns>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.IO.Stream)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <paramref name="args" /> and outputs the result to a <see cref="T:System.IO.Stream" />.</summary>
+ <param name="input">An <see cref="T:System.Xml.XPath.XPathNavigator" /> containing the data to be transformed.</param>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The stream to which you want to output.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.IO.Stream,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <paramref name="args" /> and outputs the result to a <see cref="T:System.IO.Stream" />.</summary>
+ <param name="input">An <see cref="T:System.Xml.XPath.XPathNavigator" /> containing the data to be transformed.</param>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The stream to which you want to output.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.IO.Stream,System.Xml.XmlResolver)" /> method completes.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <paramref name="args" /> and outputs the result to a <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="input">An <see cref="T:System.Xml.XPath.XPathNavigator" /> containing the data to be transformed.</param>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The <see cref="T:System.IO.TextWriter" /> to which you want to output.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <paramref name="args" /> and outputs the result to a <see cref="T:System.IO.TextWriter" />.</summary>
+ <param name="input">An <see cref="T:System.Xml.XPath.XPathNavigator" /> containing the data to be transformed.</param>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The <see cref="T:System.IO.TextWriter" /> to which you want to output.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.IO.TextWriter,System.Xml.XmlResolver)" /> method completes.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified <paramref name="args" /> and outputs the result to an <see cref="T:System.Xml.XmlReader" />.</summary>
+ <param name="input">An <see cref="T:System.Xml.XPath.XPathNavigator" /> containing the data to be transformed.</param>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlResolver)" /> method completes.</param>
+ <returns>An <see cref="T:System.Xml.XmlReader" /> containing the results of the transformation.</returns>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified args and outputs the result to an <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="input">An <see cref="T:System.Xml.XPath.XPathNavigator" /> containing the data to be transformed.</param>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver)">
+ <summary>Transforms the XML data in the <see cref="T:System.Xml.XPath.XPathNavigator" /> using the specified args and outputs the result to an <see cref="T:System.Xml.XmlWriter" />.</summary>
+ <param name="input">An <see cref="T:System.Xml.XPath.XPathNavigator" /> containing the data to be transformed.</param>
+ <param name="args">An <see cref="T:System.Xml.Xsl.XsltArgumentList" /> containing the namespace-qualified arguments used as input to the transformation.</param>
+ <param name="output">The <see cref="T:System.Xml.XmlWriter" /> to which you want to output.</param>
+ <param name="resolver">The <see cref="T:System.Xml.XmlResolver" /> used to resolve the XSLT <c>document()</c> function. If this is <see langword="null" />, the <c>document()</c> function is not resolved.
+ The <see cref="T:System.Xml.XmlResolver" /> is not cached after the <see cref="M:System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver)" /> method completes.</param>
+ <exception cref="T:System.InvalidOperationException">There was an error processing the XSLT transformation.
+ Note: This is a change in behavior from earlier versions. An <see cref="T:System.Xml.Xsl.XsltException" /> is thrown if you are using Microsoft .NET Framework version 1.1 or earlier.</exception>
+ </member>
+ <member name="P:System.Xml.Xsl.XslTransform.XmlResolver">
+ <summary>Sets the <see cref="T:System.Xml.XmlResolver" /> used to resolve external resources when the <see cref="Overload:System.Xml.Xsl.XslTransform.Transform" /> method is called.</summary>
+ <returns>The <see cref="T:System.Xml.XmlResolver" /> to use during transformation. If set to <see langword="null" />, the XSLT <c>document()</c> function is not resolved.</returns>
+ </member>
+ <member name="T:System.Xml.Xsl.XsltSettings">
+ <summary>Specifies the XSLT features to support during execution of the XSLT style sheet.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltSettings.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltSettings" /> class with default settings.</summary>
+ </member>
+ <member name="M:System.Xml.Xsl.XsltSettings.#ctor(System.Boolean,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Xml.Xsl.XsltSettings" /> class with the specified settings.</summary>
+ <param name="enableDocumentFunction">
+ <see langword="true" /> to enable support for the XSLT <c>document()</c> function; otherwise, <see langword="false" />.</param>
+ <param name="enableScript">
+ <see langword="true" /> to enable support for embedded scripts blocks; otherwise, <see langword="false" />.</param>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltSettings.Default">
+ <summary>Gets an <see cref="T:System.Xml.Xsl.XsltSettings" /> object with default settings. Support for the XSLT <c>document()</c> function and embedded script blocks is disabled.</summary>
+ <returns>An <see cref="T:System.Xml.Xsl.XsltSettings" /> object with the <see cref="P:System.Xml.Xsl.XsltSettings.EnableDocumentFunction" /> and <see cref="P:System.Xml.Xsl.XsltSettings.EnableScript" /> properties set to <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltSettings.EnableDocumentFunction">
+ <summary>Gets or sets a value indicating whether to enable support for the XSLT <c>document()</c> function.</summary>
+ <returns>
+ <see langword="true" /> to support the XSLT <c>document()</c> function; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltSettings.EnableScript">
+ <summary>Gets or sets a value indicating whether to enable support for embedded script blocks.</summary>
+ <returns>
+ <see langword="true" /> to support script blocks in XSLT style sheets; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Xml.Xsl.XsltSettings.TrustedXslt">
+ <summary>Gets an <see cref="T:System.Xml.Xsl.XsltSettings" /> object that enables support for the XSLT <c>document()</c> function and embedded script blocks.</summary>
+ <returns>An <see cref="T:System.Xml.Xsl.XsltSettings" /> object with the <see cref="P:System.Xml.Xsl.XsltSettings.EnableDocumentFunction" /> and <see cref="P:System.Xml.Xsl.XsltSettings.EnableScript" /> properties set to <see langword="true" />.</returns>
+ </member>
+ </members>
+</doc> \ No newline at end of file