Revert "PR-5360"
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Runtime.Serialization.Xml.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Runtime.Serialization.Xml</name>
5   </assembly>
6   <members>
7     <member name="T:System.Runtime.Serialization.DataContractResolver">
8       <summary>Provides a mechanism for dynamically mapping types to and from <see langword="xsi:type" /> representations during serialization and deserialization.</summary>
9     </member>
10     <member name="M:System.Runtime.Serialization.DataContractResolver.#ctor">
11       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractResolver" /> class.</summary>
12     </member>
13     <member name="M:System.Runtime.Serialization.DataContractResolver.ResolveName(System.String,System.String,System.Type,System.Runtime.Serialization.DataContractResolver)">
14       <summary>Override this method to map the specified <see langword="xsi:type" /> name and namespace to a data contract type during deserialization.</summary>
15       <param name="typeName">The <see langword="xsi:type" /> name to map.</param>
16       <param name="typeNamespace">The <see langword="xsi:type" /> namespace to map.</param>
17       <param name="declaredType">The type declared in the data contract.</param>
18       <param name="knownTypeResolver">The known type resolver.</param>
19       <returns>The type the <see langword="xsi:type" /> name and namespace is mapped to.</returns>
20     </member>
21     <member name="M:System.Runtime.Serialization.DataContractResolver.TryResolveType(System.Type,System.Type,System.Runtime.Serialization.DataContractResolver,System.Xml.XmlDictionaryString@,System.Xml.XmlDictionaryString@)">
22       <summary>Override this method to map a data contract type to an <see langword="xsi:type" /> name and namespace during serialization.</summary>
23       <param name="type">The type to map.</param>
24       <param name="declaredType">The type declared in the data contract.</param>
25       <param name="knownTypeResolver">The known type resolver.</param>
26       <param name="typeName">The xsi:type name.</param>
27       <param name="typeNamespace">The xsi:type namespace.</param>
28       <returns>
29         <see langword="true" /> if mapping succeeded; otherwise, <see langword="false" />.</returns>
30     </member>
31     <member name="T:System.Runtime.Serialization.DataContractSerializer">
32       <summary>Serializes and deserializes an instance of a type into an XML stream or document using a supplied data contract. This class cannot be inherited.</summary>
33     </member>
34     <member name="M:System.Runtime.Serialization.DataContractSerializer.#ctor(System.Type)">
35       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> class to serialize or deserialize an object of the specified type.</summary>
36       <param name="type">The type of the instances that are serialized or deserialized.</param>
37     </member>
38     <member name="M:System.Runtime.Serialization.DataContractSerializer.#ctor(System.Type,System.Collections.Generic.IEnumerable{System.Type})">
39       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> class to serialize or deserialize an object of the specified type, and a collection of known types that may be present in the object graph.</summary>
40       <param name="type">The type of the instances that are serialized or deserialized.</param>
41       <param name="knownTypes">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Type" /> that contains the types that may be present in the object graph.</param>
42     </member>
43     <member name="M:System.Runtime.Serialization.DataContractSerializer.#ctor(System.Type,System.Runtime.Serialization.DataContractSerializerSettings)">
44       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> class to serialize or deserialize an object of the specified type and settings.</summary>
45       <param name="type">The type of the instance to serialize or deserialize.</param>
46       <param name="settings">The serializer settings.</param>
47     </member>
48     <member name="M:System.Runtime.Serialization.DataContractSerializer.#ctor(System.Type,System.String,System.String)">
49       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> class to serialize or deserialize an object of the specified type using the supplied XML root element and namespace.</summary>
50       <param name="type">The type of the instances that are serialized or deserialized.</param>
51       <param name="rootName">The name of the XML element that encloses the content to serialize or deserialize.</param>
52       <param name="rootNamespace">The namespace of the XML element that encloses the content to serialize or deserialize.</param>
53     </member>
54     <member name="M:System.Runtime.Serialization.DataContractSerializer.#ctor(System.Type,System.String,System.String,System.Collections.Generic.IEnumerable{System.Type})">
55       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> class to serialize or deserialize an object of the specified type. This method also specifies the root XML element and namespace in two string parameters as well as a list of known types that may be present in the object graph.</summary>
56       <param name="type">The type of the instances that are serialized or deserialized.</param>
57       <param name="rootName">The root element name of the content.</param>
58       <param name="rootNamespace">The namespace of the root element.</param>
59       <param name="knownTypes">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Type" /> that contains the types that may be present in the object graph.</param>
60     </member>
61     <member name="M:System.Runtime.Serialization.DataContractSerializer.#ctor(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
62       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> class to serialize or deserialize an object of the specified type using the XML root element and namespace specified through the parameters of type <see cref="T:System.Xml.XmlDictionaryString" />.</summary>
63       <param name="type">The type of the instances that are serialized or deserialized.</param>
64       <param name="rootName">An <see cref="T:System.Xml.XmlDictionaryString" /> that contains the root element name of the content.</param>
65       <param name="rootNamespace">An <see cref="T:System.Xml.XmlDictionaryString" /> that contains the namespace of the root element.</param>
66     </member>
67     <member name="M:System.Runtime.Serialization.DataContractSerializer.#ctor(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable{System.Type})">
68       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> class to serialize or deserialize an object of the specified type. This method also specifies the root XML element and namespace in two <see cref="T:System.Xml.XmlDictionaryString" /> parameters as well as a list of known types that may be present in the object graph.</summary>
69       <param name="type">The type of the instances that are serialized or deserialized.</param>
70       <param name="rootName">An <see cref="T:System.Xml.XmlDictionaryString" /> that contains the root element name of the content.</param>
71       <param name="rootNamespace">An <see cref="T:System.Xml.XmlDictionaryString" /> that contains the namespace of the root element.</param>
72       <param name="knownTypes">A <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Type" /> that contains the known types that may be present in the object graph.</param>
73     </member>
74     <member name="P:System.Runtime.Serialization.DataContractSerializer.DataContractResolver">
75       <summary>Gets the component used to dynamically map <see langword="xsi:type" /> declarations to known contract types.</summary>
76       <returns>An implementation of the <see cref="T:System.Runtime.Serialization.DataContractResolver" /> class.</returns>
77     </member>
78     <member name="P:System.Runtime.Serialization.DataContractSerializer.IgnoreExtensionDataObject">
79       <summary>Gets a value that specifies whether to ignore data supplied by an extension of the class when the class is being serialized or deserialized.</summary>
80       <returns>
81         <see langword="true" /> to omit the extension data; otherwise, <see langword="false" />.</returns>
82     </member>
83     <member name="M:System.Runtime.Serialization.DataContractSerializer.IsStartObject(System.Xml.XmlDictionaryReader)">
84       <summary>Determines whether the <see cref="T:System.Xml.XmlDictionaryReader" /> is positioned on an object that can be deserialized.</summary>
85       <param name="reader">An <see cref="T:System.Xml.XmlDictionaryReader" /> used to read the XML stream.</param>
86       <returns>
87         <see langword="true" /> if the reader is at the start element of the stream to read; otherwise, <see langword="false" />.</returns>
88     </member>
89     <member name="M:System.Runtime.Serialization.DataContractSerializer.IsStartObject(System.Xml.XmlReader)">
90       <summary>Determines whether the <see cref="T:System.Xml.XmlReader" /> is positioned on an object that can be deserialized.</summary>
91       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> used to read the XML stream.</param>
92       <returns>
93         <see langword="true" /> if the reader is at the start element of the stream to read; otherwise, <see langword="false" />.</returns>
94     </member>
95     <member name="P:System.Runtime.Serialization.DataContractSerializer.KnownTypes">
96       <summary>Gets a collection of types that may be present in the object graph serialized using this instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializer" />.</summary>
97       <returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> that contains the expected types passed in as known types to the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> constructor.</returns>
98     </member>
99     <member name="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph">
100       <summary>Gets the maximum number of items in an object graph to serialize or deserialize.</summary>
101       <returns>The maximum number of items to serialize or deserialize. The default is <see cref="F:System.Int32.MaxValue" />.</returns>
102       <exception cref="T:System.ArgumentOutOfRangeException">The number of items exceeds the maximum value.</exception>
103     </member>
104     <member name="P:System.Runtime.Serialization.DataContractSerializer.PreserveObjectReferences">
105       <summary>Gets a value that specifies whether to use non-standard XML constructs to preserve object reference data.</summary>
106       <returns>
107         <see langword="true" /> to keep the references; otherwise, <see langword="false" />.</returns>
108     </member>
109     <member name="M:System.Runtime.Serialization.DataContractSerializer.ReadObject(System.Xml.XmlDictionaryReader,System.Boolean)">
110       <summary>Reads the XML stream with an <see cref="T:System.Xml.XmlDictionaryReader" /> and returns the deserialized object, and also specifies whether a check is made to verify the object name before reading its value.</summary>
111       <param name="reader">The <see cref="T:System.Xml.XmlDictionaryReader" /> used to read the XML stream.</param>
112       <param name="verifyObjectName">
113         <see langword="true" /> to check whether the name of the object corresponds to the root name value supplied in the constructor; otherwise, <see langword="false" />.</param>
114       <returns>The deserialized object.</returns>
115       <exception cref="T:System.Runtime.Serialization.SerializationException">The <paramref name="verifyObjectName" /> parameter is set to <see langword="true" />, and the element name and namespace do not correspond to the values set in the constructor.</exception>
116     </member>
117     <member name="M:System.Runtime.Serialization.DataContractSerializer.ReadObject(System.Xml.XmlDictionaryReader,System.Boolean,System.Runtime.Serialization.DataContractResolver)">
118       <summary>Reads an XML document or document stream and returns the deserialized object.  The method includes a parameter to specify whether the object name is verified is validated, and a resolver for mapping <see langword="xsi:type" /> declarations at runtime.</summary>
119       <param name="reader">The XML reader used to read the content.</param>
120       <param name="verifyObjectName">
121         <see langword="true" /> to verify the object name; otherwise, <see langword="false" />.</param>
122       <param name="dataContractResolver">An implementation of the <see cref="T:System.Runtime.Serialization.DataContractResolver" /> to map <see langword="xsi:type" /> declarations to data contract types.</param>
123       <returns>The deserialized object.</returns>
124     </member>
125     <member name="M:System.Runtime.Serialization.DataContractSerializer.ReadObject(System.Xml.XmlReader)">
126       <summary>Reads the XML stream with an <see cref="T:System.Xml.XmlReader" /> and returns the deserialized object.</summary>
127       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> used to read the XML stream.</param>
128       <returns>The deserialized object.</returns>
129     </member>
130     <member name="M:System.Runtime.Serialization.DataContractSerializer.ReadObject(System.Xml.XmlReader,System.Boolean)">
131       <summary>Reads the XML stream with an <see cref="T:System.Xml.XmlReader" /> and returns the deserialized object, and also specifies whether a check is made to verify the object name before reading its value.</summary>
132       <param name="reader">The <see cref="T:System.Xml.XmlReader" /> used to read the XML stream.</param>
133       <param name="verifyObjectName">
134         <see langword="true" /> to check whether the name of the object corresponds to the root name value supplied in the constructor; otherwise, <see langword="false" />.</param>
135       <returns>The deserialized object.</returns>
136       <exception cref="T:System.Runtime.Serialization.SerializationException">The <paramref name="verifyObjectName" /> parameter is set to <see langword="true" />, and the element name and namespace do not correspond to the values set in the constructor.</exception>
137     </member>
138     <member name="P:System.Runtime.Serialization.DataContractSerializer.SerializeReadOnlyTypes">
139       <summary>Gets a value that specifies whether read-only types are serialized.</summary>
140       <returns>
141         <see langword="true" /> if read-only types are serialized; <see langword="false" /> if all types are serialized.</returns>
142     </member>
143     <member name="M:System.Runtime.Serialization.DataContractSerializer.WriteEndObject(System.Xml.XmlDictionaryWriter)">
144       <summary>Writes the closing XML element using an <see cref="T:System.Xml.XmlDictionaryWriter" />.</summary>
145       <param name="writer">The <see cref="T:System.Xml.XmlDictionaryWriter" /> used to write the stream.</param>
146       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">The type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
147       <exception cref="T:System.Runtime.Serialization.SerializationException">There is a problem with the instance being written.</exception>
148     </member>
149     <member name="M:System.Runtime.Serialization.DataContractSerializer.WriteEndObject(System.Xml.XmlWriter)">
150       <summary>Writes the closing XML element using an <see cref="T:System.Xml.XmlWriter" />.</summary>
151       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the stream.</param>
152       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">The type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
153       <exception cref="T:System.Runtime.Serialization.SerializationException">There is a problem with the instance being written.</exception>
154     </member>
155     <member name="M:System.Runtime.Serialization.DataContractSerializer.WriteObject(System.Xml.XmlDictionaryWriter,System.Object,System.Runtime.Serialization.DataContractResolver)">
156       <summary>Writes all the object data (starting XML element, content, and enclosing element) to an XML document or stream  using the specified XmlDictionaryWriter. The method includes a resolver for mapping <see langword="xsi:type" /> declarations at runtime.</summary>
157       <param name="writer">An XmlDictionaryWriter used to write the content to the XML document or stream.</param>
158       <param name="graph">The object that contains the content to write.</param>
159       <param name="dataContractResolver">An implementation of the <see cref="T:System.Runtime.Serialization.DataContractResolver" /> used to map <see langword="xsi:type" /> declarations to known data contracts.</param>
160     </member>
161     <member name="M:System.Runtime.Serialization.DataContractSerializer.WriteObject(System.Xml.XmlWriter,System.Object)">
162       <summary>Writes all the object data (starting XML element, content, and closing element) to an XML document or stream with an <see cref="T:System.Xml.XmlWriter" />.</summary>
163       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the XML document or stream.</param>
164       <param name="graph">The object that contains the data to write to the stream.</param>
165       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">The type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
166       <exception cref="T:System.Runtime.Serialization.SerializationException">There is a problem with the instance being written.</exception>
167     </member>
168     <member name="M:System.Runtime.Serialization.DataContractSerializer.WriteObjectContent(System.Xml.XmlDictionaryWriter,System.Object)">
169       <summary>Writes the XML content using an <see cref="T:System.Xml.XmlDictionaryWriter" />.</summary>
170       <param name="writer">The <see cref="T:System.Xml.XmlDictionaryWriter" /> used to write the stream.</param>
171       <param name="graph">The object to write to the stream.</param>
172       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">The type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
173       <exception cref="T:System.Runtime.Serialization.SerializationException">There is a problem with the instance being written.</exception>
174     </member>
175     <member name="M:System.Runtime.Serialization.DataContractSerializer.WriteObjectContent(System.Xml.XmlWriter,System.Object)">
176       <summary>Writes the XML content using an <see cref="T:System.Xml.XmlWriter" />.</summary>
177       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the stream.</param>
178       <param name="graph">The object to write to the stream.</param>
179       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">The type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
180       <exception cref="T:System.Runtime.Serialization.SerializationException">There is a problem with the instance being written.</exception>
181     </member>
182     <member name="M:System.Runtime.Serialization.DataContractSerializer.WriteStartObject(System.Xml.XmlDictionaryWriter,System.Object)">
183       <summary>Writes the opening XML element using an <see cref="T:System.Xml.XmlDictionaryWriter" />.</summary>
184       <param name="writer">The <see cref="T:System.Xml.XmlDictionaryWriter" /> used to write the XML start element.</param>
185       <param name="graph">The object to write.</param>
186     </member>
187     <member name="M:System.Runtime.Serialization.DataContractSerializer.WriteStartObject(System.Xml.XmlWriter,System.Object)">
188       <summary>Writes the opening XML element using an <see cref="T:System.Xml.XmlWriter" />.</summary>
189       <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> used to write the XML start element.</param>
190       <param name="graph">The object to write.</param>
191     </member>
192     <member name="T:System.Runtime.Serialization.DataContractSerializerExtensions">
193       <summary>Extends the <see cref="T:System.Runtime.Serialization.DataContractSerializer" /> class by providing methods for setting and getting an <see cref="T:System.Runtime.Serialization.ISerializationSurrogateProvider" />.</summary>
194     </member>
195     <member name="M:System.Runtime.Serialization.DataContractSerializerExtensions.GetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer)">
196       <summary>Returns the surrogate serialization provider for this serializer.</summary>
197       <param name="serializer">The serializer which is being surrogated.</param>
198       <returns>The surrogate serializer.</returns>
199     </member>
200     <member name="M:System.Runtime.Serialization.DataContractSerializerExtensions.SetSerializationSurrogateProvider(System.Runtime.Serialization.DataContractSerializer,System.Runtime.Serialization.ISerializationSurrogateProvider)">
201       <summary>Specifies a surrogate serialization provider for this <see cref="T:System.Runtime.Serialization.DataContractSerializer" />.</summary>
202       <param name="serializer">The serializer which is being surrogated.</param>
203       <param name="provider">The surrogate serialization provider.</param>
204     </member>
205     <member name="T:System.Runtime.Serialization.DataContractSerializerSettings">
206       <summary>Specifies data contract serializer settings.</summary>
207     </member>
208     <member name="M:System.Runtime.Serialization.DataContractSerializerSettings.#ctor">
209       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.DataContractSerializerSettings" /> class.</summary>
210     </member>
211     <member name="P:System.Runtime.Serialization.DataContractSerializerSettings.DataContractResolver">
212       <summary>Gets or sets the component used to dynamically map xsi:type declarations to known contract types.</summary>
213       <returns>The component used to dynamically map xsi:type declarations to known contract types.</returns>
214     </member>
215     <member name="P:System.Runtime.Serialization.DataContractSerializerSettings.IgnoreExtensionDataObject">
216       <summary>Gets or sets a value that specifies whether to ignore data supplied by an extension of the class when the class is being serialized or deserialized.</summary>
217       <returns>
218         <see langword="true" /> to ignore data supplied by an extension of the class when the class is being serialized or deserialized; otherwise, <see langword="false" />.</returns>
219     </member>
220     <member name="P:System.Runtime.Serialization.DataContractSerializerSettings.KnownTypes">
221       <summary>Gets or sets a collection of types that may be present in the object graph serialized using this instance of the DataContractSerializerSettings.</summary>
222       <returns>A collection of types that may be present in the object graph serialized using this instance of the DataContractSerializerSettings.</returns>
223     </member>
224     <member name="P:System.Runtime.Serialization.DataContractSerializerSettings.MaxItemsInObjectGraph">
225       <summary>Gets or sets the maximum number of items in an object graph to serialize or deserialize.</summary>
226       <returns>The maximum number of items in an object graph to serialize or deserialize.</returns>
227     </member>
228     <member name="P:System.Runtime.Serialization.DataContractSerializerSettings.PreserveObjectReferences">
229       <summary>Gets or sets a value that specifies whether to use non-standard XML constructs to preserve object reference data.</summary>
230       <returns>
231         <see langword="true" /> to use non-standard XML constructs to preserve object reference data; otherwise, <see langword="false" />.</returns>
232     </member>
233     <member name="P:System.Runtime.Serialization.DataContractSerializerSettings.RootName">
234       <summary>Gets or sets the root name of the selected object.</summary>
235       <returns>The root name of the selected object.</returns>
236     </member>
237     <member name="P:System.Runtime.Serialization.DataContractSerializerSettings.RootNamespace">
238       <summary>Gets or sets the root namespace for the specified object.</summary>
239       <returns>The root namespace for the specified object.</returns>
240     </member>
241     <member name="P:System.Runtime.Serialization.DataContractSerializerSettings.SerializeReadOnlyTypes">
242       <summary>Gets or sets a value that specifies whether to serialize read only types.</summary>
243       <returns>
244         <see langword="true" /> to serialize read only types; otherwise, <see langword="false" />.</returns>
245     </member>
246     <member name="T:System.Runtime.Serialization.ExportOptions">
247       <summary>Represents the options that can be set for an <see cref="T:System.Runtime.Serialization.XsdDataContractExporter" />.</summary>
248     </member>
249     <member name="M:System.Runtime.Serialization.ExportOptions.#ctor">
250       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.ExportOptions" /> class.</summary>
251     </member>
252     <member name="P:System.Runtime.Serialization.ExportOptions.KnownTypes">
253       <summary>Gets the collection of types that may be encountered during serialization or deserialization.</summary>
254       <returns>A <see langword="KnownTypes" /> collection that contains types that may be encountered during serialization or deserialization. XML schema representations are exported for all the types specified in this collection by the <see cref="T:System.Runtime.Serialization.XsdDataContractExporter" />.</returns>
255     </member>
256     <member name="T:System.Runtime.Serialization.ExtensionDataObject">
257       <summary>Stores data from a versioned data contract that has been extended by adding new members.</summary>
258     </member>
259     <member name="T:System.Runtime.Serialization.IExtensibleDataObject">
260       <summary>Provides a data structure to store extra data encountered by the <see cref="T:System.Runtime.Serialization.XmlObjectSerializer" /> during deserialization of a type marked with the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute.</summary>
261     </member>
262     <member name="P:System.Runtime.Serialization.IExtensibleDataObject.ExtensionData">
263       <summary>Gets or sets the structure that contains extra data.</summary>
264       <returns>An <see cref="T:System.Runtime.Serialization.ExtensionDataObject" /> that contains data that is not recognized as belonging to the data contract.</returns>
265     </member>
266     <member name="T:System.Runtime.Serialization.XmlObjectSerializer">
267       <summary>Provides the base class used to serialize objects as XML streams or documents. This class is abstract.</summary>
268     </member>
269     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.#ctor">
270       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.XmlObjectSerializer" /> class.</summary>
271     </member>
272     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.IsStartObject(System.Xml.XmlDictionaryReader)">
273       <summary>Gets a value that specifies whether the <see cref="T:System.Xml.XmlDictionaryReader" /> is positioned over an XML element that can be read.</summary>
274       <param name="reader">An <see cref="T:System.Xml.XmlDictionaryReader" /> used to read the XML stream or document.</param>
275       <returns>
276         <see langword="true" /> if the reader can read the data; otherwise, <see langword="false" />.</returns>
277     </member>
278     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.IsStartObject(System.Xml.XmlReader)">
279       <summary>Gets a value that specifies whether the <see cref="T:System.Xml.XmlReader" /> is positioned over an XML element that can be read.</summary>
280       <param name="reader">An <see cref="T:System.Xml.XmlReader" /> used to read the XML stream or document.</param>
281       <returns>
282         <see langword="true" /> if the reader is positioned over the starting element; otherwise, <see langword="false" />.</returns>
283     </member>
284     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.ReadObject(System.IO.Stream)">
285       <summary>Reads the XML stream or document with a <see cref="T:System.IO.Stream" /> and returns the deserialized object.</summary>
286       <param name="stream">A <see cref="T:System.IO.Stream" /> used to read the XML stream or document.</param>
287       <returns>The deserialized object.</returns>
288     </member>
289     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.ReadObject(System.Xml.XmlDictionaryReader)">
290       <summary>Reads the XML document or stream with an <see cref="T:System.Xml.XmlDictionaryReader" /> and returns the deserialized object.</summary>
291       <param name="reader">An <see cref="T:System.Xml.XmlDictionaryReader" /> used to read the XML document.</param>
292       <returns>The deserialized object.</returns>
293     </member>
294     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.ReadObject(System.Xml.XmlDictionaryReader,System.Boolean)">
295       <summary>Reads the XML stream or document with an <see cref="T:System.Xml.XmlDictionaryReader" /> and returns the deserialized object; it also enables you to specify whether the serializer can read the data before attempting to read it.</summary>
296       <param name="reader">An <see cref="T:System.Xml.XmlDictionaryReader" /> used to read the XML document.</param>
297       <param name="verifyObjectName">
298         <see langword="true" /> to check whether the enclosing XML element name and namespace correspond to the root name and root namespace; otherwise, <see langword="false" /> to skip the verification.</param>
299       <returns>The deserialized object.</returns>
300     </member>
301     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.ReadObject(System.Xml.XmlReader)">
302       <summary>Reads the XML document or stream with an <see cref="T:System.Xml.XmlReader" /> and returns the deserialized object.</summary>
303       <param name="reader">An <see cref="T:System.Xml.XmlReader" /> used to read the XML stream or document.</param>
304       <returns>The deserialized object.</returns>
305     </member>
306     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.ReadObject(System.Xml.XmlReader,System.Boolean)">
307       <summary>Reads the XML document or stream with an <see cref="T:System.Xml.XmlReader" /> and returns the deserialized object; it also enables you to specify whether the serializer can read the data before attempting to read it.</summary>
308       <param name="reader">An <see cref="T:System.Xml.XmlReader" /> used to read the XML document or stream.</param>
309       <param name="verifyObjectName">
310         <see langword="true" /> to check whether the enclosing XML element name and namespace correspond to the root name and root namespace; <see langword="false" /> to skip the verification.</param>
311       <returns>The deserialized object.</returns>
312     </member>
313     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteEndObject(System.Xml.XmlDictionaryWriter)">
314       <summary>Writes the end of the object data as a closing XML element to the XML document or stream with an <see cref="T:System.Xml.XmlDictionaryWriter" />.</summary>
315       <param name="writer">An <see cref="T:System.Xml.XmlDictionaryWriter" /> used to write the XML document or stream.</param>
316       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
317       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
318       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
319     </member>
320     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteEndObject(System.Xml.XmlWriter)">
321       <summary>Writes the end of the object data as a closing XML element to the XML document or stream with an <see cref="T:System.Xml.XmlWriter" />.</summary>
322       <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> used to write the XML document or stream.</param>
323       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
324       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
325       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
326     </member>
327     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteObject(System.IO.Stream,System.Object)">
328       <summary>Writes the complete content (start, content, and end) of the object to the XML document or stream with the specified <see cref="T:System.IO.Stream" />.</summary>
329       <param name="stream">A <see cref="T:System.IO.Stream" /> used to write the XML document or stream.</param>
330       <param name="graph">The object that contains the data to write to the stream.</param>
331       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
332       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
333       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
334     </member>
335     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteObject(System.Xml.XmlDictionaryWriter,System.Object)">
336       <summary>Writes the complete content (start, content, and end) of the object to the XML document or stream with the specified <see cref="T:System.Xml.XmlDictionaryWriter" />.</summary>
337       <param name="writer">An <see cref="T:System.Xml.XmlDictionaryWriter" /> used to write the content to the XML document or stream.</param>
338       <param name="graph">The object that contains the content to write.</param>
339       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
340       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
341       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
342     </member>
343     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteObject(System.Xml.XmlWriter,System.Object)">
344       <summary>Writes the complete content (start, content, and end) of the object to the XML document or stream with the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
345       <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> used to write the XML document or stream.</param>
346       <param name="graph">The object that contains the content to write.</param>
347       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
348       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
349       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
350     </member>
351     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteObjectContent(System.Xml.XmlDictionaryWriter,System.Object)">
352       <summary>Writes only the content of the object to the XML document or stream using the specified <see cref="T:System.Xml.XmlDictionaryWriter" />.</summary>
353       <param name="writer">An <see cref="T:System.Xml.XmlDictionaryWriter" /> used to write the XML document or stream.</param>
354       <param name="graph">The object that contains the content to write.</param>
355       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
356       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
357       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
358     </member>
359     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteObjectContent(System.Xml.XmlWriter,System.Object)">
360       <summary>Writes only the content of the object to the XML document or stream with the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
361       <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> used to write the XML document or stream.</param>
362       <param name="graph">The object that contains the content to write.</param>
363       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
364       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
365       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
366     </member>
367     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteStartObject(System.Xml.XmlDictionaryWriter,System.Object)">
368       <summary>Writes the start of the object's data as an opening XML element using the specified <see cref="T:System.Xml.XmlDictionaryWriter" />.</summary>
369       <param name="writer">An <see cref="T:System.Xml.XmlDictionaryWriter" /> used to write the XML document.</param>
370       <param name="graph">The object to serialize.</param>
371       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
372       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
373       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
374     </member>
375     <member name="M:System.Runtime.Serialization.XmlObjectSerializer.WriteStartObject(System.Xml.XmlWriter,System.Object)">
376       <summary>Writes the start of the object's data as an opening XML element using the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
377       <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> used to write the XML document.</param>
378       <param name="graph">The object to serialize.</param>
379       <exception cref="T:System.Runtime.Serialization.InvalidDataContractException">the type being serialized does not conform to data contract rules. For example, the <see cref="T:System.Runtime.Serialization.DataContractAttribute" /> attribute has not been applied to the type.</exception>
380       <exception cref="T:System.Runtime.Serialization.SerializationException">there is a problem with the instance being serialized.</exception>
381       <exception cref="T:System.ServiceModel.QuotaExceededException">the maximum number of objects to serialize has been exceeded. Check the <see cref="P:System.Runtime.Serialization.DataContractSerializer.MaxItemsInObjectGraph" /> property.</exception>
382     </member>
383     <member name="T:System.Runtime.Serialization.XmlSerializableServices">
384       <summary>Contains methods for reading and writing XML.</summary>
385     </member>
386     <member name="M:System.Runtime.Serialization.XmlSerializableServices.AddDefaultSchema(System.Xml.Schema.XmlSchemaSet,System.Xml.XmlQualifiedName)">
387       <summary>Generates a default schema type given the specified type name and adds it to the specified schema set.</summary>
388       <param name="schemas">An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> to add the generated schema type to.</param>
389       <param name="typeQName">An <see cref="T:System.Xml.XmlQualifiedName" /> that specifies the type name to assign the schema to.</param>
390       <exception cref="T:System.ArgumentNullException">The <paramref name="schemas" /> or <paramref name="typeQName" /> argument is <see langword="null" />.</exception>
391     </member>
392     <member name="M:System.Runtime.Serialization.XmlSerializableServices.ReadNodes(System.Xml.XmlReader)">
393       <summary>Reads a set of XML nodes from the specified reader and returns the result.</summary>
394       <param name="xmlReader">An <see cref="T:System.Xml.XmlReader" /> used for reading.</param>
395       <returns>An array of type <see cref="T:System.Xml.XmlNode" />.</returns>
396       <exception cref="T:System.ArgumentNullException">The <paramref name="xmlReader" /> argument is <see langword="null" />.</exception>
397       <exception cref="T:System.Runtime.Serialization.SerializationException">While reading, a <see langword="null" /> node was encountered.</exception>
398     </member>
399     <member name="M:System.Runtime.Serialization.XmlSerializableServices.WriteNodes(System.Xml.XmlWriter,System.Xml.XmlNode[])">
400       <summary>Writes the supplied nodes using the specified writer.</summary>
401       <param name="xmlWriter">An <see cref="T:System.Xml.XmlWriter" /> used for writing.</param>
402       <param name="nodes">An array of type <see cref="T:System.Xml.XmlNode" /> to write.</param>
403       <exception cref="T:System.ArgumentNullException">The <paramref name="xmlWriter" /> argument is <see langword="null" />.</exception>
404     </member>
405     <member name="T:System.Runtime.Serialization.XPathQueryGenerator">
406       <summary>When given a class representing a data contract, and metadata representing a member of the contract, produces an XPath query for the member.</summary>
407     </member>
408     <member name="M:System.Runtime.Serialization.XPathQueryGenerator.CreateFromDataContractSerializer(System.Type,System.Reflection.MemberInfo[],System.Text.StringBuilder,System.Xml.XmlNamespaceManager@)">
409       <summary>Creates an XPath from a data contract using the specified contract data type, array of metadata elements, the top level element, and namespaces.</summary>
410       <param name="type">The type that represents a data contract.</param>
411       <param name="pathToMember">The metadata, generated using the <see cref="Overload:System.Type.GetMember" /> method of the <see cref="T:System.Type" /> class, that points to the specific data member used to generate the query.</param>
412       <param name="rootElementXpath">The top level element in the xpath.</param>
413       <param name="namespaces">The XML namespaces and their prefixes found in the data contract.</param>
414       <returns>
415         <see cref="T:System.String" />
416 The XPath generated from the type and member data.</returns>
417     </member>
418     <member name="M:System.Runtime.Serialization.XPathQueryGenerator.CreateFromDataContractSerializer(System.Type,System.Reflection.MemberInfo[],System.Xml.XmlNamespaceManager@)">
419       <summary>Creates an XPath from a data contract using the specified data contract type, array of metadata elements, and namespaces.</summary>
420       <param name="type">The type that represents a data contract.</param>
421       <param name="pathToMember">The metadata, generated using the <see cref="Overload:System.Type.GetMember" /> method of the <see cref="T:System.Type" /> class, that points to the specific data member used to generate the query.</param>
422       <param name="namespaces">The XML namespaces and their prefixes found in the data contract.</param>
423       <returns>
424         <see cref="T:System.String" />
425 The XPath generated from the type and member data.</returns>
426     </member>
427     <member name="T:System.Runtime.Serialization.XsdDataContractExporter">
428       <summary>Allows the transformation of a set of .NET Framework types that are used in data contracts into an XML schema file (.xsd).</summary>
429     </member>
430     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.#ctor">
431       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.XsdDataContractExporter" /> class.</summary>
432     </member>
433     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.#ctor(System.Xml.Schema.XmlSchemaSet)">
434       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Serialization.XsdDataContractExporter" /> class with the specified set of schemas.</summary>
435       <param name="schemas">An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> that contains the schemas to be exported.</param>
436     </member>
437     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.CanExport(System.Collections.Generic.ICollection{System.Reflection.Assembly})">
438       <summary>Gets a value that indicates whether the set of .common language runtime (CLR) types contained in a set of assemblies can be exported.</summary>
439       <param name="assemblies">A <see cref="T:System.Collections.Generic.ICollection`1" /> of <see cref="T:System.Reflection.Assembly" /> that contains the assemblies with the types to export.</param>
440       <returns>
441         <see langword="true" /> if the types can be exported; otherwise, <see langword="false" />.</returns>
442     </member>
443     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.CanExport(System.Collections.Generic.ICollection{System.Type})">
444       <summary>Gets a value that indicates whether the set of .common language runtime (CLR) types contained in a <see cref="T:System.Collections.Generic.ICollection`1" /> can be exported.</summary>
445       <param name="types">A <see cref="T:System.Collections.Generic.ICollection`1" /> that contains the specified types to export.</param>
446       <returns>
447         <see langword="true" /> if the types can be exported; otherwise, <see langword="false" />.</returns>
448     </member>
449     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.CanExport(System.Type)">
450       <summary>Gets a value that indicates whether the specified common language runtime (CLR) type can be exported.</summary>
451       <param name="type">The <see cref="T:System.Type" /> to export.</param>
452       <returns>
453         <see langword="true" /> if the type can be exported; otherwise, <see langword="false" />.</returns>
454     </member>
455     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.Export(System.Collections.Generic.ICollection{System.Reflection.Assembly})">
456       <summary>Transforms the types contained in the specified collection of assemblies.</summary>
457       <param name="assemblies">A <see cref="T:System.Collections.Generic.ICollection`1" /> (of <see cref="T:System.Reflection.Assembly" />) that contains the types to export.</param>
458       <exception cref="T:System.ArgumentNullException">The <paramref name="assemblies" /> argument is <see langword="null" />.</exception>
459       <exception cref="T:System.ArgumentException">An <see cref="T:System.Reflection.Assembly" /> in the collection is <see langword="null" />.</exception>
460     </member>
461     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.Export(System.Collections.Generic.ICollection{System.Type})">
462       <summary>Transforms the types contained in the <see cref="T:System.Collections.Generic.ICollection`1" /> passed to this method.</summary>
463       <param name="types">A  <see cref="T:System.Collections.Generic.ICollection`1" /> (of <see cref="T:System.Type" />) that contains the types to export.</param>
464       <exception cref="T:System.ArgumentNullException">The <paramref name="types" /> argument is <see langword="null" />.</exception>
465       <exception cref="T:System.ArgumentException">A type in the collection is <see langword="null" />.</exception>
466     </member>
467     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.Export(System.Type)">
468       <summary>Transforms the specified .NET Framework type into an XML schema definition language (XSD) schema.</summary>
469       <param name="type">The <see cref="T:System.Type" /> to transform into an XML schema.</param>
470       <exception cref="T:System.ArgumentNullException">The <paramref name="type" /> argument is <see langword="null" />.</exception>
471     </member>
472     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.GetRootElementName(System.Type)">
473       <summary>Returns the top-level name and namespace for the <see cref="T:System.Type" />.</summary>
474       <param name="type">The <see cref="T:System.Type" /> to query.</param>
475       <returns>The <see cref="T:System.Xml.XmlQualifiedName" /> that represents the top-level name and namespace for this <see cref="T:System.Type" />, which is written to the stream when writing this object.</returns>
476       <exception cref="T:System.ArgumentNullException">The <paramref name="type" /> argument is <see langword="null" />.</exception>
477     </member>
478     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.GetSchemaType(System.Type)">
479       <summary>Returns the XML schema type for the specified type.</summary>
480       <param name="type">The type to return a schema for.</param>
481       <returns>An <see cref="T:System.Xml.Schema.XmlSchemaType" /> that contains the XML schema.</returns>
482       <exception cref="T:System.ArgumentNullException">The <paramref name="type" /> argument is <see langword="null" />.</exception>
483     </member>
484     <member name="M:System.Runtime.Serialization.XsdDataContractExporter.GetSchemaTypeName(System.Type)">
485       <summary>Returns the contract name and contract namespace for the <see cref="T:System.Type" />.</summary>
486       <param name="type">The <see cref="T:System.Type" /> that was exported.</param>
487       <returns>An <see cref="T:System.Xml.XmlQualifiedName" /> that represents the contract name of the type and its namespace.</returns>
488       <exception cref="T:System.ArgumentNullException">The <paramref name="type" /> argument is <see langword="null" />.</exception>
489     </member>
490     <member name="P:System.Runtime.Serialization.XsdDataContractExporter.Options">
491       <summary>Gets or sets an <see cref="T:System.Runtime.Serialization.ExportOptions" /> that contains options that can be set for the export operation.</summary>
492       <returns>An <see cref="T:System.Runtime.Serialization.ExportOptions" /> that contains options used to customize how types are exported to schemas.</returns>
493     </member>
494     <member name="P:System.Runtime.Serialization.XsdDataContractExporter.Schemas">
495       <summary>Gets the collection of exported XML schemas.</summary>
496       <returns>An <see cref="T:System.Xml.Schema.XmlSchemaSet" /> that contains the schemas transformed from the set of common language runtime (CLR) types after calling the <see cref="Overload:System.Runtime.Serialization.XsdDataContractExporter.Export" /> method.</returns>
497     </member>
498     <member name="T:System.Xml.IFragmentCapableXmlDictionaryWriter">
499       <summary>Contains properties and methods that when implemented by a <see cref="T:System.Xml.XmlDictionaryWriter" />, allows processing of XML fragments.</summary>
500     </member>
501     <member name="P:System.Xml.IFragmentCapableXmlDictionaryWriter.CanFragment">
502       <summary>Gets a value that indicates whether this <see cref="T:System.Xml.XmlDictionaryWriter" /> can process XML fragments.</summary>
503       <returns>
504         <see langword="true" /> if this <see cref="T:System.Xml.XmlDictionaryWriter" /> can process XML fragments; otherwise, <see langword="false" />.</returns>
505     </member>
506     <member name="M:System.Xml.IFragmentCapableXmlDictionaryWriter.EndFragment">
507       <summary>Ends the processing of an XML fragment.</summary>
508     </member>
509     <member name="M:System.Xml.IFragmentCapableXmlDictionaryWriter.StartFragment(System.IO.Stream,System.Boolean)">
510       <summary>Starts the processing of an XML fragment.</summary>
511       <param name="stream">The stream to write to.</param>
512       <param name="generateSelfContainedTextFragment">If <see langword="true" />, any namespaces declared outside the fragment is declared again if used inside of it; if <see langword="false" /> the namespaces are not declared again.</param>
513     </member>
514     <member name="M:System.Xml.IFragmentCapableXmlDictionaryWriter.WriteFragment(System.Byte[],System.Int32,System.Int32)">
515       <summary>Writes an XML fragment to the underlying stream of the writer.</summary>
516       <param name="buffer">The buffer to write to.</param>
517       <param name="offset">The starting position from which to write in <paramref name="buffer" />.</param>
518       <param name="count">The number of bytes to be written to the <paramref name="buffer" />.</param>
519     </member>
520     <member name="T:System.Xml.IStreamProvider">
521       <summary>Represents an interface that can be implemented by classes providing streams.</summary>
522     </member>
523     <member name="M:System.Xml.IStreamProvider.GetStream">
524       <summary>Gets a stream.</summary>
525       <returns>A <see cref="T:System.IO.Stream" /> object.</returns>
526     </member>
527     <member name="M:System.Xml.IStreamProvider.ReleaseStream(System.IO.Stream)">
528       <summary>Releases a stream to output.</summary>
529       <param name="stream">The stream being released.</param>
530     </member>
531     <member name="T:System.Xml.IXmlBinaryReaderInitializer">
532       <summary>Provides methods for reinitializing a binary reader to read a new document.</summary>
533     </member>
534     <member name="M:System.Xml.IXmlBinaryReaderInitializer.SetInput(System.Byte[],System.Int32,System.Int32,System.Xml.IXmlDictionary,System.Xml.XmlDictionaryReaderQuotas,System.Xml.XmlBinaryReaderSession,System.Xml.OnXmlDictionaryReaderClose)">
535       <summary>Reinitializes the binary reader using the given input buffer.</summary>
536       <param name="buffer">The buffer from which to read.</param>
537       <param name="offset">Starting position from which to read in <paramref name="buffer" />.</param>
538       <param name="count">Number of bytes that can be read from <paramref name="buffer" />.</param>
539       <param name="dictionary">
540         <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
541       <param name="quotas">
542         <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
543       <param name="session">
544         <see cref="T:System.Xml.XmlBinaryReaderSession" /> to use.</param>
545       <param name="onClose">Delegate to call when the reader is closed.</param>
546     </member>
547     <member name="M:System.Xml.IXmlBinaryReaderInitializer.SetInput(System.IO.Stream,System.Xml.IXmlDictionary,System.Xml.XmlDictionaryReaderQuotas,System.Xml.XmlBinaryReaderSession,System.Xml.OnXmlDictionaryReaderClose)">
548       <summary>Reinitializes the binary reader using the given input stream.</summary>
549       <param name="stream">The stream from which to read.</param>
550       <param name="dictionary">
551         <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
552       <param name="quotas">
553         <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
554       <param name="session">
555         <see cref="T:System.Xml.XmlBinaryReaderSession" /> to use.</param>
556       <param name="onClose">Delegate to call when the reader is closed.</param>
557     </member>
558     <member name="T:System.Xml.IXmlBinaryWriterInitializer">
559       <summary>Specifies implementation requirements for XML binary writers that derive from this interface.</summary>
560     </member>
561     <member name="M:System.Xml.IXmlBinaryWriterInitializer.SetOutput(System.IO.Stream,System.Xml.IXmlDictionary,System.Xml.XmlBinaryWriterSession,System.Boolean)">
562       <summary>Specifies initialization requirements for XML binary writers that implement this method.</summary>
563       <param name="stream">The stream to write to.</param>
564       <param name="dictionary">The <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
565       <param name="session">The <see cref="T:System.Xml.XmlBinaryWriterSession" /> to use.</param>
566       <param name="ownsStream">
567         <see langword="true" /> to indicate the stream is closed by the writer when done; otherwise, <see langword="false" />.</param>
568     </member>
569     <member name="T:System.Xml.IXmlDictionary">
570       <summary>An <see langword="interface" /> that defines the contract that an Xml dictionary must implement to be used by <see cref="T:System.Xml.XmlDictionaryReader" /> and <see cref="T:System.Xml.XmlDictionaryWriter" /> implementations.</summary>
571     </member>
572     <member name="M:System.Xml.IXmlDictionary.TryLookup(System.Int32,System.Xml.XmlDictionaryString@)">
573       <summary>Attempts to look up an entry in the dictionary.</summary>
574       <param name="key">Key to look up.</param>
575       <param name="result">If <paramref name="key" /> is defined, the <see cref="T:System.Xml.XmlDictionaryString" /> that is mapped to the key; otherwise <see langword="null" />.</param>
576       <returns>
577         <see langword="true" /> if key is in the dictionary; otherwise, <see langword="false" />.</returns>
578     </member>
579     <member name="M:System.Xml.IXmlDictionary.TryLookup(System.String,System.Xml.XmlDictionaryString@)">
580       <summary>Checks the dictionary for a specified string value.</summary>
581       <param name="value">String value being checked for.</param>
582       <param name="result">The corresponding <see cref="T:System.Xml.XmlDictionaryString" />, if found; otherwise, <see langword="null" />.</param>
583       <returns>
584         <see langword="true" /> if value is in the dictionary; otherwise, <see langword="false" />.</returns>
585     </member>
586     <member name="M:System.Xml.IXmlDictionary.TryLookup(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString@)">
587       <summary>Checks the dictionary for a specified <see cref="T:System.Xml.XmlDictionaryString" />.</summary>
588       <param name="value">The <see cref="T:System.Xml.XmlDictionaryString" /> being checked for.</param>
589       <param name="result">The matching <see cref="T:System.Xml.XmlDictionaryString" />, if found; otherwise, <see langword="null" />.</param>
590       <returns>
591         <see langword="true" /> if <see cref="T:System.Xml.XmlDictionaryString" /> is in the dictionary; otherwise, <see langword="false" />.</returns>
592     </member>
593     <member name="T:System.Xml.IXmlTextReaderInitializer">
594       <summary>Specifies implementation requirements for XML text readers that derive from this interface.</summary>
595     </member>
596     <member name="M:System.Xml.IXmlTextReaderInitializer.SetInput(System.Byte[],System.Int32,System.Int32,System.Text.Encoding,System.Xml.XmlDictionaryReaderQuotas,System.Xml.OnXmlDictionaryReaderClose)">
597       <summary>Specifies initialization requirements for XML text readers that read a buffer.</summary>
598       <param name="buffer">The buffer from which to read.</param>
599       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
600       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
601       <param name="encoding">The character encoding of the stream.</param>
602       <param name="quotas">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
603       <param name="onClose">The delegate to be called when the reader is closed.</param>
604     </member>
605     <member name="M:System.Xml.IXmlTextReaderInitializer.SetInput(System.IO.Stream,System.Text.Encoding,System.Xml.XmlDictionaryReaderQuotas,System.Xml.OnXmlDictionaryReaderClose)">
606       <summary>Specifies initialization requirements for XML text readers that read a stream.</summary>
607       <param name="stream">The stream from which to read.</param>
608       <param name="encoding">The character encoding of the stream.</param>
609       <param name="quotas">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
610       <param name="onClose">The delegate to be called when the reader is closed.</param>
611     </member>
612     <member name="T:System.Xml.IXmlTextWriterInitializer">
613       <summary>Specifies implementation requirements for XML text writers that derive from this interface.</summary>
614     </member>
615     <member name="M:System.Xml.IXmlTextWriterInitializer.SetOutput(System.IO.Stream,System.Text.Encoding,System.Boolean)">
616       <summary>Specifies initialization requirements for XML text writers that implement this method.</summary>
617       <param name="stream">The stream to write to.</param>
618       <param name="encoding">The character encoding of the stream.</param>
619       <param name="ownsStream">
620         <see langword="true" /> to indicate the stream is closed by the writer when done; otherwise, <see langword="false" />.</param>
621     </member>
622     <member name="T:System.Xml.OnXmlDictionaryReaderClose">
623       <summary>
624         <see langword="delegate" /> for a callback method when closing the reader.</summary>
625       <param name="reader">The <see cref="T:System.Xml.XmlDictionaryReader" /> that fires the <c>OnClose</c> event.</param>
626     </member>
627     <member name="T:System.Xml.UniqueId">
628       <summary>A unique identifier optimized for Guids.</summary>
629     </member>
630     <member name="M:System.Xml.UniqueId.#ctor">
631       <summary>Creates a new instance of this class with a new, unique Guid.</summary>
632     </member>
633     <member name="M:System.Xml.UniqueId.#ctor(System.Byte[])">
634       <summary>Creates a new instance of this class using a byte array that represents a <see cref="T:System.Guid" />.</summary>
635       <param name="guid">A byte array that represents a <see cref="T:System.Guid" />.</param>
636       <exception cref="T:System.ArgumentNullException">
637         <paramref name="guid" /> is <see langword="null" />.</exception>
638       <exception cref="T:System.ArgumentException">
639         <paramref name="guid" /> provides less than 16 valid bytes.</exception>
640     </member>
641     <member name="M:System.Xml.UniqueId.#ctor(System.Byte[],System.Int32)">
642       <summary>Creates a new instance of this class starting from an offset within a <see langword="byte" /> array that represents a <see cref="T:System.Guid" />.</summary>
643       <param name="guid">A <see langword="byte" /> array that represents a <see cref="T:System.Guid" />.</param>
644       <param name="offset">Offset position within the <see langword="byte" /> array that represents a <see cref="T:System.Guid" />.</param>
645       <exception cref="T:System.ArgumentNullException">
646         <paramref name="guid" /> is <see langword="null" />.</exception>
647       <exception cref="T:System.ArgumentOutOfRangeException">
648         <paramref name="offset" /> less than zero or greater than the length of the array.</exception>
649       <exception cref="T:System.ArgumentException">
650         <paramref name="guid" /> and <paramref name="offset" /> provide less than 16 valid bytes.</exception>
651     </member>
652     <member name="M:System.Xml.UniqueId.#ctor(System.Char[],System.Int32,System.Int32)">
653       <summary>Creates a new instance of this class starting from an offset within a <see langword="char" /> using a specified number of entries.</summary>
654       <param name="chars">A <see langword="char" /> array that represents a <see cref="T:System.Guid" />.</param>
655       <param name="offset">Offset position within the <see langword="char" /> array that represents a <see cref="T:System.Guid" />.</param>
656       <param name="count">Number of array entries to use, starting from <paramref name="offset" />.</param>
657       <exception cref="T:System.ArgumentNullException">
658         <paramref name="chars" /> is <see langword="null" />.</exception>
659       <exception cref="T:System.ArgumentOutOfRangeException">
660         <paramref name="offset" /> less than zero or greater than the length of the array.
661 -or-
662 <paramref name="count" /> less than zero or greater than the length of the array minus <paramref name="offset" />.</exception>
663       <exception cref="T:System.FormatException">
664         <paramref name="count" /> equals zero.</exception>
665     </member>
666     <member name="M:System.Xml.UniqueId.#ctor(System.Guid)">
667       <summary>Creates a new instance of this class using a <see cref="T:System.Guid" />.</summary>
668       <param name="guid">A <see cref="T:System.Guid" />.</param>
669       <exception cref="T:System.ArgumentNullException">
670         <paramref name="guid" /> is <see langword="null" />.</exception>
671     </member>
672     <member name="M:System.Xml.UniqueId.#ctor(System.String)">
673       <summary>Creates a new instance of this class using a string.</summary>
674       <param name="value">A string used to generate the <see cref="T:System.Xml.UniqueId" />.</param>
675       <exception cref="T:System.ArgumentNullException">
676         <paramref name="value" /> is <see langword="null" />.</exception>
677       <exception cref="T:System.FormatException">Length of <paramref name="value" /> is zero.</exception>
678     </member>
679     <member name="P:System.Xml.UniqueId.CharArrayLength">
680       <summary>Gets the length of the string representation of the <see cref="T:System.Xml.UniqueId" />.</summary>
681       <returns>The length of the string representation of the <see cref="T:System.Xml.UniqueId" />.</returns>
682     </member>
683     <member name="M:System.Xml.UniqueId.Equals(System.Object)">
684       <summary>Tests whether an object equals this <see cref="T:System.Xml.UniqueId" />.</summary>
685       <param name="obj">The object to compare.</param>
686       <returns>
687         <see langword="true" /> if the object equals this <see cref="T:System.Xml.UniqueId" />; otherwise <see langword="false" />.</returns>
688     </member>
689     <member name="M:System.Xml.UniqueId.GetHashCode">
690       <summary>Creates a hash-code representation of this <see cref="T:System.Xml.UniqueId" />.</summary>
691       <returns>An integer hash-code representation of this <see cref="T:System.Xml.UniqueId" />.</returns>
692     </member>
693     <member name="P:System.Xml.UniqueId.IsGuid">
694       <summary>Indicates whether the <see cref="T:System.Xml.UniqueId" /> is a <see cref="T:System.Guid" />.</summary>
695       <returns>
696         <see langword="true" /> if the <see cref="T:System.Xml.UniqueId" /> is a <see cref="T:System.Guid" />; otherwise <see langword="false" />.</returns>
697     </member>
698     <member name="M:System.Xml.UniqueId.op_Equality(System.Xml.UniqueId,System.Xml.UniqueId)">
699       <summary>Overrides the equality operator to test for equality of two <see cref="T:System.Xml.UniqueId" />s.</summary>
700       <param name="id1">The first <see cref="T:System.Xml.UniqueId" />.</param>
701       <param name="id2">The second <see cref="T:System.Xml.UniqueId" />.</param>
702       <returns>
703         <see langword="true" /> if the two <see cref="T:System.Xml.UniqueId" />s are equal, or are both <see langword="null" />; <see langword="false" /> if they are not equal, or if only one of them is <see langword="null" />.</returns>
704     </member>
705     <member name="M:System.Xml.UniqueId.op_Inequality(System.Xml.UniqueId,System.Xml.UniqueId)">
706       <summary>Overrides the equality operator to test for inequality of two <see cref="T:System.Xml.UniqueId" />s.</summary>
707       <param name="id1">The first <see cref="T:System.Xml.UniqueId" />.</param>
708       <param name="id2">The second <see cref="T:System.Xml.UniqueId" />.</param>
709       <returns>
710         <see langword="true" /> if the overridden equality operator returns <see langword="false" />; otherwise <see langword="false" />.</returns>
711     </member>
712     <member name="M:System.Xml.UniqueId.ToCharArray(System.Char[],System.Int32)">
713       <summary>Puts the <see cref="T:System.Xml.UniqueId" /> value into a <see langword="char" /> array.</summary>
714       <param name="chars">The <see langword="char" /> array.</param>
715       <param name="offset">Position in the <see langword="char" /> array to start inserting the <see cref="T:System.Xml.UniqueId" /> value.</param>
716       <returns>Number of entries in the <see langword="char" /> array filled by the <see cref="T:System.Xml.UniqueId" /> value.</returns>
717       <exception cref="T:System.ArgumentNullException">
718         <paramref name="chars" /> is <see langword="null" />.</exception>
719       <exception cref="T:System.ArgumentOutOfRangeException">
720         <paramref name="offset" /> less than zero or greater than the length of the array.</exception>
721       <exception cref="T:System.ArgumentException">
722         <paramref name="guid" /> and <paramref name="offset" /> provide less than 16 valid bytes.</exception>
723     </member>
724     <member name="M:System.Xml.UniqueId.ToString">
725       <summary>Displays the <see cref="T:System.Xml.UniqueId" /> value in string format.</summary>
726       <returns>A string representation of the <see cref="T:System.Xml.UniqueId" /> value.</returns>
727     </member>
728     <member name="M:System.Xml.UniqueId.TryGetGuid(System.Byte[],System.Int32)">
729       <summary>Tries to get the value of the <see cref="T:System.Xml.UniqueId" /> as a <see cref="T:System.Guid" /> and store it in the given byte array at the specified offset.</summary>
730       <param name="buffer">
731         <see langword="byte" /> array that will contain the <see cref="T:System.Guid" />.</param>
732       <param name="offset">Position in the <see langword="byte" /> array to start inserting the <see cref="T:System.Guid" /> value.</param>
733       <returns>
734         <see langword="true" /> if the value stored in this instance of <see cref="T:System.Xml.UniqueId" /> is a <see cref="T:System.Guid" />; otherwise <see langword="false" />.</returns>
735       <exception cref="T:System.ArgumentNullException">
736         <paramref name="buffer" /> is <see langword="null" />.</exception>
737       <exception cref="T:System.ArgumentOutOfRangeException">
738         <paramref name="offset" /> less than zero or greater than the length of the array.</exception>
739       <exception cref="T:System.ArgumentException">
740         <paramref name="buffer" /> and <paramref name="offset" /> provide less than 16 valid bytes.</exception>
741     </member>
742     <member name="M:System.Xml.UniqueId.TryGetGuid(System.Guid@)">
743       <summary>Tries to get the value of the <see cref="T:System.Xml.UniqueId" /> as a <see cref="T:System.Guid" />.</summary>
744       <param name="guid">The <see cref="T:System.Guid" /> if successful; otherwise <see cref="F:System.Guid.Empty" />.</param>
745       <returns>
746         <see langword="true" /> if the UniqueId represents a <see cref="T:System.Guid" />; otherwise <see langword="false" />.</returns>
747       <exception cref="T:System.ArgumentNullException">
748         <paramref name="buffer" /> is <see langword="null" />.</exception>
749       <exception cref="T:System.ArgumentException">
750         <paramref name="buffer" /> and <paramref name="offset" /> provide less than 16 valid bytes.</exception>
751     </member>
752     <member name="T:System.Xml.XmlBinaryReaderSession">
753       <summary>Enables optimized strings to be managed in a dynamic way.</summary>
754     </member>
755     <member name="M:System.Xml.XmlBinaryReaderSession.#ctor">
756       <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlBinaryReaderSession" /> class.</summary>
757     </member>
758     <member name="M:System.Xml.XmlBinaryReaderSession.Add(System.Int32,System.String)">
759       <summary>Creates an <see cref="T:System.Xml.XmlDictionaryString" /> from the input parameters and adds it to an internal collection.</summary>
760       <param name="id">The key value.</param>
761       <param name="value">The value.</param>
762       <returns>The newly created <see cref="T:System.Xml.XmlDictionaryString" /> that is added to an internal collection.</returns>
763       <exception cref="T:System.ArgumentOutOfRangeException">
764         <paramref name="id" /> is less than zero.</exception>
765       <exception cref="T:System.ArgumentNullException">
766         <paramref name="value" /> is <see langword="null" />.</exception>
767       <exception cref="T:System.InvalidOperationException">An entry with key = <paramref name="id" /> already exists.</exception>
768     </member>
769     <member name="M:System.Xml.XmlBinaryReaderSession.Clear">
770       <summary>Clears the internal collection of all contents.</summary>
771     </member>
772     <member name="M:System.Xml.XmlBinaryReaderSession.TryLookup(System.Int32,System.Xml.XmlDictionaryString@)">
773       <summary>Checks whether the internal collection contains an entry matching a key.</summary>
774       <param name="key">The key to search on.</param>
775       <param name="result">When this method returns, contains a string if an entry is found; otherwise, <see langword="null" />. This parameter is passed uninitialized.</param>
776       <returns>
777         <see langword="true" /> if an entry matching the <paramref name="key" /> was found; otherwise, <see langword="false" />.</returns>
778       <exception cref="T:System.ArgumentNullException">
779         <paramref name="key" /> is <see langword="null" />.</exception>
780     </member>
781     <member name="M:System.Xml.XmlBinaryReaderSession.TryLookup(System.String,System.Xml.XmlDictionaryString@)">
782       <summary>Checks whether the internal collection contains an entry matching a value.</summary>
783       <param name="value">The value to search for.</param>
784       <param name="result">When this method returns, contains a string if an entry is found; otherwise, <see langword="null" />. This parameter is passed uninitialized.</param>
785       <returns>
786         <see langword="true" /> if an entry matching the <paramref name="value" /> was found; otherwise, <see langword="false" />.</returns>
787       <exception cref="T:System.ArgumentNullException">
788         <paramref name="value" /> is <see langword="null" />.</exception>
789     </member>
790     <member name="M:System.Xml.XmlBinaryReaderSession.TryLookup(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString@)">
791       <summary>Checks whether the internal collection contains an entry matching a value.</summary>
792       <param name="value">The value to search for.</param>
793       <param name="result">When this method returns, contains a string if an entry is found; otherwise, <see langword="null" />. This parameter is passed uninitialized.</param>
794       <returns>
795         <see langword="true" /> if an entry matching the <paramref name="value" /> was found; otherwise, <see langword="false" />.</returns>
796       <exception cref="T:System.ArgumentNullException">
797         <paramref name="value" /> is <see langword="null" />.</exception>
798     </member>
799     <member name="T:System.Xml.XmlBinaryWriterSession">
800       <summary>Enables using a dynamic dictionary to compress common strings that appear in a message and maintain state.</summary>
801     </member>
802     <member name="M:System.Xml.XmlBinaryWriterSession.#ctor">
803       <summary>Creates an instance of this class.</summary>
804     </member>
805     <member name="M:System.Xml.XmlBinaryWriterSession.Reset">
806       <summary>Clears out the internal collections.</summary>
807     </member>
808     <member name="M:System.Xml.XmlBinaryWriterSession.TryAdd(System.Xml.XmlDictionaryString,System.Int32@)">
809       <summary>Tries to add an <see cref="T:System.Xml.XmlDictionaryString" /> to the internal collection.</summary>
810       <param name="value">The <see cref="T:System.Xml.XmlDictionaryString" /> to add.</param>
811       <param name="key">The key of the <see cref="T:System.Xml.XmlDictionaryString" /> that was successfully added.</param>
812       <returns>
813         <see langword="true" /> if the string could be added; otherwise, <see langword="false" />.</returns>
814       <exception cref="T:System.ArgumentNullException">
815         <paramref name="value" /> is <see langword="null" />.</exception>
816       <exception cref="T:System.InvalidOperationException">An entry with key = <paramref name="key" /> already exists.</exception>
817     </member>
818     <member name="T:System.Xml.XmlDictionary">
819       <summary>Implements a dictionary used to optimize Windows Communication Foundation (WCF)'s XML reader/writer implementations.</summary>
820     </member>
821     <member name="M:System.Xml.XmlDictionary.#ctor">
822       <summary>Creates an empty <see cref="T:System.Xml.XmlDictionary" />.</summary>
823     </member>
824     <member name="M:System.Xml.XmlDictionary.#ctor(System.Int32)">
825       <summary>Creates a <see cref="T:System.Xml.XmlDictionary" /> with an initial capacity.</summary>
826       <param name="capacity">The initial size of the dictionary.</param>
827     </member>
828     <member name="M:System.Xml.XmlDictionary.Add(System.String)">
829       <summary>Adds a string to the <see cref="T:System.Xml.XmlDictionary" />.</summary>
830       <param name="value">String to add to the dictionary.</param>
831       <returns>The <see cref="T:System.Xml.XmlDictionaryString" /> that was added.</returns>
832     </member>
833     <member name="P:System.Xml.XmlDictionary.Empty">
834       <summary>Gets a <see langword="static" /> empty <see cref="T:System.Xml.IXmlDictionary" />.</summary>
835       <returns>A <see langword="static" /> empty <see cref="T:System.Xml.IXmlDictionary" />.</returns>
836     </member>
837     <member name="M:System.Xml.XmlDictionary.TryLookup(System.Int32,System.Xml.XmlDictionaryString@)">
838       <summary>Attempts to look up an entry in the dictionary.</summary>
839       <param name="key">Key to look up.</param>
840       <param name="result">If <paramref name="key" /> is defined, the <see cref="T:System.Xml.XmlDictionaryString" /> that is mapped to the key; otherwise <see langword="null" />.</param>
841       <returns>
842         <see langword="true" /> if key is in the dictionary; otherwise, <see langword="false" />.</returns>
843     </member>
844     <member name="M:System.Xml.XmlDictionary.TryLookup(System.String,System.Xml.XmlDictionaryString@)">
845       <summary>Checks the dictionary for a specified string value.</summary>
846       <param name="value">String value being checked for.</param>
847       <param name="result">The corresponding <see cref="T:System.Xml.XmlDictionaryString" />, if found; otherwise <see langword="null" />.</param>
848       <returns>
849         <see langword="true" /> if value is in the dictionary; otherwise, <see langword="false" />.</returns>
850       <exception cref="T:System.ArgumentNullException">
851         <paramref name="value" /> is <see langword="null" />.</exception>
852     </member>
853     <member name="M:System.Xml.XmlDictionary.TryLookup(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString@)">
854       <summary>Checks the dictionary for a specified <see cref="T:System.Xml.XmlDictionaryString" />.</summary>
855       <param name="value">The <see cref="T:System.Xml.XmlDictionaryString" /> being checked for.</param>
856       <param name="result">The matching <see cref="T:System.Xml.XmlDictionaryString" />, if found; otherwise, <see langword="null" />.</param>
857       <returns>
858         <see langword="true" /> if <see cref="T:System.Xml.XmlDictionaryString" /> is in the dictionary; otherwise, <see langword="false" />.</returns>
859       <exception cref="T:System.ArgumentNullException">
860         <paramref name="value" /> is <see langword="null" />.</exception>
861     </member>
862     <member name="T:System.Xml.XmlDictionaryReader">
863       <summary>An <see langword="abstract" /> class that the Windows Communication Foundation (WCF) derives from <see cref="T:System.Xml.XmlReader" /> to do serialization and deserialization.</summary>
864     </member>
865     <member name="M:System.Xml.XmlDictionaryReader.#ctor">
866       <summary>Creates an instance of this class.  Invoked only by its derived classes.</summary>
867     </member>
868     <member name="P:System.Xml.XmlDictionaryReader.CanCanonicalize">
869       <summary>This property always returns <see langword="false" />. Its derived classes can override to return <see langword="true" /> if they support canonicalization.</summary>
870       <returns>Returns <see langword="false" />.</returns>
871     </member>
872     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.Byte[],System.Int32,System.Int32,System.Xml.IXmlDictionary,System.Xml.XmlDictionaryReaderQuotas)">
873       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
874       <param name="buffer">The buffer from which to read.</param>
875       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
876       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
877       <param name="dictionary">
878         <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
879       <param name="quotas">The quotas that apply to this operation.</param>
880       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
881       <exception cref="T:System.ArgumentNullException">
882         <paramref name="buffer" /> is <see langword="null" />.
883 -or-
884 <paramref name="offset" /> is less than zero or greater than the buffer length.</exception>
885       <exception cref="T:System.ArgumentOutOfRangeException">
886         <paramref name="count" /> is less than zero or greater than the buffer length minus the offset.</exception>
887     </member>
888     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.Byte[],System.Int32,System.Int32,System.Xml.IXmlDictionary,System.Xml.XmlDictionaryReaderQuotas,System.Xml.XmlBinaryReaderSession)">
889       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
890       <param name="buffer">The buffer from which to read.</param>
891       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
892       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
893       <param name="dictionary">The <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
894       <param name="quotas">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
895       <param name="session">The <see cref="T:System.Xml.XmlBinaryReaderSession" /> to use.</param>
896       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
897       <exception cref="T:System.ArgumentNullException">
898         <paramref name="buffer" /> is <see langword="null" />.</exception>
899       <exception cref="T:System.ArgumentOutOfRangeException">
900         <paramref name="count" /> is less than zero or greater than the buffer length minus the offset.
901 -or-
902 <paramref name="offset" /> is less than zero or greater than the buffer length.</exception>
903     </member>
904     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.Byte[],System.Int32,System.Int32,System.Xml.IXmlDictionary,System.Xml.XmlDictionaryReaderQuotas,System.Xml.XmlBinaryReaderSession,System.Xml.OnXmlDictionaryReaderClose)">
905       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
906       <param name="buffer">The buffer from which to read.</param>
907       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
908       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
909       <param name="dictionary">The <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
910       <param name="quotas">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
911       <param name="session">The <see cref="T:System.Xml.XmlBinaryReaderSession" /> to use.</param>
912       <param name="onClose">Delegate to be called when the reader is closed.</param>
913       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
914       <exception cref="T:System.ArgumentNullException">
915         <paramref name="buffer" /> is <see langword="null" />.</exception>
916       <exception cref="T:System.ArgumentOutOfRangeException">
917         <paramref name="count" /> is less than zero or greater than the buffer length minus the offset.
918 -or-
919 <paramref name="offset" /> is less than zero or greater than the buffer length.</exception>
920     </member>
921     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.Byte[],System.Int32,System.Int32,System.Xml.XmlDictionaryReaderQuotas)">
922       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
923       <param name="buffer">The buffer from which to read.</param>
924       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
925       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
926       <param name="quotas">The quotas that apply to this operation.</param>
927       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
928       <exception cref="T:System.ArgumentNullException">
929         <paramref name="buffer" /> is <see langword="null" />.</exception>
930       <exception cref="T:System.ArgumentOutOfRangeException">
931         <paramref name="count" /> is less than zero or greater than the buffer length minus the offset.
932 -or-
933 <paramref name="offset" /> is less than zero or greater than the buffer length.</exception>
934     </member>
935     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.Byte[],System.Xml.XmlDictionaryReaderQuotas)">
936       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
937       <param name="buffer">The buffer from which to read.</param>
938       <param name="quotas">The quotas that apply to this operation.</param>
939       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
940       <exception cref="T:System.ArgumentNullException">
941         <paramref name="buffer" /> is <see langword="null" />.</exception>
942     </member>
943     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.IO.Stream,System.Xml.IXmlDictionary,System.Xml.XmlDictionaryReaderQuotas)">
944       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
945       <param name="stream">The stream from which to read.</param>
946       <param name="dictionary">
947         <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
948       <param name="quotas">The quotas that apply to this operation.</param>
949       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
950       <exception cref="T:System.ArgumentNullException">
951         <paramref name="stream" /> or <paramref name="quotas" /> is <see langword="null" />.</exception>
952     </member>
953     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.IO.Stream,System.Xml.IXmlDictionary,System.Xml.XmlDictionaryReaderQuotas,System.Xml.XmlBinaryReaderSession)">
954       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
955       <param name="stream">The stream from which to read.</param>
956       <param name="dictionary">
957         <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
958       <param name="quotas">The quotas that apply to this operation.</param>
959       <param name="session">
960         <see cref="T:System.Xml.XmlBinaryReaderSession" /> to use.</param>
961       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
962       <exception cref="T:System.ArgumentNullException">
963         <paramref name="stream" /> is <see langword="null" />.</exception>
964     </member>
965     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.IO.Stream,System.Xml.IXmlDictionary,System.Xml.XmlDictionaryReaderQuotas,System.Xml.XmlBinaryReaderSession,System.Xml.OnXmlDictionaryReaderClose)">
966       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
967       <param name="stream">The stream from which to read.</param>
968       <param name="dictionary">
969         <see cref="T:System.Xml.XmlDictionary" /> to use.</param>
970       <param name="quotas">
971         <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
972       <param name="session">
973         <see cref="T:System.Xml.XmlBinaryReaderSession" /> to use.</param>
974       <param name="onClose">Delegate to be called when the reader is closed.</param>
975       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
976       <exception cref="T:System.ArgumentNullException">
977         <paramref name="stream" /> is <see langword="null" />.</exception>
978     </member>
979     <member name="M:System.Xml.XmlDictionaryReader.CreateBinaryReader(System.IO.Stream,System.Xml.XmlDictionaryReaderQuotas)">
980       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that can read .NET Binary XML Format.</summary>
981       <param name="stream">The stream from which to read.</param>
982       <param name="quotas">The quotas that apply to this operation.</param>
983       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
984       <exception cref="T:System.ArgumentNullException">
985         <paramref name="stream" /> is <see langword="null" />.</exception>
986     </member>
987     <member name="M:System.Xml.XmlDictionaryReader.CreateDictionaryReader(System.Xml.XmlReader)">
988       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> from an existing <see cref="T:System.Xml.XmlReader" />.</summary>
989       <param name="reader">An instance of <see cref="T:System.Xml.XmlReader" />.</param>
990       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
991       <exception cref="T:System.ArgumentNullException">
992         <paramref name="reader" /> is <see langword="null" />.</exception>
993     </member>
994     <member name="M:System.Xml.XmlDictionaryReader.CreateMtomReader(System.Byte[],System.Int32,System.Int32,System.Text.Encoding,System.Xml.XmlDictionaryReaderQuotas)">
995       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that reads XML in the MTOM format.</summary>
996       <param name="buffer">The buffer from which to read.</param>
997       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
998       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
999       <param name="encoding">The possible character encoding of the input.</param>
1000       <param name="quotas">The quotas to apply to this reader.</param>
1001       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1002       <exception cref="T:System.ArgumentNullException">
1003         <paramref name="encoding" /> is <see langword="null" />.</exception>
1004     </member>
1005     <member name="M:System.Xml.XmlDictionaryReader.CreateMtomReader(System.Byte[],System.Int32,System.Int32,System.Text.Encoding[],System.String,System.Xml.XmlDictionaryReaderQuotas)">
1006       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that reads XML in the MTOM format.</summary>
1007       <param name="buffer">The buffer from which to read.</param>
1008       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
1009       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
1010       <param name="encodings">The possible character encodings of the input.</param>
1011       <param name="contentType">The Content-Type MIME type of the message.</param>
1012       <param name="quotas">The quotas to apply to this reader.</param>
1013       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1014     </member>
1015     <member name="M:System.Xml.XmlDictionaryReader.CreateMtomReader(System.Byte[],System.Int32,System.Int32,System.Text.Encoding[],System.String,System.Xml.XmlDictionaryReaderQuotas,System.Int32,System.Xml.OnXmlDictionaryReaderClose)">
1016       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that reads XML in the MTOM format.</summary>
1017       <param name="buffer">The buffer from which to read.</param>
1018       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
1019       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
1020       <param name="encodings">The possible character encodings of the input.</param>
1021       <param name="contentType">The Content-Type MIME type of the message.</param>
1022       <param name="quotas">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply to the reader.</param>
1023       <param name="maxBufferSize">The maximum allowed size of the buffer.</param>
1024       <param name="onClose">The delegate to be called when the reader is closed.</param>
1025       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1026     </member>
1027     <member name="M:System.Xml.XmlDictionaryReader.CreateMtomReader(System.Byte[],System.Int32,System.Int32,System.Text.Encoding[],System.Xml.XmlDictionaryReaderQuotas)">
1028       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that reads XML in the MTOM format.</summary>
1029       <param name="buffer">The buffer from which to read.</param>
1030       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
1031       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
1032       <param name="encodings">The possible character encodings of the input.</param>
1033       <param name="quotas">The quotas to apply to this reader.</param>
1034       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1035     </member>
1036     <member name="M:System.Xml.XmlDictionaryReader.CreateMtomReader(System.IO.Stream,System.Text.Encoding,System.Xml.XmlDictionaryReaderQuotas)">
1037       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that reads XML in the MTOM format.</summary>
1038       <param name="stream">The stream from which to read.</param>
1039       <param name="encoding">The possible character encoding of the stream.</param>
1040       <param name="quotas">The quotas to apply to this reader.</param>
1041       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1042       <exception cref="T:System.ArgumentNullException">
1043         <paramref name="encoding" /> is <see langword="null" />.</exception>
1044     </member>
1045     <member name="M:System.Xml.XmlDictionaryReader.CreateMtomReader(System.IO.Stream,System.Text.Encoding[],System.String,System.Xml.XmlDictionaryReaderQuotas)">
1046       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that reads XML in the MTOM format.</summary>
1047       <param name="stream">The stream from which to read.</param>
1048       <param name="encodings">The possible character encodings of the stream.</param>
1049       <param name="contentType">The Content-Type MIME type of the message.</param>
1050       <param name="quotas">The quotas to apply to this reader.</param>
1051       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1052     </member>
1053     <member name="M:System.Xml.XmlDictionaryReader.CreateMtomReader(System.IO.Stream,System.Text.Encoding[],System.String,System.Xml.XmlDictionaryReaderQuotas,System.Int32,System.Xml.OnXmlDictionaryReaderClose)">
1054       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that reads XML in the MTOM format.</summary>
1055       <param name="stream">The stream from which to read.</param>
1056       <param name="encodings">The possible character encodings of the stream.</param>
1057       <param name="contentType">The Content-Type MIME type of the message.</param>
1058       <param name="quotas">The MIME type of the message.</param>
1059       <param name="maxBufferSize">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply to the reader.</param>
1060       <param name="onClose">The delegate to be called when the reader is closed.</param>
1061       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1062     </member>
1063     <member name="M:System.Xml.XmlDictionaryReader.CreateMtomReader(System.IO.Stream,System.Text.Encoding[],System.Xml.XmlDictionaryReaderQuotas)">
1064       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" /> that reads XML in the MTOM format.</summary>
1065       <param name="stream">The stream from which to read.</param>
1066       <param name="encodings">The possible character encodings of the stream.</param>
1067       <param name="quotas">The quotas to apply to this reader.</param>
1068       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1069       <exception cref="T:System.ArgumentNullException">
1070         <paramref name="encoding" /> is <see langword="null" />.</exception>
1071     </member>
1072     <member name="M:System.Xml.XmlDictionaryReader.CreateTextReader(System.Byte[],System.Int32,System.Int32,System.Text.Encoding,System.Xml.XmlDictionaryReaderQuotas,System.Xml.OnXmlDictionaryReaderClose)">
1073       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</summary>
1074       <param name="buffer">The buffer from which to read.</param>
1075       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
1076       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
1077       <param name="encoding">The <see cref="T:System.Text.Encoding" /> object that specifies the encoding properties to apply.</param>
1078       <param name="quotas">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
1079       <param name="onClose">The delegate to be called when the reader is closed.</param>
1080       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1081     </member>
1082     <member name="M:System.Xml.XmlDictionaryReader.CreateTextReader(System.Byte[],System.Int32,System.Int32,System.Xml.XmlDictionaryReaderQuotas)">
1083       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</summary>
1084       <param name="buffer">The buffer from which to read.</param>
1085       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
1086       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
1087       <param name="quotas">The quotas applied to the reader.</param>
1088       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1089     </member>
1090     <member name="M:System.Xml.XmlDictionaryReader.CreateTextReader(System.Byte[],System.Xml.XmlDictionaryReaderQuotas)">
1091       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</summary>
1092       <param name="buffer">The buffer from which to read.</param>
1093       <param name="quotas">The quotas applied to the reader.</param>
1094       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1095       <exception cref="T:System.ArgumentNullException">
1096         <paramref name="buffer" /> is <see langword="null" />.</exception>
1097     </member>
1098     <member name="M:System.Xml.XmlDictionaryReader.CreateTextReader(System.IO.Stream,System.Text.Encoding,System.Xml.XmlDictionaryReaderQuotas,System.Xml.OnXmlDictionaryReaderClose)">
1099       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</summary>
1100       <param name="stream">The stream from which to read.</param>
1101       <param name="encoding">The <see cref="T:System.Text.Encoding" /> object that specifies the encoding properties to apply.</param>
1102       <param name="quotas">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> to apply.</param>
1103       <param name="onClose">The delegate to be called when the reader is closed.</param>
1104       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1105     </member>
1106     <member name="M:System.Xml.XmlDictionaryReader.CreateTextReader(System.IO.Stream,System.Xml.XmlDictionaryReaderQuotas)">
1107       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</summary>
1108       <param name="stream">The stream from which to read.</param>
1109       <param name="quotas">The quotas applied to the reader.</param>
1110       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReader" />.</returns>
1111     </member>
1112     <member name="M:System.Xml.XmlDictionaryReader.EndCanonicalization">
1113       <summary>This method is not yet implemented.</summary>
1114       <exception cref="T:System.NotSupportedException">Always.</exception>
1115     </member>
1116     <member name="M:System.Xml.XmlDictionaryReader.GetAttribute(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1117       <summary>When overridden in a derived class, gets the value of an attribute.</summary>
1118       <param name="localName">An <see cref="T:System.Xml.XmlDictionaryString" /> that represents the local name of the attribute.</param>
1119       <param name="namespaceUri">An <see cref="T:System.Xml.XmlDictionaryString" /> that represents the namespace of the attribute.</param>
1120       <returns>The value of the attribute.</returns>
1121     </member>
1122     <member name="M:System.Xml.XmlDictionaryReader.GetNonAtomizedNames(System.String@,System.String@)">
1123       <summary>Gets non-atomized names.</summary>
1124       <param name="localName">The local name.</param>
1125       <param name="namespaceUri">The namespace for the local <paramref name="localName" />.</param>
1126     </member>
1127     <member name="M:System.Xml.XmlDictionaryReader.IndexOfLocalName(System.String[],System.String)">
1128       <summary>Gets the index of the local name of the current node within an array of names.</summary>
1129       <param name="localNames">The string array of local names to be searched.</param>
1130       <param name="namespaceUri">The namespace of current node.</param>
1131       <returns>The index of the local name of the current node within an array of names.</returns>
1132       <exception cref="T:System.ArgumentNullException">
1133         <paramref name="localNames" /> or any of the names in the array is <see langword="null" />.
1134 -or-
1135 <paramref name="namespaceUri" /> is <see langword="null" />.</exception>
1136     </member>
1137     <member name="M:System.Xml.XmlDictionaryReader.IndexOfLocalName(System.Xml.XmlDictionaryString[],System.Xml.XmlDictionaryString)">
1138       <summary>Gets the index of the local name of the current node within an array of names.</summary>
1139       <param name="localNames">The <see cref="T:System.Xml.XmlDictionaryString" /> array of local names to be searched.</param>
1140       <param name="namespaceUri">The namespace of current node.</param>
1141       <returns>The index of the local name of the current node within an array of names.</returns>
1142       <exception cref="T:System.ArgumentNullException">
1143         <paramref name="localNames" /> or any of the names in the array is <see langword="null" />.
1144 -or-
1145 <paramref name="namespaceUri" /> is <see langword="null" />.</exception>
1146     </member>
1147     <member name="M:System.Xml.XmlDictionaryReader.IsLocalName(System.String)">
1148       <summary>Checks whether the parameter, <paramref name="localName" />, is the local name of the current node.</summary>
1149       <param name="localName">The local name of the current node.</param>
1150       <returns>
1151         <see langword="true" /> if <paramref name="localName" /> matches local name of the current node; otherwise <see langword="false" />.</returns>
1152     </member>
1153     <member name="M:System.Xml.XmlDictionaryReader.IsLocalName(System.Xml.XmlDictionaryString)">
1154       <summary>Checks whether the parameter, <paramref name="localName" />, is the local name of the current node.</summary>
1155       <param name="localName">An <see cref="T:System.Xml.XmlDictionaryString" /> that represents the local name of the current node.</param>
1156       <returns>
1157         <see langword="true" /> if <paramref name="localName" /> matches local name of the current node; otherwise <see langword="false" />.</returns>
1158       <exception cref="T:System.ArgumentNullException">
1159         <paramref name="localName" /> is <see langword="null" />.</exception>
1160     </member>
1161     <member name="M:System.Xml.XmlDictionaryReader.IsNamespaceUri(System.String)">
1162       <summary>Checks whether the parameter, <paramref name="namespaceUri" />, is the namespace of the current node.</summary>
1163       <param name="namespaceUri">The namespace of current node.</param>
1164       <returns>
1165         <see langword="true" /> if <paramref name="namespaceUri" /> matches namespace of the current node; otherwise <see langword="false" />.</returns>
1166       <exception cref="T:System.ArgumentNullException">
1167         <paramref name="namespaceUri" /> is <see langword="null" />.</exception>
1168     </member>
1169     <member name="M:System.Xml.XmlDictionaryReader.IsNamespaceUri(System.Xml.XmlDictionaryString)">
1170       <summary>Checks whether the parameter, <paramref name="namespaceUri" />, is the namespace of the current node.</summary>
1171       <param name="namespaceUri">Namespace of current node.</param>
1172       <returns>
1173         <see langword="true" /> if <paramref name="namespaceUri" /> matches namespace of the current node; otherwise <see langword="false" />.</returns>
1174       <exception cref="T:System.ArgumentNullException">
1175         <paramref name="namespaceUri" /> is <see langword="null" />.</exception>
1176     </member>
1177     <member name="M:System.Xml.XmlDictionaryReader.IsStartArray(System.Type@)">
1178       <summary>Checks whether the reader is positioned at the start of an array. This class returns <see langword="false" />, but derived classes that have the concept of arrays might return <see langword="true" />.</summary>
1179       <param name="type">Type of the node, if a valid node; otherwise <see langword="null" />.</param>
1180       <returns>
1181         <see langword="true" /> if the reader is positioned at the start of an array node; otherwise <see langword="false" />.</returns>
1182     </member>
1183     <member name="M:System.Xml.XmlDictionaryReader.IsStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1184       <summary>Tests whether the first tag is a start tag or empty element tag and if the local name and namespace URI match those of the current node.</summary>
1185       <param name="localName">An <see cref="T:System.Xml.XmlDictionaryString" /> that represents the local name of the attribute.</param>
1186       <param name="namespaceUri">An <see cref="T:System.Xml.XmlDictionaryString" /> that represents the namespace of the attribute.</param>
1187       <returns>
1188         <see langword="true" /> if the first tag in the array is a start tag or empty element tag and matches <paramref name="localName" /> and <paramref name="namespaceUri" />; otherwise <see langword="false" />.</returns>
1189     </member>
1190     <member name="M:System.Xml.XmlDictionaryReader.IsTextNode(System.Xml.XmlNodeType)">
1191       <summary>Tests whether the current node is a text node.</summary>
1192       <param name="nodeType">Type of the node being tested.</param>
1193       <returns>
1194         <see langword="true" /> if the node type is <see cref="F:System.Xml.XmlNodeType.Text" />, <see cref="F:System.Xml.XmlNodeType.Whitespace" />, <see cref="F:System.Xml.XmlNodeType.SignificantWhitespace" />, <see cref="F:System.Xml.XmlNodeType.CDATA" />, or <see cref="F:System.Xml.XmlNodeType.Attribute" />; otherwise <see langword="false" />.</returns>
1195     </member>
1196     <member name="M:System.Xml.XmlDictionaryReader.MoveToStartElement">
1197       <summary>Tests whether the current content node is a start element or an empty element.</summary>
1198     </member>
1199     <member name="M:System.Xml.XmlDictionaryReader.MoveToStartElement(System.String)">
1200       <summary>Tests whether the current content node is a start element or an empty element and if the <see cref="P:System.Xml.XmlReader.Name" /> property of the element matches the given argument.</summary>
1201       <param name="name">The <see cref="P:System.Xml.XmlReader.Name" /> property of the element.</param>
1202     </member>
1203     <member name="M:System.Xml.XmlDictionaryReader.MoveToStartElement(System.String,System.String)">
1204       <summary>Tests whether the current content node is a start element or an empty element and if the <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties of the element matches the given arguments.</summary>
1205       <param name="localName">The local name of the element.</param>
1206       <param name="namespaceUri">The namespace URI of the element.</param>
1207     </member>
1208     <member name="M:System.Xml.XmlDictionaryReader.MoveToStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1209       <summary>Tests whether the current content node is a start element or an empty element and if the <see cref="P:System.Xml.XmlReader.LocalName" /> and <see cref="P:System.Xml.XmlReader.NamespaceURI" /> properties of the element matches the given argument.</summary>
1210       <param name="localName">The local name of the element.</param>
1211       <param name="namespaceUri">The namespace URI of the element.</param>
1212     </member>
1213     <member name="P:System.Xml.XmlDictionaryReader.Quotas">
1214       <summary>Gets the quota values that apply to the current instance of this class.</summary>
1215       <returns>The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> that applies to the current instance of this class.</returns>
1216     </member>
1217     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.Boolean[],System.Int32,System.Int32)">
1218       <summary>Reads repeated occurrences of <see cref="T:System.Boolean" /> nodes into a typed array.</summary>
1219       <param name="localName">The local name of the element.</param>
1220       <param name="namespaceUri">The local name of the element.</param>
1221       <param name="array">The array into which the nodes are put.</param>
1222       <param name="offset">The starting index in the array.</param>
1223       <param name="count">The number of nodes to put in the array.</param>
1224       <returns>The number of nodes put in the array.</returns>
1225       <exception cref="T:System.ArgumentNullException">
1226         <paramref name="array" /> is <see langword="null" />.</exception>
1227       <exception cref="T:System.ArgumentOutOfRangeException">
1228         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1229 -or-
1230 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1231     </member>
1232     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.DateTime[],System.Int32,System.Int32)">
1233       <summary>Reads repeated occurrences of <see cref="T:System.DateTime" /> nodes into a typed array.</summary>
1234       <param name="localName">The local name of the element.</param>
1235       <param name="namespaceUri">The namespace URI of the element.</param>
1236       <param name="array">The array into which the nodes are put.</param>
1237       <param name="offset">The starting index in the array.</param>
1238       <param name="count">The number of nodes to put in the array.</param>
1239       <returns>The number of nodes put in the array.</returns>
1240       <exception cref="T:System.ArgumentNullException">
1241         <paramref name="array" /> is <see langword="null" />.</exception>
1242       <exception cref="T:System.ArgumentOutOfRangeException">
1243         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1244 -or-
1245 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1246     </member>
1247     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.Decimal[],System.Int32,System.Int32)">
1248       <summary>Reads repeated occurrences of <see cref="T:System.Decimal" /> nodes into a typed array.</summary>
1249       <param name="localName">The local name of the element.</param>
1250       <param name="namespaceUri">The namespace URI of the element.</param>
1251       <param name="array">The array into which the nodes are put.</param>
1252       <param name="offset">The starting index in the array.</param>
1253       <param name="count">The number of nodes to put in the array.</param>
1254       <returns>The number of nodes put in the array.</returns>
1255       <exception cref="T:System.ArgumentNullException">
1256         <paramref name="array" /> is <see langword="null" />.</exception>
1257       <exception cref="T:System.ArgumentOutOfRangeException">
1258         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1259 -or-
1260 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1261     </member>
1262     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.Double[],System.Int32,System.Int32)">
1263       <summary>Reads repeated occurrences of <see cref="T:System.Double" /> nodes into a typed array.</summary>
1264       <param name="localName">The local name of the element.</param>
1265       <param name="namespaceUri">The namespace URI of the element.</param>
1266       <param name="array">The array into which the nodes are put.</param>
1267       <param name="offset">The starting index in the array.</param>
1268       <param name="count">The number of nodes to put in the array.</param>
1269       <returns>The number of nodes put in the array.</returns>
1270       <exception cref="T:System.ArgumentNullException">
1271         <paramref name="array" /> is <see langword="null" />.</exception>
1272       <exception cref="T:System.ArgumentOutOfRangeException">
1273         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1274 -or-
1275 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1276     </member>
1277     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.Guid[],System.Int32,System.Int32)">
1278       <summary>Reads repeated occurrences of <see cref="T:System.Guid" /> nodes into a typed array.</summary>
1279       <param name="localName">The local name of the element.</param>
1280       <param name="namespaceUri">The namespace URI of the element.</param>
1281       <param name="array">The array into which the nodes are put.</param>
1282       <param name="offset">The starting index in the array.</param>
1283       <param name="count">The number of nodes to put in the array.</param>
1284       <returns>The number of nodes put in the array.</returns>
1285       <exception cref="T:System.ArgumentNullException">
1286         <paramref name="array" /> is <see langword="null" />.</exception>
1287       <exception cref="T:System.ArgumentOutOfRangeException">
1288         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1289 -or-
1290 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1291     </member>
1292     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.Int16[],System.Int32,System.Int32)">
1293       <summary>Reads repeated occurrences of <see langword="short" /> integers into a typed array.</summary>
1294       <param name="localName">The local name of the element.</param>
1295       <param name="namespaceUri">The namespace URI of the element.</param>
1296       <param name="array">The array into which the integers are put.</param>
1297       <param name="offset">The starting index in the array.</param>
1298       <param name="count">The number of integers to put in the array.</param>
1299       <returns>The number of integers put in the array.</returns>
1300       <exception cref="T:System.ArgumentNullException">
1301         <paramref name="array" /> is <see langword="null" />.</exception>
1302       <exception cref="T:System.ArgumentOutOfRangeException">
1303         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1304 -or-
1305 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1306     </member>
1307     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.Int32[],System.Int32,System.Int32)">
1308       <summary>Reads repeated occurrences of integers into a typed array.</summary>
1309       <param name="localName">The local name of the element.</param>
1310       <param name="namespaceUri">The namespace URI of the element.</param>
1311       <param name="array">The array into which the integers are put.</param>
1312       <param name="offset">The starting index in the array.</param>
1313       <param name="count">The number of integers to put in the array.</param>
1314       <returns>The number of integers put in the array.</returns>
1315       <exception cref="T:System.ArgumentNullException">
1316         <paramref name="array" /> is <see langword="null" />.</exception>
1317       <exception cref="T:System.ArgumentOutOfRangeException">
1318         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1319 -or-
1320 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1321     </member>
1322     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.Int64[],System.Int32,System.Int32)">
1323       <summary>Reads repeated occurrences of <see langword="long" /> integers into a typed array.</summary>
1324       <param name="localName">The local name of the element.</param>
1325       <param name="namespaceUri">The namespace URI of the element.</param>
1326       <param name="array">The array into which the integers are put.</param>
1327       <param name="offset">The starting index in the array.</param>
1328       <param name="count">The number of integers to put in the array.</param>
1329       <returns>The number of integers put in the array.</returns>
1330       <exception cref="T:System.ArgumentNullException">
1331         <paramref name="array" /> is <see langword="null" />.</exception>
1332       <exception cref="T:System.ArgumentOutOfRangeException">
1333         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1334 -or-
1335 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1336     </member>
1337     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.Single[],System.Int32,System.Int32)">
1338       <summary>Reads repeated occurrences of <see langword="float" /> numbers into a typed array.</summary>
1339       <param name="localName">The local name of the element.</param>
1340       <param name="namespaceUri">The namespace URI of the element.</param>
1341       <param name="array">The array into which the float numbers are put.</param>
1342       <param name="offset">The starting index in the array.</param>
1343       <param name="count">The number of float numbers to put in the array.</param>
1344       <returns>The umber of float numbers put in the array.</returns>
1345       <exception cref="T:System.ArgumentNullException">
1346         <paramref name="array" /> is <see langword="null" />.</exception>
1347       <exception cref="T:System.ArgumentOutOfRangeException">
1348         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1349 -or-
1350 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1351     </member>
1352     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.String,System.String,System.TimeSpan[],System.Int32,System.Int32)">
1353       <summary>Reads repeated occurrences of <see cref="T:System.TimeSpan" /> nodes into a typed array.</summary>
1354       <param name="localName">The local name of the element.</param>
1355       <param name="namespaceUri">The namespace URI of the element.</param>
1356       <param name="array">The array into which the nodes are put.</param>
1357       <param name="offset">The starting index in the array.</param>
1358       <param name="count">The number of nodes to put in the array.</param>
1359       <returns>The number of nodes put in the array.</returns>
1360       <exception cref="T:System.ArgumentNullException">
1361         <paramref name="array" /> is <see langword="null" />.</exception>
1362       <exception cref="T:System.ArgumentOutOfRangeException">
1363         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1364 -or-
1365 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1366     </member>
1367     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Boolean[],System.Int32,System.Int32)">
1368       <summary>Reads repeated occurrences of <see cref="T:System.Boolean" /> nodes into a typed array.</summary>
1369       <param name="localName">The local name of the element.</param>
1370       <param name="namespaceUri">The namespace URI of the element.</param>
1371       <param name="array">The array into which the nodes are put.</param>
1372       <param name="offset">The starting index in the array.</param>
1373       <param name="count">The number of nodes to put in the array.</param>
1374       <returns>The number of nodes put in the array.</returns>
1375       <exception cref="T:System.ArgumentNullException">
1376         <paramref name="array" /> is <see langword="null" />.</exception>
1377       <exception cref="T:System.ArgumentOutOfRangeException">
1378         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1379 -or-
1380 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1381     </member>
1382     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.DateTime[],System.Int32,System.Int32)">
1383       <summary>Reads repeated occurrences of <see cref="T:System.DateTime" /> nodes into a typed array.</summary>
1384       <param name="localName">The local name of the element.</param>
1385       <param name="namespaceUri">The namespace URI of the element.</param>
1386       <param name="array">The array into which the nodes are put.</param>
1387       <param name="offset">The starting index in the array.</param>
1388       <param name="count">The number of nodes to put in the array.</param>
1389       <returns>The number of nodes put in the array.</returns>
1390       <exception cref="T:System.ArgumentNullException">
1391         <paramref name="array" /> is <see langword="null" />.</exception>
1392       <exception cref="T:System.ArgumentOutOfRangeException">
1393         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1394 -or-
1395 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1396     </member>
1397     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Decimal[],System.Int32,System.Int32)">
1398       <summary>Reads repeated occurrences of <see cref="T:System.Decimal" /> nodes into a typed array.</summary>
1399       <param name="localName">The local name of the element.</param>
1400       <param name="namespaceUri">The namespace URI of the element.</param>
1401       <param name="array">The array into which the nodes are put.</param>
1402       <param name="offset">The starting index in the array.</param>
1403       <param name="count">The number of nodes to put in the array.</param>
1404       <returns>The number of nodes put in the array.</returns>
1405       <exception cref="T:System.ArgumentNullException">
1406         <paramref name="array" /> is <see langword="null" />.</exception>
1407       <exception cref="T:System.ArgumentOutOfRangeException">
1408         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1409 -or-
1410 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1411     </member>
1412     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Double[],System.Int32,System.Int32)">
1413       <summary>Reads repeated occurrences of <see cref="T:System.Double" /> nodes type into a typed array.</summary>
1414       <param name="localName">The local name of the element.</param>
1415       <param name="namespaceUri">The namespace URI of the element.</param>
1416       <param name="array">The array into which the nodes are put.</param>
1417       <param name="offset">The starting index in the array.</param>
1418       <param name="count">The number of nodes to put in the array.</param>
1419       <returns>The number of nodes put in the array.</returns>
1420       <exception cref="T:System.ArgumentNullException">
1421         <paramref name="array" /> is <see langword="null" />.</exception>
1422       <exception cref="T:System.ArgumentOutOfRangeException">
1423         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1424 -or-
1425 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1426     </member>
1427     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Guid[],System.Int32,System.Int32)">
1428       <summary>Reads repeated occurrences of <see cref="T:System.Guid" /> nodes into a typed array.</summary>
1429       <param name="localName">The local name of the element.</param>
1430       <param name="namespaceUri">The namespace URI of the element.</param>
1431       <param name="array">The array into which the nodes are put.</param>
1432       <param name="offset">The starting index in the array.</param>
1433       <param name="count">The number of nodes to put in the array.</param>
1434       <returns>The number of nodes put in the array.</returns>
1435       <exception cref="T:System.ArgumentNullException">
1436         <paramref name="array" /> is <see langword="null" />.</exception>
1437       <exception cref="T:System.ArgumentOutOfRangeException">
1438         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1439 -or-
1440 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1441     </member>
1442     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Int16[],System.Int32,System.Int32)">
1443       <summary>Reads repeated occurrences of <see langword="short" /> integers into a typed array.</summary>
1444       <param name="localName">The local name of the element.</param>
1445       <param name="namespaceUri">The namespace URI of the element.</param>
1446       <param name="array">The array into which the integers are put.</param>
1447       <param name="offset">The starting index in the array.</param>
1448       <param name="count">The number of integers to put in the array.</param>
1449       <returns>The number of integers put in the array.</returns>
1450       <exception cref="T:System.ArgumentNullException">
1451         <paramref name="array" /> is <see langword="null" />.</exception>
1452       <exception cref="T:System.ArgumentOutOfRangeException">
1453         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1454 -or-
1455 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1456     </member>
1457     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Int32[],System.Int32,System.Int32)">
1458       <summary>Reads repeated occurrences of integers into a typed array.</summary>
1459       <param name="localName">The local name of the element.</param>
1460       <param name="namespaceUri">The namespace URI of the element.</param>
1461       <param name="array">The array into which the integers are put.</param>
1462       <param name="offset">The starting index in the array.</param>
1463       <param name="count">The number of integers to put in the array.</param>
1464       <returns>The number of integers put in the array.</returns>
1465       <exception cref="T:System.ArgumentNullException">
1466         <paramref name="array" /> is <see langword="null" />.</exception>
1467       <exception cref="T:System.ArgumentOutOfRangeException">
1468         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1469 -or-
1470 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1471     </member>
1472     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Int64[],System.Int32,System.Int32)">
1473       <summary>Reads repeated occurrences of <see langword="long" /> integers into a typed array.</summary>
1474       <param name="localName">The local name of the element.</param>
1475       <param name="namespaceUri">The namespace URI of the element.</param>
1476       <param name="array">The array into which the integers are put.</param>
1477       <param name="offset">The starting index in the array.</param>
1478       <param name="count">The number of integers to put in the array.</param>
1479       <returns>The number of integers put in the array.</returns>
1480       <exception cref="T:System.ArgumentNullException">
1481         <paramref name="array" /> is <see langword="null" />.</exception>
1482       <exception cref="T:System.ArgumentOutOfRangeException">
1483         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1484 -or-
1485 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1486     </member>
1487     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Single[],System.Int32,System.Int32)">
1488       <summary>Reads repeated occurrences of <see langword="float" /> numbers into a typed array.</summary>
1489       <param name="localName">The local name of the element.</param>
1490       <param name="namespaceUri">The namespace URI of the element.</param>
1491       <param name="array">The array into which the float numbers are put.</param>
1492       <param name="offset">The starting index in the array.</param>
1493       <param name="count">The number of float numbers to put in the array.</param>
1494       <returns>The number of float numbers put in the array.</returns>
1495       <exception cref="T:System.ArgumentNullException">
1496         <paramref name="array" /> is <see langword="null" />.</exception>
1497       <exception cref="T:System.ArgumentOutOfRangeException">
1498         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1499 -or-
1500 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1501     </member>
1502     <member name="M:System.Xml.XmlDictionaryReader.ReadArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.TimeSpan[],System.Int32,System.Int32)">
1503       <summary>Reads repeated occurrences of <see cref="T:System.TimeSpan" /> nodes into a typed array.</summary>
1504       <param name="localName">The local name of the element.</param>
1505       <param name="namespaceUri">The namespace URI of the element.</param>
1506       <param name="array">The array into which the nodes are put.</param>
1507       <param name="offset">The starting index in the array.</param>
1508       <param name="count">The number of nodes to put in the array.</param>
1509       <returns>The number of nodes put in the array.</returns>
1510       <exception cref="T:System.ArgumentNullException">
1511         <paramref name="array" /> is <see langword="null" />.</exception>
1512       <exception cref="T:System.ArgumentOutOfRangeException">
1513         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
1514 -or-
1515 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
1516     </member>
1517     <member name="M:System.Xml.XmlDictionaryReader.ReadBooleanArray(System.String,System.String)">
1518       <summary>Reads repeated occurrences of <see cref="T:System.Boolean" /> nodes into a typed array.</summary>
1519       <param name="localName">The local name of the element.</param>
1520       <param name="namespaceUri">The namespace URI of the element.</param>
1521       <returns>A <see cref="T:System.Boolean" /> array of the <see cref="T:System.Boolean" /> nodes.</returns>
1522     </member>
1523     <member name="M:System.Xml.XmlDictionaryReader.ReadBooleanArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1524       <summary>Reads repeated occurrences of <see cref="T:System.Boolean" /> nodes into a typed array.</summary>
1525       <param name="localName">The local name of the element.</param>
1526       <param name="namespaceUri">The namespace URI of the element.</param>
1527       <returns>A <see cref="T:System.Boolean" /> array of the <see cref="T:System.Boolean" /> nodes.</returns>
1528     </member>
1529     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAs(System.Type,System.Xml.IXmlNamespaceResolver)">
1530       <summary>Converts a node's content to a specified type.</summary>
1531       <param name="type">The <see cref="T:System.Type" /> of the value to be returned.</param>
1532       <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 a null reference.</param>
1533       <returns>The concatenated text content or attribute value converted to the requested type.</returns>
1534     </member>
1535     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsBase64">
1536       <summary>Reads the content and returns the Base64 decoded binary bytes.</summary>
1537       <returns>A byte array that contains the Base64 decoded binary bytes.</returns>
1538       <exception cref="T:System.Xml.XmlException">The array size is greater than the MaxArrayLength quota for this reader.</exception>
1539     </member>
1540     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsBinHex">
1541       <summary>Reads the content and returns the <see langword="BinHex" /> decoded binary bytes.</summary>
1542       <returns>A byte array that contains the <see langword="BinHex" /> decoded binary bytes.</returns>
1543       <exception cref="T:System.Xml.XmlException">The array size is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1544     </member>
1545     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsBinHex(System.Int32)">
1546       <summary>Reads the content and returns the <see langword="BinHex" /> decoded binary bytes.</summary>
1547       <param name="maxByteArrayContentLength">The maximum array length.</param>
1548       <returns>A byte array that contains the <see langword="BinHex" /> decoded binary bytes.</returns>
1549       <exception cref="T:System.Xml.XmlException">The array size is greater than <paramref name="maxByteArrayContentLength" />.</exception>
1550     </member>
1551     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsChars(System.Char[],System.Int32,System.Int32)">
1552       <summary>Reads the content into a <see langword="char" /> array.</summary>
1553       <param name="chars">The array into which the characters are put.</param>
1554       <param name="offset">The starting index in the array.</param>
1555       <param name="count">The number of characters to put in the array.</param>
1556       <returns>Number of characters read.</returns>
1557     </member>
1558     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsDecimal">
1559       <summary>Converts a node's content to <see langword="decimal" />.</summary>
1560       <returns>The <see langword="decimal" /> representation of node's content.</returns>
1561     </member>
1562     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsFloat">
1563       <summary>Converts a node's content to <see langword="float" />.</summary>
1564       <returns>The <see langword="float" /> representation of node's content.</returns>
1565     </member>
1566     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsGuid">
1567       <summary>Converts a node's content to <see langword="guid" />.</summary>
1568       <returns>The <see langword="guid" /> representation of node's content.</returns>
1569     </member>
1570     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsQualifiedName(System.String@,System.String@)">
1571       <summary>Converts a node's content to a qualified name representation.</summary>
1572       <param name="localName">The <see cref="P:System.Xml.XmlReader.LocalName" /> part of the qualified name (<see langword="out" /> parameter).</param>
1573       <param name="namespaceUri">The <see cref="P:System.Xml.XmlReader.NamespaceURI" /> part of the qualified name (<see langword="out" /> parameter).</param>
1574     </member>
1575     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsString">
1576       <summary>Converts a node's content to a string.</summary>
1577       <returns>The node content in a string representation.</returns>
1578     </member>
1579     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsString(System.Int32)">
1580       <summary>Converts a node's content to a string.</summary>
1581       <param name="maxStringContentLength">The maximum string length.</param>
1582       <returns>Node content in string representation.</returns>
1583     </member>
1584     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsString(System.String[],System.Int32@)">
1585       <summary>Converts a node's content to a string.</summary>
1586       <param name="strings">The array of strings to match content against.</param>
1587       <param name="index">The index of the entry in <paramref name="strings" /> that matches the content.</param>
1588       <returns>The node content in a string representation.</returns>
1589       <exception cref="T:System.ArgumentNullException">
1590         <paramref name="strings" /> is <see langword="null" />.
1591 -or-
1592 An entry in <paramref name="strings" /> is <see langword="null" />.</exception>
1593     </member>
1594     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsString(System.Xml.XmlDictionaryString[],System.Int32@)">
1595       <summary>Converts a node's content to a string.</summary>
1596       <param name="strings">The array of <see cref="T:System.Xml.XmlDictionaryString" /> objects to match content against.</param>
1597       <param name="index">The index of the entry in <paramref name="strings" /> that matches the content.</param>
1598       <returns>The node content in a string representation.</returns>
1599       <exception cref="T:System.ArgumentNullException">
1600         <paramref name="strings" /> is <see langword="null" />.
1601 -or-
1602 An entry in <paramref name="strings" /> is <see langword="null" />.</exception>
1603     </member>
1604     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsTimeSpan">
1605       <summary>Converts a node's content to <see cref="T:System.TimeSpan" />.</summary>
1606       <returns>
1607         <see cref="T:System.TimeSpan" /> representation of node's content.</returns>
1608     </member>
1609     <member name="M:System.Xml.XmlDictionaryReader.ReadContentAsUniqueId">
1610       <summary>Converts a node's content to a unique identifier.</summary>
1611       <returns>The node's content represented as a unique identifier.</returns>
1612     </member>
1613     <member name="M:System.Xml.XmlDictionaryReader.ReadDateTimeArray(System.String,System.String)">
1614       <summary>Converts a node's content to a <see cref="T:System.DateTime" /> array.</summary>
1615       <param name="localName">The local name of the element.</param>
1616       <param name="namespaceUri">The namespace URI of the element.</param>
1617       <returns>The node's content represented as a <see cref="T:System.DateTime" /> array.</returns>
1618     </member>
1619     <member name="M:System.Xml.XmlDictionaryReader.ReadDateTimeArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1620       <summary>Converts a node's content to a <see cref="T:System.DateTime" /> array.</summary>
1621       <param name="localName">The local name of the element.</param>
1622       <param name="namespaceUri">The namespace URI of the element.</param>
1623       <returns>The node's content represented as a <see cref="T:System.DateTime" /> array.</returns>
1624     </member>
1625     <member name="M:System.Xml.XmlDictionaryReader.ReadDecimalArray(System.String,System.String)">
1626       <summary>Converts a node's content to a <see cref="T:System.Decimal" /> array.</summary>
1627       <param name="localName">The local name of the element.</param>
1628       <param name="namespaceUri">The namespace URI of the element.</param>
1629       <returns>The node's content represented as a <see cref="T:System.Decimal" /> array.</returns>
1630     </member>
1631     <member name="M:System.Xml.XmlDictionaryReader.ReadDecimalArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1632       <summary>Converts a node's content to a <see cref="T:System.Decimal" /> array.</summary>
1633       <param name="localName">The local name of the element.</param>
1634       <param name="namespaceUri">The namespace URI of the element.</param>
1635       <returns>The node's content represented as a <see cref="T:System.Decimal" /> array.</returns>
1636     </member>
1637     <member name="M:System.Xml.XmlDictionaryReader.ReadDoubleArray(System.String,System.String)">
1638       <summary>Converts a node's content to a <see cref="T:System.Double" /> array.</summary>
1639       <param name="localName">The local name of the element.</param>
1640       <param name="namespaceUri">The namespace URI of the element.</param>
1641       <returns>The node's content represented as a <see cref="T:System.Double" /> array.</returns>
1642     </member>
1643     <member name="M:System.Xml.XmlDictionaryReader.ReadDoubleArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1644       <summary>Converts a node's content to a <see cref="T:System.Double" /> array.</summary>
1645       <param name="localName">The local name of the element.</param>
1646       <param name="namespaceUri">The namespace URI of the element.</param>
1647       <returns>The node's content represented as a <see cref="T:System.Double" /> array.</returns>
1648     </member>
1649     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsBase64">
1650       <summary>Converts a node's content to a array of Base64 bytes.</summary>
1651       <returns>The node's content represented as an array of Base64 bytes.</returns>
1652     </member>
1653     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsBinHex">
1654       <summary>Converts a node's content to an array of <see langword="BinHex" /> bytes.</summary>
1655       <returns>The node's content represented as an array of <see langword="BinHex" /> bytes.</returns>
1656     </member>
1657     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsBoolean">
1658       <summary>Converts an element's content to a <see cref="T:System.Boolean" />.</summary>
1659       <returns>The node's content represented as a <see cref="T:System.Boolean" />.</returns>
1660     </member>
1661     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsDateTime">
1662       <summary>Converts an element's content to a <see cref="T:System.DateTime" />.</summary>
1663       <returns>The node's content represented as a <see cref="T:System.DateTime" />.</returns>
1664       <exception cref="T:System.ArgumentException">The element is not in valid format.</exception>
1665       <exception cref="T:System.FormatException">The element is not in valid format.</exception>
1666     </member>
1667     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsDecimal">
1668       <summary>Converts an element's content to a <see cref="T:System.Decimal" />.</summary>
1669       <returns>The node's content represented as a <see cref="T:System.Decimal" />.</returns>
1670     </member>
1671     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsDouble">
1672       <summary>Converts an element's content to a <see cref="T:System.Double" />.</summary>
1673       <returns>The node's content represented as a <see cref="T:System.Double" />.</returns>
1674     </member>
1675     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsFloat">
1676       <summary>Converts an element's content to a floating point number (<see cref="T:System.Single" />).</summary>
1677       <returns>The node's content represented as a floating point number (<see cref="T:System.Single" />).</returns>
1678     </member>
1679     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsGuid">
1680       <summary>Converts an element's content to a <see cref="T:System.Guid" />.</summary>
1681       <returns>The node's content represented as a <see cref="T:System.Guid" />.</returns>
1682       <exception cref="T:System.ArgumentException">The element is not in valid format.</exception>
1683       <exception cref="T:System.FormatException">The element is not in valid format.</exception>
1684     </member>
1685     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsInt">
1686       <summary>Converts an element's content to an integer (<see cref="T:System.Int32" />).</summary>
1687       <returns>The node's content represented as an integer (<see cref="T:System.Int32" />).</returns>
1688     </member>
1689     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsLong">
1690       <summary>Converts an element's content to a long integer (<see cref="T:System.Int64" />).</summary>
1691       <returns>The node's content represented as a long integer (<see cref="T:System.Int64" />).</returns>
1692     </member>
1693     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsString">
1694       <summary>Converts an element's content to a <see cref="T:System.String" />.</summary>
1695       <returns>The node's content represented as a <see cref="T:System.String" />.</returns>
1696     </member>
1697     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsTimeSpan">
1698       <summary>Converts an element's content to a <see cref="T:System.TimeSpan" />.</summary>
1699       <returns>The node's content represented as a <see cref="T:System.TimeSpan" />.</returns>
1700     </member>
1701     <member name="M:System.Xml.XmlDictionaryReader.ReadElementContentAsUniqueId">
1702       <summary>Converts an element's content to a unique identifier.</summary>
1703       <returns>The node's content represented as a unique identifier.</returns>
1704       <exception cref="T:System.ArgumentException">The element is not in valid format.</exception>
1705       <exception cref="T:System.FormatException">The element is not in valid format.</exception>
1706     </member>
1707     <member name="M:System.Xml.XmlDictionaryReader.ReadFullStartElement">
1708       <summary>Checks whether the current node is an element and advances the reader to the next node.</summary>
1709       <exception cref="T:System.Xml.XmlException">
1710         <see cref="M:System.Xml.XmlDictionaryReader.IsStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)" /> returns <see langword="false" />.</exception>
1711     </member>
1712     <member name="M:System.Xml.XmlDictionaryReader.ReadFullStartElement(System.String)">
1713       <summary>Checks whether the current node is an element with the given <paramref name="name" /> and advances the reader to the next node.</summary>
1714       <param name="name">The qualified name of the element.</param>
1715       <exception cref="T:System.Xml.XmlException">
1716         <see cref="M:System.Xml.XmlDictionaryReader.IsStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)" /> returns <see langword="false" />.</exception>
1717     </member>
1718     <member name="M:System.Xml.XmlDictionaryReader.ReadFullStartElement(System.String,System.String)">
1719       <summary>Checks whether the current node is an element with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> and advances the reader to the next node.</summary>
1720       <param name="localName">The local name of the element.</param>
1721       <param name="namespaceUri">The namespace URI of the element.</param>
1722       <exception cref="T:System.Xml.XmlException">
1723         <see cref="M:System.Xml.XmlDictionaryReader.IsStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)" /> returns <see langword="false" />.</exception>
1724     </member>
1725     <member name="M:System.Xml.XmlDictionaryReader.ReadFullStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1726       <summary>Checks whether the current node is an element with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> and advances the reader to the next node.</summary>
1727       <param name="localName">The local name of the element.</param>
1728       <param name="namespaceUri">The namespace URI of the element.</param>
1729       <exception cref="T:System.Xml.XmlException">
1730         <see cref="M:System.Xml.XmlDictionaryReader.IsStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)" /> returns <see langword="false" />.</exception>
1731     </member>
1732     <member name="M:System.Xml.XmlDictionaryReader.ReadGuidArray(System.String,System.String)">
1733       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of <see cref="T:System.Guid" />.</summary>
1734       <param name="localName">The local name of the element.</param>
1735       <param name="namespaceUri">The namespace URI of the element.</param>
1736       <returns>An array of <see cref="T:System.Guid" />.</returns>
1737     </member>
1738     <member name="M:System.Xml.XmlDictionaryReader.ReadGuidArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1739       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of <see cref="T:System.Guid" />.</summary>
1740       <param name="localName">The local name of the element.</param>
1741       <param name="namespaceUri">The namespace URI of the element.</param>
1742       <returns>An array of <see cref="T:System.Guid" />.</returns>
1743     </member>
1744     <member name="M:System.Xml.XmlDictionaryReader.ReadInt16Array(System.String,System.String)">
1745       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of <see langword="short" /> integers (<see cref="T:System.Int16" />).</summary>
1746       <param name="localName">The local name of the element.</param>
1747       <param name="namespaceUri">The namespace URI of the element.</param>
1748       <returns>An array of <see langword="short" /> integers (<see cref="T:System.Int16" />).</returns>
1749     </member>
1750     <member name="M:System.Xml.XmlDictionaryReader.ReadInt16Array(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1751       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of <see langword="short" /> integers (<see cref="T:System.Int16" />).</summary>
1752       <param name="localName">The local name of the element.</param>
1753       <param name="namespaceUri">The namespace URI of the element.</param>
1754       <returns>An array of <see langword="short" /> integers (<see cref="T:System.Int16" />).</returns>
1755     </member>
1756     <member name="M:System.Xml.XmlDictionaryReader.ReadInt32Array(System.String,System.String)">
1757       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of integers (<see cref="T:System.Int32" />).</summary>
1758       <param name="localName">The local name of the element.</param>
1759       <param name="namespaceUri">The namespace URI of the element.</param>
1760       <returns>An array of integers (<see cref="T:System.Int32" />).</returns>
1761     </member>
1762     <member name="M:System.Xml.XmlDictionaryReader.ReadInt32Array(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1763       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of integers (<see cref="T:System.Int32" />).</summary>
1764       <param name="localName">The local name of the element.</param>
1765       <param name="namespaceUri">The namespace URI of the element.</param>
1766       <returns>An array of integers (<see cref="T:System.Int32" />).</returns>
1767     </member>
1768     <member name="M:System.Xml.XmlDictionaryReader.ReadInt64Array(System.String,System.String)">
1769       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of <see langword="long" /> integers (<see cref="T:System.Int64" />).</summary>
1770       <param name="localName">The local name of the element.</param>
1771       <param name="namespaceUri">The namespace URI of the element.</param>
1772       <returns>An array of <see langword="long" /> integers (<see cref="T:System.Int64" />).</returns>
1773     </member>
1774     <member name="M:System.Xml.XmlDictionaryReader.ReadInt64Array(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1775       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of <see langword="long" /> integers (<see cref="T:System.Int64" />).</summary>
1776       <param name="localName">The local name of the element.</param>
1777       <param name="namespaceUri">The namespace URI of the element.</param>
1778       <returns>An array of <see langword="long" /> integers (<see cref="T:System.Int64" />).</returns>
1779     </member>
1780     <member name="M:System.Xml.XmlDictionaryReader.ReadSingleArray(System.String,System.String)">
1781       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of <see langword="float" /> numbers (<see cref="T:System.Single" />).</summary>
1782       <param name="localName">The local name of the element.</param>
1783       <param name="namespaceUri">The namespace URI of the element.</param>
1784       <returns>An array of <see langword="float" /> numbers (<see cref="T:System.Single" />).</returns>
1785     </member>
1786     <member name="M:System.Xml.XmlDictionaryReader.ReadSingleArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1787       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into an array of <see langword="float" /> numbers (<see cref="T:System.Single" />).</summary>
1788       <param name="localName">The local name of the element.</param>
1789       <param name="namespaceUri">The namespace URI of the element.</param>
1790       <returns>An array of <see langword="float" /> numbers (<see cref="T:System.Single" />).</returns>
1791     </member>
1792     <member name="M:System.Xml.XmlDictionaryReader.ReadStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1793       <summary>Checks whether the current node is an element with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> and advances the reader to the next node.</summary>
1794       <param name="localName">The local name of the element.</param>
1795       <param name="namespaceUri">The namespace URI of the element.</param>
1796     </member>
1797     <member name="M:System.Xml.XmlDictionaryReader.ReadString">
1798       <summary>Reads the contents of the current node into a string.</summary>
1799       <returns>A string that contains the contents of the current node.</returns>
1800       <exception cref="T:System.InvalidOperationException">Unable to read the contents of the current node.</exception>
1801       <exception cref="T:System.Xml.XmlException">Maximum allowed string length exceeded.</exception>
1802     </member>
1803     <member name="M:System.Xml.XmlDictionaryReader.ReadString(System.Int32)">
1804       <summary>Reads the contents of the current node into a string with a given maximum length.</summary>
1805       <param name="maxStringContentLength">Maximum allowed string length.</param>
1806       <returns>A string that contains the contents of the current node.</returns>
1807       <exception cref="T:System.InvalidOperationException">Unable to read the contents of the current node.</exception>
1808       <exception cref="T:System.Xml.XmlException">Maximum allowed string length exceeded.</exception>
1809     </member>
1810     <member name="M:System.Xml.XmlDictionaryReader.ReadTimeSpanArray(System.String,System.String)">
1811       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into a <see cref="T:System.TimeSpan" /> array.</summary>
1812       <param name="localName">The local name of the element.</param>
1813       <param name="namespaceUri">The namespace URI of the element.</param>
1814       <returns>A <see cref="T:System.TimeSpan" /> array.</returns>
1815     </member>
1816     <member name="M:System.Xml.XmlDictionaryReader.ReadTimeSpanArray(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
1817       <summary>Reads the contents of a series of nodes with the given <paramref name="localName" /> and <paramref name="namespaceUri" /> into a <see cref="T:System.TimeSpan" /> array.</summary>
1818       <param name="localName">The local name of the element.</param>
1819       <param name="namespaceUri">The namespace URI of the element.</param>
1820       <returns>A <see cref="T:System.TimeSpan" /> array.</returns>
1821     </member>
1822     <member name="M:System.Xml.XmlDictionaryReader.ReadValueAsBase64(System.Byte[],System.Int32,System.Int32)">
1823       <summary>Not implemented.</summary>
1824       <param name="buffer">The buffer from which to read.</param>
1825       <param name="offset">The starting position from which to read in <paramref name="buffer" />.</param>
1826       <param name="count">The number of bytes that can be read from <paramref name="buffer" />.</param>
1827       <returns>Not implemented.</returns>
1828       <exception cref="T:System.NotSupportedException">Always.</exception>
1829     </member>
1830     <member name="M:System.Xml.XmlDictionaryReader.StartCanonicalization(System.IO.Stream,System.Boolean,System.String[])">
1831       <summary>This method is not yet implemented.</summary>
1832       <param name="stream">The stream to read from.</param>
1833       <param name="includeComments">Determines whether comments are included.</param>
1834       <param name="inclusivePrefixes">The prefixes to be included.</param>
1835       <exception cref="T:System.NotSupportedException">Always.</exception>
1836     </member>
1837     <member name="M:System.Xml.XmlDictionaryReader.TryGetArrayLength(System.Int32@)">
1838       <summary>Not implemented in this class (it always returns <see langword="false" />). May be overridden in derived classes.</summary>
1839       <param name="count">Returns 0, unless overridden in a derived class.</param>
1840       <returns>
1841         <see langword="false" />, unless overridden in a derived class.</returns>
1842     </member>
1843     <member name="M:System.Xml.XmlDictionaryReader.TryGetBase64ContentLength(System.Int32@)">
1844       <summary>Not implemented in this class (it always returns <see langword="false" />). May be overridden in derived classes.</summary>
1845       <param name="length">Returns 0, unless overridden in a derived class.</param>
1846       <returns>
1847         <see langword="false" />, unless overridden in a derived class.</returns>
1848     </member>
1849     <member name="M:System.Xml.XmlDictionaryReader.TryGetLocalNameAsDictionaryString(System.Xml.XmlDictionaryString@)">
1850       <summary>Not implemented in this class (it always returns <see langword="false" />). May be overridden in derived classes.</summary>
1851       <param name="localName">Returns <see langword="null" />, unless overridden in a derived class. .</param>
1852       <returns>
1853         <see langword="false" />, unless overridden in a derived class.</returns>
1854     </member>
1855     <member name="M:System.Xml.XmlDictionaryReader.TryGetNamespaceUriAsDictionaryString(System.Xml.XmlDictionaryString@)">
1856       <summary>Not implemented in this class (it always returns <see langword="false" />). May be overridden in derived classes.</summary>
1857       <param name="namespaceUri">Returns <see langword="null" />, unless overridden in a derived class.</param>
1858       <returns>
1859         <see langword="false" />, unless overridden in a derived class.</returns>
1860     </member>
1861     <member name="M:System.Xml.XmlDictionaryReader.TryGetValueAsDictionaryString(System.Xml.XmlDictionaryString@)">
1862       <summary>Not implemented in this class (it always returns <see langword="false" />). May be overridden in derived classes.</summary>
1863       <param name="value">Returns <see langword="null" />, unless overridden in a derived class.</param>
1864       <returns>
1865         <see langword="false" />, unless overridden in a derived class.</returns>
1866     </member>
1867     <member name="T:System.Xml.XmlDictionaryReaderQuotas">
1868       <summary>Contains configurable quota values for XmlDictionaryReaders.</summary>
1869     </member>
1870     <member name="M:System.Xml.XmlDictionaryReaderQuotas.#ctor">
1871       <summary>Creates a new instance of this class.</summary>
1872     </member>
1873     <member name="M:System.Xml.XmlDictionaryReaderQuotas.CopyTo(System.Xml.XmlDictionaryReaderQuotas)">
1874       <summary>Sets the properties on a passed-in quotas instance, based on the values in this instance.</summary>
1875       <param name="quotas">The <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> instance to which to copy values.</param>
1876       <exception cref="T:System.InvalidOperationException">Trying to <see langword="set" /> the value, but quota values are read-only for the passed in instance.</exception>
1877       <exception cref="T:System.ArgumentNullException">Passed in target <paramref name="quotas" /> is <see langword="null" />.</exception>
1878     </member>
1879     <member name="P:System.Xml.XmlDictionaryReaderQuotas.Max">
1880       <summary>Gets an instance of this class with all properties set to maximum values.</summary>
1881       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryReaderQuotas" /> with properties set to <see cref="F:System.Int32.MaxValue" />.</returns>
1882     </member>
1883     <member name="P:System.Xml.XmlDictionaryReaderQuotas.MaxArrayLength">
1884       <summary>Gets or sets the maximum allowed array length.</summary>
1885       <returns>The maximum allowed array length. The default is 16384.</returns>
1886       <exception cref="T:System.InvalidOperationException">Trying to <see langword="set" /> the value, but quota values are read-only for this instance.</exception>
1887       <exception cref="T:System.ArgumentException">Trying to <see langword="set" /> the value to less than zero.</exception>
1888     </member>
1889     <member name="P:System.Xml.XmlDictionaryReaderQuotas.MaxBytesPerRead">
1890       <summary>Gets or sets the maximum allowed bytes returned for each read.</summary>
1891       <returns>The maximum allowed bytes returned for each read. The default is 4096.</returns>
1892       <exception cref="T:System.InvalidOperationException">Trying to <see langword="set" /> the value, but quota values are read-only for this instance.</exception>
1893       <exception cref="T:System.ArgumentException">Trying to <see langword="set" /> the value to less than zero.</exception>
1894     </member>
1895     <member name="P:System.Xml.XmlDictionaryReaderQuotas.MaxDepth">
1896       <summary>Gets or sets the maximum nested node depth.</summary>
1897       <returns>The maximum nested node depth. The default is 32;</returns>
1898       <exception cref="T:System.InvalidOperationException">Trying to <see langword="set" /> the value and quota values are read-only for this instance.</exception>
1899       <exception cref="T:System.ArgumentException">Trying to <see langword="set" /> the value is less than zero.</exception>
1900     </member>
1901     <member name="P:System.Xml.XmlDictionaryReaderQuotas.MaxNameTableCharCount">
1902       <summary>Gets or sets the maximum characters allowed in a table name.</summary>
1903       <returns>The maximum characters allowed in a table name. The default is 16384.</returns>
1904       <exception cref="T:System.InvalidOperationException">Trying to <see langword="set" /> the value, but quota values are read-only for this instance.</exception>
1905       <exception cref="T:System.ArgumentException">Trying to <see langword="set" /> the value to less than zero.</exception>
1906     </member>
1907     <member name="P:System.Xml.XmlDictionaryReaderQuotas.MaxStringContentLength">
1908       <summary>Gets or sets the maximum string length returned by the reader.</summary>
1909       <returns>The maximum string length returned by the reader. The default is 8192.</returns>
1910       <exception cref="T:System.InvalidOperationException">Trying to <see langword="set" /> the value, but quota values are read-only for this instance.</exception>
1911       <exception cref="T:System.ArgumentException">Trying to <see langword="set" /> the value to less than zero.</exception>
1912     </member>
1913     <member name="P:System.Xml.XmlDictionaryReaderQuotas.ModifiedQuotas">
1914       <summary>Gets the modified quotas for the <see cref="T:System.Xml.XmlDictionaryReaderQuotas" />.</summary>
1915       <returns>The modified quotas for the <see cref="T:System.Xml.XmlDictionaryReaderQuotas" />.</returns>
1916     </member>
1917     <member name="T:System.Xml.XmlDictionaryReaderQuotaTypes">
1918       <summary>Enumerates the configurable quota values for XmlDictionaryReaders.</summary>
1919     </member>
1920     <member name="F:System.Xml.XmlDictionaryReaderQuotaTypes.MaxArrayLength">
1921       <summary>Specifies the maximum allowed array length.</summary>
1922     </member>
1923     <member name="F:System.Xml.XmlDictionaryReaderQuotaTypes.MaxBytesPerRead">
1924       <summary>Specifies the maximum allowed bytes returned for each read.</summary>
1925     </member>
1926     <member name="F:System.Xml.XmlDictionaryReaderQuotaTypes.MaxDepth">
1927       <summary>Specifies the maximum nested node depth.</summary>
1928     </member>
1929     <member name="F:System.Xml.XmlDictionaryReaderQuotaTypes.MaxNameTableCharCount">
1930       <summary>Specifies the maximum characters allowed in a table name.</summary>
1931     </member>
1932     <member name="F:System.Xml.XmlDictionaryReaderQuotaTypes.MaxStringContentLength">
1933       <summary>Specifies the maximum string length returned by the reader.</summary>
1934     </member>
1935     <member name="T:System.Xml.XmlDictionaryString">
1936       <summary>Represents an entry stored in a <see cref="T:System.Xml.XmlDictionary" />.</summary>
1937     </member>
1938     <member name="M:System.Xml.XmlDictionaryString.#ctor(System.Xml.IXmlDictionary,System.String,System.Int32)">
1939       <summary>Creates an instance of this class.</summary>
1940       <param name="dictionary">The <see cref="T:System.Xml.IXmlDictionary" /> containing this instance.</param>
1941       <param name="value">The string that is the value of the dictionary entry.</param>
1942       <param name="key">The integer that is the key of the dictionary entry.</param>
1943       <exception cref="T:System.ArgumentNullException">
1944         <paramref name="dictionary" /> or <paramref name="value" /> is <see langword="null" />.</exception>
1945       <exception cref="T:System.ArgumentOutOfRangeException">
1946         <paramref name="key" /> is less than 0 or greater than <see cref="F:System.Int32.MaxValue" /> / 4.</exception>
1947     </member>
1948     <member name="P:System.Xml.XmlDictionaryString.Dictionary">
1949       <summary>Represents the <see cref="T:System.Xml.IXmlDictionary" /> passed to the constructor of this instance of <see cref="T:System.Xml.XmlDictionaryString" />.</summary>
1950       <returns>The <see cref="T:System.Xml.IXmlDictionary" /> for this dictionary entry.</returns>
1951     </member>
1952     <member name="P:System.Xml.XmlDictionaryString.Empty">
1953       <summary>Gets an <see cref="T:System.Xml.XmlDictionaryString" /> representing the empty string.</summary>
1954       <returns>An <see cref="T:System.Xml.XmlDictionaryString" /> representing the empty string.</returns>
1955     </member>
1956     <member name="P:System.Xml.XmlDictionaryString.Key">
1957       <summary>Gets the integer key for this instance of the class.</summary>
1958       <returns>The integer key for this instance of the class.</returns>
1959     </member>
1960     <member name="M:System.Xml.XmlDictionaryString.ToString">
1961       <summary>Displays a text representation of this object.</summary>
1962       <returns>The string value for this instance of the class.</returns>
1963     </member>
1964     <member name="P:System.Xml.XmlDictionaryString.Value">
1965       <summary>Gets the string value for this instance of the class.</summary>
1966       <returns>The string value for this instance of the class.</returns>
1967     </member>
1968     <member name="T:System.Xml.XmlDictionaryWriter">
1969       <summary>Represents an abstract class that Windows Communication Foundation (WCF) derives from <see cref="T:System.Xml.XmlWriter" /> to do serialization and deserialization.</summary>
1970     </member>
1971     <member name="M:System.Xml.XmlDictionaryWriter.#ctor">
1972       <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDictionaryWriter" /> class.</summary>
1973     </member>
1974     <member name="P:System.Xml.XmlDictionaryWriter.CanCanonicalize">
1975       <summary>This property always returns <see langword="false" />. Its derived classes can override to return <see langword="true" /> if they support canonicalization.</summary>
1976       <returns>
1977         <see langword="false" /> in all cases.</returns>
1978     </member>
1979     <member name="M:System.Xml.XmlDictionaryWriter.CreateBinaryWriter(System.IO.Stream)">
1980       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes WCF binary XML format.</summary>
1981       <param name="stream">The stream to write to.</param>
1982       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
1983     </member>
1984     <member name="M:System.Xml.XmlDictionaryWriter.CreateBinaryWriter(System.IO.Stream,System.Xml.IXmlDictionary)">
1985       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes WCF binary XML format.</summary>
1986       <param name="stream">The stream to write to.</param>
1987       <param name="dictionary">The <see cref="T:System.Xml.XmlDictionary" /> to use as the shared dictionary.</param>
1988       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
1989     </member>
1990     <member name="M:System.Xml.XmlDictionaryWriter.CreateBinaryWriter(System.IO.Stream,System.Xml.IXmlDictionary,System.Xml.XmlBinaryWriterSession)">
1991       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes WCF binary XML format.</summary>
1992       <param name="stream">The stream to write to.</param>
1993       <param name="dictionary">The <see cref="T:System.Xml.XmlDictionary" /> to use as the shared dictionary.</param>
1994       <param name="session">The <see cref="T:System.Xml.XmlBinaryWriterSession" /> to use.</param>
1995       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
1996     </member>
1997     <member name="M:System.Xml.XmlDictionaryWriter.CreateBinaryWriter(System.IO.Stream,System.Xml.IXmlDictionary,System.Xml.XmlBinaryWriterSession,System.Boolean)">
1998       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes WCF binary XML format.</summary>
1999       <param name="stream">The stream from which to read.</param>
2000       <param name="dictionary">The <see cref="T:System.Xml.XmlDictionary" /> to use as the shared dictionary.</param>
2001       <param name="session">The <see cref="T:System.Xml.XmlBinaryWriterSession" /> to use.</param>
2002       <param name="ownsStream">
2003         <see langword="true" /> to indicate that the stream is closed by the writer when done; otherwise <see langword="false" />.</param>
2004       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
2005     </member>
2006     <member name="M:System.Xml.XmlDictionaryWriter.CreateDictionaryWriter(System.Xml.XmlWriter)">
2007       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> from an existing <see cref="T:System.Xml.XmlWriter" />.</summary>
2008       <param name="writer">An instance of <see cref="T:System.Xml.XmlWriter" />.</param>
2009       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
2010       <exception cref="T:System.ArgumentNullException">
2011         <paramref name="writer" /> is <see langword="null" />.</exception>
2012     </member>
2013     <member name="M:System.Xml.XmlDictionaryWriter.CreateMtomWriter(System.IO.Stream,System.Text.Encoding,System.Int32,System.String)">
2014       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes XML in the MTOM format.</summary>
2015       <param name="stream">The stream to write to.</param>
2016       <param name="encoding">The character encoding of the stream.</param>
2017       <param name="maxSizeInBytes">The maximum number of bytes that are buffered in the writer.</param>
2018       <param name="startInfo">An attribute in the ContentType SOAP header.</param>
2019       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
2020     </member>
2021     <member name="M:System.Xml.XmlDictionaryWriter.CreateMtomWriter(System.IO.Stream,System.Text.Encoding,System.Int32,System.String,System.String,System.String,System.Boolean,System.Boolean)">
2022       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes XML in the MTOM format.</summary>
2023       <param name="stream">The stream to write to.</param>
2024       <param name="encoding">The character encoding of the stream.</param>
2025       <param name="maxSizeInBytes">The maximum number of bytes that are buffered in the writer.</param>
2026       <param name="startInfo">The content-type of the MIME part that contains the Infoset.</param>
2027       <param name="boundary">The MIME boundary in the message.</param>
2028       <param name="startUri">The content-id URI of the MIME part that contains the Infoset.</param>
2029       <param name="writeMessageHeaders">
2030         <see langword="true" /> to write message headers.</param>
2031       <param name="ownsStream">
2032         <see langword="true" /> to indicate that the stream is closed by the writer when done; otherwise <see langword="false" />.</param>
2033       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
2034     </member>
2035     <member name="M:System.Xml.XmlDictionaryWriter.CreateTextWriter(System.IO.Stream)">
2036       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes text XML.</summary>
2037       <param name="stream">The stream to write to.</param>
2038       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
2039     </member>
2040     <member name="M:System.Xml.XmlDictionaryWriter.CreateTextWriter(System.IO.Stream,System.Text.Encoding)">
2041       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes text XML.</summary>
2042       <param name="stream">The stream to write to.</param>
2043       <param name="encoding">The character encoding of the output.</param>
2044       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
2045     </member>
2046     <member name="M:System.Xml.XmlDictionaryWriter.CreateTextWriter(System.IO.Stream,System.Text.Encoding,System.Boolean)">
2047       <summary>Creates an instance of <see cref="T:System.Xml.XmlDictionaryWriter" /> that writes text XML.</summary>
2048       <param name="stream">The stream to write to.</param>
2049       <param name="encoding">The character encoding of the stream.</param>
2050       <param name="ownsStream">
2051         <see langword="true" /> to indicate that the stream is closed by the writer when done; otherwise <see langword="false" />.</param>
2052       <returns>An instance of <see cref="T:System.Xml.XmlDictionaryWriter" />.</returns>
2053     </member>
2054     <member name="M:System.Xml.XmlDictionaryWriter.EndCanonicalization">
2055       <summary>When implemented by a derived class, it stops the canonicalization started by the matching <see cref="M:System.Xml.XmlDictionaryWriter.StartCanonicalization(System.IO.Stream,System.Boolean,System.String[])" /> call.</summary>
2056       <exception cref="T:System.NotSupportedException">Method is not implemented yet.</exception>
2057     </member>
2058     <member name="M:System.Xml.XmlDictionaryWriter.StartCanonicalization(System.IO.Stream,System.Boolean,System.String[])">
2059       <summary>When implemented by a derived class, it starts the canonicalization.</summary>
2060       <param name="stream">The stream to write to.</param>
2061       <param name="includeComments">
2062         <see langword="true" /> to include comments; otherwise, <see langword="false" />.</param>
2063       <param name="inclusivePrefixes">The prefixes to be included.</param>
2064       <exception cref="T:System.NotSupportedException">Method is not implemented yet.</exception>
2065     </member>
2066     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.Boolean[],System.Int32,System.Int32)">
2067       <summary>Writes nodes from a <see cref="T:System.Boolean" /> array.</summary>
2068       <param name="prefix">The namespace prefix.</param>
2069       <param name="localName">The local name of the element.</param>
2070       <param name="namespaceUri">The namespace URI of the element.</param>
2071       <param name="array">The array that contains the data.</param>
2072       <param name="offset">The starting index in the array.</param>
2073       <param name="count">The number of values to write from the array.</param>
2074       <exception cref="T:System.ArgumentNullException">
2075         <paramref name="array" /> is <see langword="null" />.</exception>
2076       <exception cref="T:System.ArgumentOutOfRangeException">
2077         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2078 -or-
2079 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2080     </member>
2081     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.DateTime[],System.Int32,System.Int32)">
2082       <summary>Writes nodes from a <see cref="T:System.DateTime" /> array.</summary>
2083       <param name="prefix">The namespace prefix.</param>
2084       <param name="localName">The local name of the element.</param>
2085       <param name="namespaceUri">The namespace URI of the element.</param>
2086       <param name="array">The array that contains the nodes.</param>
2087       <param name="offset">The starting index in the array.</param>
2088       <param name="count">The number of nodes to get from the array.</param>
2089       <exception cref="T:System.ArgumentNullException">
2090         <paramref name="array" /> is <see langword="null" />.</exception>
2091       <exception cref="T:System.ArgumentOutOfRangeException">
2092         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2093 -or-
2094 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2095     </member>
2096     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.Decimal[],System.Int32,System.Int32)">
2097       <summary>Writes nodes from a <see cref="T:System.Decimal" /> array.</summary>
2098       <param name="prefix">The namespace prefix.</param>
2099       <param name="localName">The local name of the element.</param>
2100       <param name="namespaceUri">The namespace URI of the element.</param>
2101       <param name="array">The array that contains the nodes.</param>
2102       <param name="offset">The starting index in the array.</param>
2103       <param name="count">The number of nodes to get from the array.</param>
2104       <exception cref="T:System.ArgumentNullException">
2105         <paramref name="array" /> is <see langword="null" />.</exception>
2106       <exception cref="T:System.ArgumentOutOfRangeException">
2107         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2108 -or-
2109 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2110     </member>
2111     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.Double[],System.Int32,System.Int32)">
2112       <summary>Writes nodes from a <see cref="T:System.Double" /> array.</summary>
2113       <param name="prefix">The namespace prefix.</param>
2114       <param name="localName">The local name of the element.</param>
2115       <param name="namespaceUri">The namespace URI of the element.</param>
2116       <param name="array">The array that contains the nodes.</param>
2117       <param name="offset">The starting index in the array.</param>
2118       <param name="count">The number of nodes to get from the array.</param>
2119       <exception cref="T:System.ArgumentNullException">
2120         <paramref name="array" /> is <see langword="null" />.</exception>
2121       <exception cref="T:System.ArgumentOutOfRangeException">
2122         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2123 -or-
2124 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2125     </member>
2126     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.Guid[],System.Int32,System.Int32)">
2127       <summary>Writes nodes from a <see cref="T:System.Guid" /> array.</summary>
2128       <param name="prefix">The namespace prefix.</param>
2129       <param name="localName">The local name of the element.</param>
2130       <param name="namespaceUri">The namespace URI of the element.</param>
2131       <param name="array">The array that contains the nodes.</param>
2132       <param name="offset">The starting index in the array.</param>
2133       <param name="count">The number of nodes to get from the array.</param>
2134       <exception cref="T:System.ArgumentNullException">
2135         <paramref name="array" /> is <see langword="null" />.</exception>
2136       <exception cref="T:System.ArgumentOutOfRangeException">
2137         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2138 -or-
2139 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2140     </member>
2141     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.Int16[],System.Int32,System.Int32)">
2142       <summary>Writes nodes from a <see cref="T:System.Int16" /> array.</summary>
2143       <param name="prefix">The namespace prefix.</param>
2144       <param name="localName">The local name of the element.</param>
2145       <param name="namespaceUri">The namespace URI of the element.</param>
2146       <param name="array">The array that contains the nodes.</param>
2147       <param name="offset">The starting index in the array.</param>
2148       <param name="count">The number of nodes to get from the array.</param>
2149       <exception cref="T:System.ArgumentNullException">
2150         <paramref name="array" /> is <see langword="null" />.</exception>
2151       <exception cref="T:System.ArgumentOutOfRangeException">
2152         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2153 -or-
2154 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2155     </member>
2156     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.Int32[],System.Int32,System.Int32)">
2157       <summary>Writes nodes from a <see cref="T:System.Int32" /> array.</summary>
2158       <param name="prefix">The namespace prefix.</param>
2159       <param name="localName">The local name of the element.</param>
2160       <param name="namespaceUri">The namespace URI of the element.</param>
2161       <param name="array">The array that contains the nodes.</param>
2162       <param name="offset">The starting index in the array.</param>
2163       <param name="count">The number of nodes to get from the array.</param>
2164       <exception cref="T:System.ArgumentNullException">
2165         <paramref name="array" /> is <see langword="null" />.</exception>
2166       <exception cref="T:System.ArgumentOutOfRangeException">
2167         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2168 -or-
2169 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2170     </member>
2171     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.Int64[],System.Int32,System.Int32)">
2172       <summary>Writes nodes from a <see cref="T:System.Int64" /> array.</summary>
2173       <param name="prefix">The namespace prefix.</param>
2174       <param name="localName">The local name of the element.</param>
2175       <param name="namespaceUri">The namespace URI of the element.</param>
2176       <param name="array">The array that contains the nodes.</param>
2177       <param name="offset">The starting index in the array.</param>
2178       <param name="count">The number of nodes to get from the array.</param>
2179       <exception cref="T:System.ArgumentNullException">
2180         <paramref name="array" /> is <see langword="null" />.</exception>
2181       <exception cref="T:System.ArgumentOutOfRangeException">
2182         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2183 -or-
2184 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2185     </member>
2186     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.Single[],System.Int32,System.Int32)">
2187       <summary>Writes nodes from a <see cref="T:System.Single" /> array.</summary>
2188       <param name="prefix">The namespace prefix.</param>
2189       <param name="localName">The local name of the element.</param>
2190       <param name="namespaceUri">The namespace URI of the element.</param>
2191       <param name="array">The array that contains the nodes.</param>
2192       <param name="offset">The starting index in the array.</param>
2193       <param name="count">The number of nodes to get from the array.</param>
2194       <exception cref="T:System.ArgumentNullException">
2195         <paramref name="array" /> is <see langword="null" />.</exception>
2196       <exception cref="T:System.ArgumentOutOfRangeException">
2197         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2198 -or-
2199 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2200     </member>
2201     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.String,System.String,System.TimeSpan[],System.Int32,System.Int32)">
2202       <summary>Writes nodes from a <see cref="T:System.TimeSpan" /> array.</summary>
2203       <param name="prefix">The namespace prefix.</param>
2204       <param name="localName">The local name of the element.</param>
2205       <param name="namespaceUri">The namespace URI of the element.</param>
2206       <param name="array">The array that contains the nodes.</param>
2207       <param name="offset">The starting index in the array.</param>
2208       <param name="count">The number of nodes to get from the array.</param>
2209       <exception cref="T:System.ArgumentNullException">
2210         <paramref name="array" /> is <see langword="null" />.</exception>
2211       <exception cref="T:System.ArgumentOutOfRangeException">
2212         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2213 -or-
2214 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2215     </member>
2216     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Boolean[],System.Int32,System.Int32)">
2217       <summary>Writes nodes from a <see cref="T:System.Boolean" /> array.</summary>
2218       <param name="prefix">The namespace prefix.</param>
2219       <param name="localName">The local name of the element.</param>
2220       <param name="namespaceUri">The namespace URI of the element.</param>
2221       <param name="array">The array that contains the nodes.</param>
2222       <param name="offset">The starting index in the array.</param>
2223       <param name="count">The number of nodes to get from the array.</param>
2224       <exception cref="T:System.ArgumentNullException">
2225         <paramref name="array" /> is <see langword="null" />.</exception>
2226       <exception cref="T:System.ArgumentOutOfRangeException">
2227         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2228 -or-
2229 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2230     </member>
2231     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.DateTime[],System.Int32,System.Int32)">
2232       <summary>Writes nodes from a <see cref="T:System.DateTime" /> array.</summary>
2233       <param name="prefix">The namespace prefix.</param>
2234       <param name="localName">The local name of the element.</param>
2235       <param name="namespaceUri">The namespace URI of the element.</param>
2236       <param name="array">The array that contains the nodes.</param>
2237       <param name="offset">The starting index in the array.</param>
2238       <param name="count">The number of nodes to get from the array.</param>
2239       <exception cref="T:System.ArgumentNullException">
2240         <paramref name="array" /> is <see langword="null" />.</exception>
2241       <exception cref="T:System.ArgumentOutOfRangeException">
2242         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2243 -or-
2244 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2245     </member>
2246     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Decimal[],System.Int32,System.Int32)">
2247       <summary>Writes nodes from a <see cref="T:System.Decimal" /> array.</summary>
2248       <param name="prefix">The namespace prefix.</param>
2249       <param name="localName">The local name of the element.</param>
2250       <param name="namespaceUri">The namespace URI of the element.</param>
2251       <param name="array">The array that contains the nodes.</param>
2252       <param name="offset">The starting index in the array.</param>
2253       <param name="count">The number of nodes to get from the array.</param>
2254       <exception cref="T:System.ArgumentNullException">
2255         <paramref name="array" /> is <see langword="null" />.</exception>
2256       <exception cref="T:System.ArgumentOutOfRangeException">
2257         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2258 -or-
2259 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2260     </member>
2261     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Double[],System.Int32,System.Int32)">
2262       <summary>Writes nodes from a <see cref="T:System.Double" /> array.</summary>
2263       <param name="prefix">The namespace prefix.</param>
2264       <param name="localName">The local name of the element.</param>
2265       <param name="namespaceUri">The namespace URI of the element.</param>
2266       <param name="array">The array that contains the nodes.</param>
2267       <param name="offset">The starting index in the array.</param>
2268       <param name="count">The number of nodes to get from the array.</param>
2269       <exception cref="T:System.ArgumentNullException">
2270         <paramref name="array" /> is <see langword="null" />.</exception>
2271       <exception cref="T:System.ArgumentOutOfRangeException">
2272         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2273 -or-
2274 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2275     </member>
2276     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Guid[],System.Int32,System.Int32)">
2277       <summary>Writes nodes from a <see cref="T:System.Guid" /> array.</summary>
2278       <param name="prefix">The namespace prefix.</param>
2279       <param name="localName">The local name of the element.</param>
2280       <param name="namespaceUri">The namespace URI of the element.</param>
2281       <param name="array">The array that contains the nodes.</param>
2282       <param name="offset">The starting index in the array.</param>
2283       <param name="count">The number of nodes to get from the array.</param>
2284       <exception cref="T:System.ArgumentNullException">
2285         <paramref name="array" /> is <see langword="null" />.</exception>
2286       <exception cref="T:System.ArgumentOutOfRangeException">
2287         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2288 -or-
2289 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2290     </member>
2291     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Int16[],System.Int32,System.Int32)">
2292       <summary>Writes nodes from a <see cref="T:System.Int16" /> array.</summary>
2293       <param name="prefix">The namespace prefix.</param>
2294       <param name="localName">The local name of the element.</param>
2295       <param name="namespaceUri">The namespace URI of the element.</param>
2296       <param name="array">The array that contains the nodes.</param>
2297       <param name="offset">The starting index in the array.</param>
2298       <param name="count">The number of nodes to get from the array.</param>
2299       <exception cref="T:System.ArgumentNullException">
2300         <paramref name="array" /> is <see langword="null" />.</exception>
2301       <exception cref="T:System.ArgumentOutOfRangeException">
2302         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2303 -or-
2304 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2305     </member>
2306     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Int32[],System.Int32,System.Int32)">
2307       <summary>Writes nodes from a <see cref="T:System.Int32" /> array.</summary>
2308       <param name="prefix">The namespace prefix.</param>
2309       <param name="localName">The local name of the element.</param>
2310       <param name="namespaceUri">The namespace URI of the element.</param>
2311       <param name="array">The array that contains the nodes.</param>
2312       <param name="offset">The starting index in the array.</param>
2313       <param name="count">The number of nodes to get from the array.</param>
2314       <exception cref="T:System.ArgumentNullException">
2315         <paramref name="array" /> is <see langword="null" />.</exception>
2316       <exception cref="T:System.ArgumentOutOfRangeException">
2317         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2318 -or-
2319 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2320     </member>
2321     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Int64[],System.Int32,System.Int32)">
2322       <summary>Writes nodes from a <see cref="T:System.Int64" /> array.</summary>
2323       <param name="prefix">The namespace prefix.</param>
2324       <param name="localName">The local name of the element.</param>
2325       <param name="namespaceUri">The namespace URI of the element.</param>
2326       <param name="array">The array that contains the nodes.</param>
2327       <param name="offset">The starting index in the array.</param>
2328       <param name="count">The number of nodes to get from the array.</param>
2329       <exception cref="T:System.ArgumentNullException">
2330         <paramref name="array" /> is <see langword="null" />.</exception>
2331       <exception cref="T:System.ArgumentOutOfRangeException">
2332         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2333 -or-
2334 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2335     </member>
2336     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Single[],System.Int32,System.Int32)">
2337       <summary>Writes nodes from a <see cref="T:System.Single" /> array.</summary>
2338       <param name="prefix">The namespace prefix.</param>
2339       <param name="localName">The local name of the element.</param>
2340       <param name="namespaceUri">The namespace URI of the element.</param>
2341       <param name="array">The array that contains the nodes.</param>
2342       <param name="offset">The starting index in the array.</param>
2343       <param name="count">The number of nodes to get from the array.</param>
2344       <exception cref="T:System.ArgumentNullException">
2345         <paramref name="array" /> is <see langword="null" />.</exception>
2346       <exception cref="T:System.ArgumentOutOfRangeException">
2347         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2348 -or-
2349 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2350     </member>
2351     <member name="M:System.Xml.XmlDictionaryWriter.WriteArray(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.TimeSpan[],System.Int32,System.Int32)">
2352       <summary>Writes nodes from a <see cref="T:System.TimeSpan" /> array.</summary>
2353       <param name="prefix">The namespace prefix.</param>
2354       <param name="localName">The local name of the element.</param>
2355       <param name="namespaceUri">The namespace URI of the element.</param>
2356       <param name="array">The array that contains the nodes.</param>
2357       <param name="offset">The starting index in the array.</param>
2358       <param name="count">The number of nodes to get from the array.</param>
2359       <exception cref="T:System.ArgumentNullException">
2360         <paramref name="array" /> is <see langword="null" />.</exception>
2361       <exception cref="T:System.ArgumentOutOfRangeException">
2362         <paramref name="offset" /> is &lt; 0 or &gt; <paramref name="array" /> length.
2363 -or-
2364 <paramref name="count" /> is &lt; 0 or &gt; <paramref name="array" /> length minus <paramref name="offset" />.</exception>
2365     </member>
2366     <member name="M:System.Xml.XmlDictionaryWriter.WriteAttributeString(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.String)">
2367       <summary>Writes an attribute qualified name and value.</summary>
2368       <param name="prefix">The prefix of the attribute.</param>
2369       <param name="localName">The local name of the attribute.</param>
2370       <param name="namespaceUri">The namespace URI of the attribute.</param>
2371       <param name="value">The attribute.</param>
2372     </member>
2373     <member name="M:System.Xml.XmlDictionaryWriter.WriteAttributeString(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.String)">
2374       <summary>Writes an attribute qualified name and value.</summary>
2375       <param name="localName">The local name of the attribute.</param>
2376       <param name="namespaceUri">The namespace URI of the attribute.</param>
2377       <param name="value">The attribute.</param>
2378     </member>
2379     <member name="M:System.Xml.XmlDictionaryWriter.WriteBase64Async(System.Byte[],System.Int32,System.Int32)">
2380       <summary>Asynchronously encodes the specified binary bytes as Base64 and writes out the resulting text.</summary>
2381       <param name="buffer">Byte array to encode.</param>
2382       <param name="index">The position in the buffer indicating the start of the bytes to write.</param>
2383       <param name="count">The number of bytes to write.</param>
2384       <returns>The task that represents the asynchronous <see langword="WriteBase64" /> operation.</returns>
2385       <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlDictionaryWriter" /> 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."
2386 -or-
2387 An <see cref="T:System.Xml.XmlDictionaryWriter" /> 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>
2388     </member>
2389     <member name="M:System.Xml.XmlDictionaryWriter.WriteElementString(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.String)">
2390       <summary>Writes an element with a text content.</summary>
2391       <param name="prefix">The prefix of the element.</param>
2392       <param name="localName">The local name of the element.</param>
2393       <param name="namespaceUri">The namespace URI of the element.</param>
2394       <param name="value">The element content.</param>
2395     </member>
2396     <member name="M:System.Xml.XmlDictionaryWriter.WriteElementString(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.String)">
2397       <summary>Writes an element with a text content.</summary>
2398       <param name="localName">The local name of the element.</param>
2399       <param name="namespaceUri">The namespace URI of the element.</param>
2400       <param name="value">The element content.</param>
2401     </member>
2402     <member name="M:System.Xml.XmlDictionaryWriter.WriteNode(System.Xml.XmlDictionaryReader,System.Boolean)">
2403       <summary>Writes the current XML node from an <see cref="T:System.Xml.XmlDictionaryReader" />.</summary>
2404       <param name="reader">The <see cref="T:System.Xml.XmlDictionaryReader" />.</param>
2405       <param name="defattr">
2406         <see langword="true" /> to copy the default attributes from the <see langword="XmlReader" />; otherwise, <see langword="false" />.</param>
2407       <exception cref="T:System.ArgumentNullException">
2408         <paramref name="reader" /> is <see langword="null" />.</exception>
2409     </member>
2410     <member name="M:System.Xml.XmlDictionaryWriter.WriteNode(System.Xml.XmlReader,System.Boolean)">
2411       <summary>Writes the current XML node from an <see cref="T:System.Xml.XmlReader" />.</summary>
2412       <param name="reader">The <see cref="T:System.Xml.XmlReader" />.</param>
2413       <param name="defattr">
2414         <see langword="true" /> to copy the default attributes from the <see cref="T:System.Xml.XmlReader" />; otherwise, <see langword="false" />.</param>
2415       <exception cref="T:System.ArgumentNullException">
2416         <paramref name="reader" /> is <see langword="null" />.</exception>
2417     </member>
2418     <member name="M:System.Xml.XmlDictionaryWriter.WriteQualifiedName(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
2419       <summary>Writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace.</summary>
2420       <param name="localName">The local name of the qualified name.</param>
2421       <param name="namespaceUri">The namespace URI of the qualified name.</param>
2422       <exception cref="T:System.ArgumentNullException">
2423         <paramref name="localName" /> is <see langword="null" />.</exception>
2424     </member>
2425     <member name="M:System.Xml.XmlDictionaryWriter.WriteStartAttribute(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
2426       <summary>Writes the start of an attribute with the specified prefix, local name, and namespace URI.</summary>
2427       <param name="prefix">The namespace prefix.</param>
2428       <param name="localName">The local name of the attribute.</param>
2429       <param name="namespaceUri">The namespace URI of the attribute.</param>
2430     </member>
2431     <member name="M:System.Xml.XmlDictionaryWriter.WriteStartAttribute(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
2432       <summary>Writes the start of an attribute with the specified local name, and namespace URI.</summary>
2433       <param name="localName">The local name of the attribute.</param>
2434       <param name="namespaceUri">The namespace URI of the attribute.</param>
2435     </member>
2436     <member name="M:System.Xml.XmlDictionaryWriter.WriteStartElement(System.String,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
2437       <summary>Writes the specified start tag and associates it with the given namespace and prefix.</summary>
2438       <param name="prefix">The prefix of the element.</param>
2439       <param name="localName">The local name of the element.</param>
2440       <param name="namespaceUri">The namespace URI of the element.</param>
2441       <exception cref="T:System.InvalidOperationException">The writer is closed.</exception>
2442     </member>
2443     <member name="M:System.Xml.XmlDictionaryWriter.WriteStartElement(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
2444       <summary>Writes the specified start tag and associates it with the given namespace.</summary>
2445       <param name="localName">The local name of the element.</param>
2446       <param name="namespaceUri">The namespace URI of the element.</param>
2447       <exception cref="T:System.InvalidOperationException">The writer is closed.</exception>
2448     </member>
2449     <member name="M:System.Xml.XmlDictionaryWriter.WriteString(System.Xml.XmlDictionaryString)">
2450       <summary>Writes the given text content.</summary>
2451       <param name="value">The text to write.</param>
2452     </member>
2453     <member name="M:System.Xml.XmlDictionaryWriter.WriteTextNode(System.Xml.XmlDictionaryReader,System.Boolean)">
2454       <summary>Writes the text node that an <see cref="T:System.Xml.XmlDictionaryReader" /> is currently positioned on.</summary>
2455       <param name="reader">The <see cref="T:System.Xml.XmlDictionaryReader" /> to get the text value from.</param>
2456       <param name="isAttribute">
2457         <see langword="true" /> to indicate that the reader is positioned on an attribute value or element content; otherwise, <see langword="false" />.</param>
2458     </member>
2459     <member name="M:System.Xml.XmlDictionaryWriter.WriteValue(System.Guid)">
2460       <summary>Writes a <see cref="T:System.Guid" /> value.</summary>
2461       <param name="value">The <see cref="T:System.Guid" /> value to write.</param>
2462     </member>
2463     <member name="M:System.Xml.XmlDictionaryWriter.WriteValue(System.TimeSpan)">
2464       <summary>Writes a <see cref="T:System.TimeSpan" /> value.</summary>
2465       <param name="value">The <see cref="T:System.TimeSpan" /> value to write.</param>
2466     </member>
2467     <member name="M:System.Xml.XmlDictionaryWriter.WriteValue(System.Xml.IStreamProvider)">
2468       <summary>Writes a value from an <see cref="T:System.Xml.IStreamProvider" />.</summary>
2469       <param name="value">The <see cref="T:System.Xml.IStreamProvider" /> value to write.</param>
2470       <exception cref="T:System.ArgumentNullException">
2471         <paramref name="value" /> is <see langword="null" />.</exception>
2472       <exception cref="T:System.Xml.XmlException">
2473         <paramref name="value" /> returns a <see langword="null" /> stream object.</exception>
2474       <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlDictionaryWriter" /> 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>
2475     </member>
2476     <member name="M:System.Xml.XmlDictionaryWriter.WriteValue(System.Xml.UniqueId)">
2477       <summary>Writes a Unique Id value.</summary>
2478       <param name="value">The Unique Id value to write.</param>
2479       <exception cref="T:System.ArgumentNullException">
2480         <paramref name="value" /> is <see langword="null" />.</exception>
2481     </member>
2482     <member name="M:System.Xml.XmlDictionaryWriter.WriteValue(System.Xml.XmlDictionaryString)">
2483       <summary>Writes a <see cref="T:System.Xml.XmlDictionaryString" /> value.</summary>
2484       <param name="value">The <see cref="T:System.Xml.XmlDictionaryString" /> value.</param>
2485     </member>
2486     <member name="M:System.Xml.XmlDictionaryWriter.WriteValueAsync(System.Xml.IStreamProvider)">
2487       <summary>Asynchronously writes a value from an <see cref="T:System.Xml.IStreamProvider" />.</summary>
2488       <param name="value">The <see cref="T:System.Xml.IStreamProvider" /> value to write.</param>
2489       <returns>The task that represents the asynchronous <see langword="WriteValue" /> operation.</returns>
2490       <exception cref="T:System.InvalidOperationException">An <see cref="T:System.Xml.XmlDictionaryWriter" /> 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."
2491 -or-
2492 An <see cref="T:System.Xml.XmlDictionaryWriter" /> 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>
2493     </member>
2494     <member name="M:System.Xml.XmlDictionaryWriter.WriteXmlAttribute(System.String,System.String)">
2495       <summary>Writes a standard XML attribute in the current node.</summary>
2496       <param name="localName">The local name of the attribute.</param>
2497       <param name="value">The value of the attribute.</param>
2498     </member>
2499     <member name="M:System.Xml.XmlDictionaryWriter.WriteXmlAttribute(System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)">
2500       <summary>Writes an XML attribute in the current node.</summary>
2501       <param name="localName">The local name of the attribute.</param>
2502       <param name="value">The value of the attribute.</param>
2503     </member>
2504     <member name="M:System.Xml.XmlDictionaryWriter.WriteXmlnsAttribute(System.String,System.String)">
2505       <summary>Writes a namespace declaration attribute.</summary>
2506       <param name="prefix">The prefix that is bound to the given namespace.</param>
2507       <param name="namespaceUri">The namespace to which the prefix is bound.</param>
2508       <exception cref="T:System.ArgumentNullException">
2509         <paramref name="namespaceUri" /> is <see langword="null" />.</exception>
2510     </member>
2511     <member name="M:System.Xml.XmlDictionaryWriter.WriteXmlnsAttribute(System.String,System.Xml.XmlDictionaryString)">
2512       <summary>Writes a namespace declaration attribute.</summary>
2513       <param name="prefix">The prefix that is bound to the given namespace.</param>
2514       <param name="namespaceUri">The namespace to which the prefix is bound.</param>
2515       <exception cref="T:System.ArgumentNullException">
2516         <paramref name="namespaceUri" /> is <see langword="null" />.</exception>
2517     </member>
2518   </members>
2519 </doc>