﻿<?xml version="1.0" encoding="utf-8"?><Type Name="XmlSerializationReader" FullName="System.Xml.Serialization.XmlSerializationReader"><TypeSignature Maintainer="auto" Language="C#" Value="public abstract class XmlSerializationReader : System.Xml.Serialization.XmlSerializationGeneratedCode" /><TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit XmlSerializationReader extends System.Xml.Serialization.XmlSerializationGeneratedCode" /><AssemblyInfo><AssemblyName>System.Xml</AssemblyName><AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ThreadSafetyStatement>To be added</ThreadSafetyStatement><Base><BaseTypeName>System.Xml.Serialization.XmlSerializationGeneratedCode</BaseTypeName></Base><Interfaces /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>During initialization, the .NET Framework XML serialization infrastructure dynamically generates and compiles a temporary class for deserialization that is derived from the abstract <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> class. <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> is also implemented within the .NET Framework for deserialization of XML documents into <see cref="T:System.Web.Services.Discovery.DiscoveryDocument" /> and <see cref="T:System.Web.Services.Description.ServiceDescription" /> objects.</para><para>You should not derive classes from <see cref="T:System.Xml.Serialization.XmlSerializationReader" />. Instead, call one of the <see cref="M:System.Xml.Serialization.XmlSerializer.Deserialize(System.IO.Stream)" /> methods.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Controls deserialization by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> class. </para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="protected XmlSerializationReader ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" /><MemberType>Constructor</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue /><Parameters /><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> class.</para></summary></Docs></Member><Member MemberName="AddFixup"><MemberSignature Language="C#" Value="protected void AddFixup (System.Xml.Serialization.XmlSerializationReader.CollectionFixup fixup);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void AddFixup(class System.Xml.Serialization.XmlSerializationReader/CollectionFixup fixup) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="fixup" Type="System.Xml.Serialization.XmlSerializationReader+CollectionFixup" /></Parameters><Docs><param name="fixup">To be added: an object of type 'XmlSerializationReader+CollectionFixup'</param><summary>To be added</summary><remarks>To be added</remarks></Docs></Member><Member MemberName="AddFixup"><MemberSignature Language="C#" Value="protected void AddFixup (System.Xml.Serialization.XmlSerializationReader.Fixup fixup);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void AddFixup(class System.Xml.Serialization.XmlSerializationReader/Fixup fixup) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="fixup" Type="System.Xml.Serialization.XmlSerializationReader+Fixup" /></Parameters><Docs><param name="fixup">To be added: an object of type 'XmlSerializationReader+Fixup'</param><summary>To be added</summary><remarks>To be added</remarks></Docs></Member><Member MemberName="AddReadCallback"><MemberSignature Language="C#" Value="protected void AddReadCallback (string name, string ns, Type type, System.Xml.Serialization.XmlSerializationReadCallback read);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void AddReadCallback(string name, string ns, class System.Type type, class System.Xml.Serialization.XmlSerializationReadCallback read) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="ns" Type="System.String" /><Parameter Name="type" Type="System.Type" /><Parameter Name="read" Type="System.Xml.Serialization.XmlSerializationReadCallback" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>During initialization, the .NET Framework XML serialization infrastructure dynamically generates and compiles a temporary class for deserialization that derives from <see cref="T:System.Xml.Serialization.XmlSerializationReader" />. During this process, the .NET Framework generates read methods that implement the <see cref="T:System.Xml.Serialization.XmlSerializationReadCallback" /> delegate. It does so for certain mappings between .NET Framework types and XML data types that are serialized through SOAP-encoded XML and are not root elements. Next, as necessary, a read method is called during deserialization.</para><para>You should not directly create an instance of the <see cref="T:System.Xml.Serialization.XmlSerializationReadCallback" /> class.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Stores an implementation of the <see cref="T:System.Xml.Serialization.XmlSerializationReadCallback" /> delegate and its input data for a later invocation. </para></summary><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the .NET Framework type that is being deserialized.</param><param name="ns"><attribution license="cc4" from="Microsoft" modified="false" />The namespace of the .NET Framework type that is being deserialized.</param><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Type" /> to be deserialized.</param><param name="read"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.Serialization.XmlSerializationReadCallback" /> delegate.</param></Docs></Member><Member MemberName="AddTarget"><MemberSignature Language="C#" Value="protected void AddTarget (string id, object o);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void AddTarget(string id, object o) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="id" Type="System.String" /><Parameter Name="o" Type="System.Object" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. The id value can be referenced multiple times by ref attributes (or href attributes in SOAP 1.1) in substitute elements. </para><para>SOAP encoding is described in Section 5 of the SOAP 1.1 specification.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Stores an object that is being deserialized from a SOAP-encoded multiRef element for later access through the <see cref="M:System.Xml.Serialization.XmlSerializationReader.GetTarget(System.String)" /> method. </para></summary><param name="id"><attribution license="cc4" from="Microsoft" modified="false" />The value of the id attribute of a multiRef element that identifies the element.</param><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />The object that is deserialized from the XML element.</param></Docs></Member><Member MemberName="CheckReaderCount"><MemberSignature Language="C#" Value="protected void CheckReaderCount (ref int whileIterations, ref int readerCount);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void CheckReaderCount(int32 whileIterations, int32 readerCount) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="whileIterations" Type="System.Int32&amp;" RefType="ref" /><Parameter Name="readerCount" Type="System.Int32&amp;" RefType="ref" /></Parameters><Docs><param name="whileIterations">To be added.</param><param name="readerCount">To be added.</param><summary>To be added.</summary><remarks>To be added.</remarks><since version=".NET 2.0" /></Docs></Member><Member MemberName="CollapseWhitespace"><MemberSignature Language="C#" Value="protected string CollapseWhitespace (string value);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance string CollapseWhitespace(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Removes all occurrences of white space characters from the beginning and end of the specified string.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The trimmed string.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />The string that will have its white space trimmed.</param></Docs></Member><Member MemberName="CreateAbstractTypeException"><MemberSignature Language="C#" Value="protected Exception CreateAbstractTypeException (string name, string ns);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateAbstractTypeException(string name, string ns) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="ns" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended only for use by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidOperationException" /> that indicates that an object being deserialized should be abstract. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of the abstract type.</param><param name="ns"><attribution license="cc4" from="Microsoft" modified="false" />The .NET Framework namespace of the abstract type.</param></Docs></Member><Member MemberName="CreateBadDerivationException"><MemberSignature Language="C#" Value="protected Exception CreateBadDerivationException (string xsdDerived, string nsDerived, string xsdBase, string nsBase, string clrDerived, string clrBase);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateBadDerivationException(string xsdDerived, string nsDerived, string xsdBase, string nsBase, string clrDerived, string clrBase) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="xsdDerived" Type="System.String" /><Parameter Name="nsDerived" Type="System.String" /><Parameter Name="xsdBase" Type="System.String" /><Parameter Name="nsBase" Type="System.String" /><Parameter Name="clrDerived" Type="System.String" /><Parameter Name="clrBase" Type="System.String" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Populates an object from its XML representation at the current location of the <see cref="T:System.Xml.XmlReader" />, with an option to read the inner element.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns><param name="xsdDerived"><attribution license="cc4" from="Microsoft" modified="false" />The local name of the derived XML Schema data type.</param><param name="nsDerived"><attribution license="cc4" from="Microsoft" modified="false" />The namespace of the derived XML Schema data type.</param><param name="xsdBase"><attribution license="cc4" from="Microsoft" modified="false" />The local name of the base XML Schema data type.</param><param name="nsBase"><attribution license="cc4" from="Microsoft" modified="false" />The namespace of the base XML Schema data type.</param><param name="clrDerived"><attribution license="cc4" from="Microsoft" modified="false" />The namespace of the derived .NET Framework type.</param><param name="clrBase"><attribution license="cc4" from="Microsoft" modified="false" />The name of the base .NET Framework type.</param></Docs></Member><Member MemberName="CreateCtorHasSecurityException"><MemberSignature Language="C#" Value="protected Exception CreateCtorHasSecurityException (string typeName);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateCtorHasSecurityException(string typeName) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="typeName" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidOperationException" /> that indicates that an object being deserialized cannot be instantiated because the constructor throws a security exception.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns><param name="typeName"><attribution license="cc4" from="Microsoft" modified="false" />The name of the type.</param></Docs></Member><Member MemberName="CreateInaccessibleConstructorException"><MemberSignature Language="C#" Value="protected Exception CreateInaccessibleConstructorException (string typeName);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateInaccessibleConstructorException(string typeName) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="typeName" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidOperationException" /> that indicates that an object being deserialized cannot be instantiated because there is no constructor available.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns><param name="typeName"><attribution license="cc4" from="Microsoft" modified="false" />The name of the type.</param></Docs></Member><Member MemberName="CreateInvalidCastException"><MemberSignature Language="C#" Value="protected Exception CreateInvalidCastException (Type type, object value);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateInvalidCastException(class System.Type type, object value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Type" /><Parameter Name="value" Type="System.Object" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidCastException" /> that indicates that an explicit reference conversion failed.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidCastException" /> exception.</para></returns><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Type" /> that an object cannot be cast to. This type is incorporated into the exception message.</param><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />The object that cannot be cast. This object is incorporated into the exception message.</param></Docs></Member><Member MemberName="CreateInvalidCastException"><MemberSignature Language="C#" Value="protected Exception CreateInvalidCastException (Type type, object value, string id);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateInvalidCastException(class System.Type type, object value, string id) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Type" /><Parameter Name="value" Type="System.Object" /><Parameter Name="id" Type="System.String" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidCastException" /> that indicates that an explicit reference conversion failed.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidCastException" /> exception.</para></returns><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Type" /> that an object cannot be cast to. This type is incorporated into the exception message.</param><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />The object that cannot be cast. This object is incorporated into the exception message.</param><param name="id"><attribution license="cc4" from="Microsoft" modified="false" />A string identifier.</param></Docs></Member><Member MemberName="CreateMissingIXmlSerializableType"><MemberSignature Language="C#" Value="protected Exception CreateMissingIXmlSerializableType (string name, string ns, string clrType);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateMissingIXmlSerializableType(string name, string ns, string clrType) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="ns" Type="System.String" /><Parameter Name="clrType" Type="System.String" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidOperationException" /> that indicates that a derived type that is mapped to an XML Schema data type cannot be located.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The local name of the XML Schema data type that is mapped to the unavailable derived type.</param><param name="ns"><attribution license="cc4" from="Microsoft" modified="false" />The namespace of the XML Schema data type that is mapped to the unavailable derived type.</param><param name="clrType"><attribution license="cc4" from="Microsoft" modified="false" />The full name of the .NET Framework base type for which a derived type cannot be located.</param></Docs></Member><Member MemberName="CreateReadOnlyCollectionException"><MemberSignature Language="C#" Value="protected Exception CreateReadOnlyCollectionException (string name);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateReadOnlyCollectionException(string name) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidOperationException" /> that indicates that a SOAP-encoded collection type cannot be modified and its values cannot be filled in. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The fully qualified name of the .NET Framework type for which there is a mapping.</param></Docs></Member><Member MemberName="CreateUnknownConstantException"><MemberSignature Language="C#" Value="protected Exception CreateUnknownConstantException (string value, Type enumType);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateUnknownConstantException(string value, class System.Type enumType) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /><Parameter Name="enumType" Type="System.Type" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidOperationException" /> that indicates that an enumeration value is not valid. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />The enumeration value that is not valid.</param><param name="enumType"><attribution license="cc4" from="Microsoft" modified="false" />The enumeration type.</param></Docs></Member><Member MemberName="CreateUnknownNodeException"><MemberSignature Language="C#" Value="protected Exception CreateUnknownNodeException ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateUnknownNodeException() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidOperationException" /> that indicates that the current position of <see cref="T:System.Xml.XmlReader" /> represents an unknown XML node. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns></Docs></Member><Member MemberName="CreateUnknownTypeException"><MemberSignature Language="C#" Value="protected Exception CreateUnknownTypeException (System.Xml.XmlQualifiedName type);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Exception CreateUnknownTypeException(class System.Xml.XmlQualifiedName type) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Exception</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Xml.XmlQualifiedName" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Creates an <see cref="T:System.InvalidOperationException" /> that indicates that a type is unknown. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.InvalidOperationException" /> exception.</para></returns><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.XmlQualifiedName" /> that represents the name of the unknown type.</param></Docs></Member><Member MemberName="DecodeName"><MemberSignature Language="C#" Value="protected bool DecodeName { get; set; }" /><MemberSignature Language="ILAsm" Value=".property instance bool DecodeName" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Xml.XmlConvert.EncodeName(System.String)" /> method writes valid XML from invalid sources. For example, the <see cref="P:System.Data.DataColumn.ColumnName" /> property of the <see cref="T:System.Data.DataColumn" /> class can contain spaces, which are invalid as XML. The <see cref="M:System.Xml.XmlConvert.DecodeName(System.String)" /> reads the encoded XML and restores it to the original value. However, the <see cref="Overload:System.Xml.Schema.XmlSchema.Read" /> method of the <see cref="T:System.Xml.Schema.XmlSchema" /> class cannot read such encoded XML. In that case, set the <see cref="P:System.Xml.Serialization.XmlSerializationWriter.EscapeName" /> property to false to disable the encoding of the XML.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value that determines whether XML strings are translated into valid .NET Framework type names.</para></summary></Docs></Member><Member MemberName="Document"><MemberSignature Language="C#" Value="protected System.Xml.XmlDocument Document { get; }" /><MemberSignature Language="ILAsm" Value=".property instance class System.Xml.XmlDocument Document" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.XmlDocument</ReturnType></ReturnValue><Docs><value>To be added: an object of type 'System.Xml.XmlDocument'</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the XML document object into which the XML document is being deserialized. </para></summary></Docs></Member><Member MemberName="EnsureArrayIndex"><MemberSignature Language="C#" Value="protected Array EnsureArrayIndex (Array a, int index, Type elementType);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Array EnsureArrayIndex(class System.Array a, int32 index, class System.Type elementType) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Array</ReturnType></ReturnValue><Parameters><Parameter Name="a" Type="System.Array" /><Parameter Name="index" Type="System.Int32" /><Parameter Name="elementType" Type="System.Type" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Ensures that a given array, or a copy, is large enough to contain a specified index. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The existing <see cref="T:System.Array" />, if it is already large enough; otherwise, a new, larger array that contains the original array's elements.</para></returns><param name="a"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Array" /> that is being checked.</param><param name="index"><attribution license="cc4" from="Microsoft" modified="false" />The required index.</param><param name="elementType"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Type" /> of the array's elements.</param></Docs></Member><Member MemberName="FixupArrayRefs"><MemberSignature Language="C#" Value="protected void FixupArrayRefs (object fixup);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void FixupArrayRefs(object fixup) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="fixup" Type="System.Object" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.FixupArrayRefs(System.Object)" /> method implements the <see cref="T:System.Xml.Serialization.XmlSerializationFixupCallback" /> delegate for deserialization of SOAP-encoded XML data.</para><para>While deserializing XML documents into .NET Framework objects, the .NET Framework XML serialization infrastructure dynamically creates an instance of the <see cref="M:System.Xml.Serialization.XmlSerializationReader.FixupArrayRefs(System.Object)" /> method for SOAP-encoded arrays whose data types map to .NET Framework reference types. The method then is called by <see cref="T:System.Xml.Serialization.XmlSerializationFixupCallback" /> to fill in the objects in the array.</para><para>SOAP encoding is described in Section 5 of the SOAP 1.1 specification.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Fills in the values of a SOAP-encoded array whose data type maps to a .NET Framework reference type.</para></summary><param name="fixup"><attribution license="cc4" from="Microsoft" modified="false" />An object that contains the array whose values are filled in.</param></Docs></Member><Member MemberName="GetArrayLength"><MemberSignature Language="C#" Value="protected int GetArrayLength (string name, string ns);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance int32 GetArrayLength(string name, string ns) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="ns" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.GetArrayLength(System.String,System.String)" /> method applies to the arrayType attribute that is used with SOAP encoding and specified with the namespace "http://schemas.xmlsoap.org/soap/encoding/".</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the length of the SOAP-encoded array where the <see cref="T:System.Xml.XmlReader" /> is currently positioned.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The length of the SOAP array.</para></returns><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The local name that the array should have.</param><param name="ns"><attribution license="cc4" from="Microsoft" modified="false" />The namespace that the array should have.</param></Docs></Member><Member MemberName="GetNullAttr"><MemberSignature Language="C#" Value="protected bool GetNullAttr ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance bool GetNullAttr() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines whether the XML element where the <see cref="T:System.Xml.XmlReader" /> is currently positioned has a null attribute set to the value true.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if <see cref="T:System.Xml.XmlReader" /> is currently positioned over a null attribute with the value true; otherwise, false.</para></returns></Docs></Member><Member MemberName="GetTarget"><MemberSignature Language="C#" Value="protected object GetTarget (string id);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance object GetTarget(string id) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="id" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements. SOAP encoding is described in Section 5 of the SOAP 1.1 specification.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets an object that is being deserialized from a SOAP-encoded multiRef element and that was stored earlier by <see cref="M:System.Xml.Serialization.XmlSerializationReader.AddTarget(System.String,System.Object)" />.  </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An object to be deserialized from a SOAP-encoded multiRef element.</para></returns><param name="id"><attribution license="cc4" from="Microsoft" modified="false" />The value of the id attribute of a multiRef element that identifies the element.</param></Docs></Member><Member MemberName="GetXsiType"><MemberSignature Language="C#" Value="protected System.Xml.XmlQualifiedName GetXsiType ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Xml.XmlQualifiedName GetXsiType() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.XmlQualifiedName</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The type attribute from the instance of the XML Schema namespace explicitly specifies the data type of an XML element.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the value of the xsi:type attribute for the XML element at the current location of the <see cref="T:System.Xml.XmlReader" />. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An XML qualified name that indicates the data type of an XML element.</para></returns></Docs></Member><Member MemberName="InitCallbacks"><MemberSignature Language="C#" Value="protected abstract void InitCallbacks ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void InitCallbacks() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>During initialization, the .NET Framework XML serialization infrastructure dynamically generates and compiles a temporary class for deserialization that is derived from <see cref="T:System.Xml.Serialization.XmlSerializationReader" />. During this process, the .NET Framework generates read methods that implement the <see cref="T:System.Xml.Serialization.XmlSerializationReadCallback" /> delegate. It does so for certain mappings between .NET Framework types and XML data types that are serialized through SOAP-encoded XML and are not root elements. Next, as necessary, a read method is called during deserialization. </para><para>The abstract <see cref="M:System.Xml.Serialization.XmlSerializationReader.InitCallbacks" /> method is where the temporary derived class creates an instance of and initializes read callback methods.</para><para>You should not directly create an instance of <see cref="T:System.Xml.Serialization.XmlSerializationReadCallback" />.</para><para>SOAP encoding is described in Section 5 of the SOAP 1.1 specification.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes callback methods that populate objects that map to SOAP-encoded XML data. </para></summary></Docs></Member><Member MemberName="InitIDs"><MemberSignature Language="C#" Value="protected abstract void InitIDs ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void InitIDs() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.InitIDs" /> method is abstract.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Stores element and attribute names in a <see cref="T:System.Xml.NameTable" /> object. </para></summary></Docs></Member><Member MemberName="IsReturnValue"><MemberSignature Language="C#" Value="protected bool IsReturnValue { get; set; }" /><MemberSignature Language="ILAsm" Value=".property instance bool IsReturnValue" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets a value that should be true for a SOAP 1.1 return value.</para></summary></Docs></Member><Member MemberName="IsXmlnsAttribute"><MemberSignature Language="C#" Value="protected bool IsXmlnsAttribute (string name);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance bool IsXmlnsAttribute(string name) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>An attribute name indicates an XML namespace if it takes the form xmlns:<paramref name="key" />, where "key" is the namespace name.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Determines whether an XML attribute name indicates an XML namespace. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the XML attribute name indicates an XML namespace; otherwise, false.</para></returns><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The name of an XML attribute.</param></Docs></Member><Member MemberName="ParseWsdlArrayType"><MemberSignature Language="C#" Value="protected void ParseWsdlArrayType (System.Xml.XmlAttribute attr);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void ParseWsdlArrayType(class System.Xml.XmlAttribute attr) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="attr" Type="System.Xml.XmlAttribute" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>WSDL uses the namespace "http://schemas.xmlsoap.org/wsdl/".</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Sets the value of the XML attribute if it is of type arrayType from the Web Services Description Language (WSDL) namespace. </para></summary><param name="attr"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.XmlAttribute" /> that may have the type wsdl:array.</param></Docs></Member><Member MemberName="ReadElementQualifiedName"><MemberSignature Language="C#" Value="protected System.Xml.XmlQualifiedName ReadElementQualifiedName ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Xml.XmlQualifiedName ReadElementQualifiedName() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.XmlQualifiedName</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Makes the <see cref="T:System.Xml.XmlReader" /> read the fully qualified name of the element where it is currently positioned. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The fully qualified name of the current XML element.</para></returns></Docs></Member><Member MemberName="ReadEndElement"><MemberSignature Language="C#" Value="protected void ReadEndElement ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void ReadEndElement() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para /></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Makes the <see cref="T:System.Xml.XmlReader" /> read an XML end tag.</para></summary></Docs></Member><Member MemberName="Reader"><MemberSignature Language="C#" Value="protected System.Xml.XmlReader Reader { get; }" /><MemberSignature Language="ILAsm" Value=".property instance class System.Xml.XmlReader Reader" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.XmlReader</ReturnType></ReturnValue><Docs><value>To be added: an object of type 'System.Xml.XmlReader'</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the <see cref="T:System.Xml.XmlReader" /> object that is being used by <see cref="T:System.Xml.Serialization.XmlSerializationReader" />. </para></summary></Docs></Member><Member MemberName="ReaderCount"><MemberSignature Language="C#" Value="protected int ReaderCount { get; }" /><MemberSignature Language="ILAsm" Value=".property instance int32 ReaderCount" /><MemberType>Property</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The method is used by generated classes and should not be directly invoked.</para><para>The <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> uses an instance of the <see cref="T:System.Xml.XmlReader" /> class to count when a read operation occurs. The count is incremented each time the reader calls an appropriate method, for example the <see cref="M:System.Xml.XmlReader.Read" /> method or the <see cref="M:System.Xml.XmlReader.ReadElementString" /> method. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the current count of the <see cref="T:System.Xml.XmlReader" />.</para></summary></Docs></Member><Member MemberName="ReadNull"><MemberSignature Language="C#" Value="protected bool ReadNull ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance bool ReadNull() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Instructs the <see cref="T:System.Xml.XmlReader" /> to read the current XML element if the element has a null attribute with the value true. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>true if the element has a null="true" attribute value and has been read; otherwise, false.</para></returns></Docs></Member><Member MemberName="ReadNullableQualifiedName"><MemberSignature Language="C#" Value="protected System.Xml.XmlQualifiedName ReadNullableQualifiedName ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Xml.XmlQualifiedName ReadNullableQualifiedName() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.XmlQualifiedName</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Instructs the <see cref="T:System.Xml.XmlReader" /> to read the fully qualified name of the element where it is currently positioned. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Xml.XmlQualifiedName" /> that represents the fully qualified name of the current XML element; otherwise, null if a null="true" attribute value is present.</para></returns></Docs></Member><Member MemberName="ReadNullableString"><MemberSignature Language="C#" Value="protected string ReadNullableString ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance string ReadNullableString() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Instructs the <see cref="T:System.Xml.XmlReader" /> to read a simple, text-only XML element that could be null. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The string value; otherwise, null.</para></returns></Docs></Member><Member MemberName="ReadReference"><MemberSignature Language="C#" Value="protected bool ReadReference (out string fixupReference);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance bool ReadReference(string fixupReference) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Parameters><Parameter Name="fixupReference" Type="System.String&amp;" RefType="out" /></Parameters><Docs><param name="fixupReference">To be added: an object of type 'string&amp;'</param><summary>To be added</summary><returns>To be added: an object of type 'bool'</returns><remarks>To be added</remarks></Docs></Member><Member MemberName="ReadReferencedElement"><MemberSignature Language="C#" Value="protected object ReadReferencedElement ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance object ReadReferencedElement() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ReadReferencedElement" /> method obtains the XML Schema data type by reading the xsi:type attribute of the multiRef element. The prefix xsi refers to the instance of the XML Schema namespace.</para><para>SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements. </para><para>SOAP encoding is described in Section 5 of the SOAP 1.1 specification.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Deserializes an object from a SOAP-encoded multiRef XML element. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The value of the referenced element in the document.</para></returns></Docs></Member><Member MemberName="ReadReferencedElement"><MemberSignature Language="C#" Value="protected object ReadReferencedElement (string name, string ns);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance object ReadReferencedElement(string name, string ns) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="ns" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>This signature of the <see cref="M:System.Xml.Serialization.XmlSerializationReader.ReadReferencedElement" /> method obtains the XML Schema data type of the multiRef element from the method parameters rather than by reading the xsi:type attribute. The prefix xsi refers to the instance of the XML Schema namespace.</para><para>SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements. </para><para>SOAP encoding is described in Section 5 of the SOAP 1.1 specification.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Deserializes an object from a SOAP-encoded multiRef XML element. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The value of the referenced element in the document.</para></returns><param name="name"><attribution license="cc4" from="Microsoft" modified="false" />The local name of the element's XML Schema data type.</param><param name="ns"><attribution license="cc4" from="Microsoft" modified="false" />The namespace of the element's XML Schema data type.</param></Docs></Member><Member MemberName="ReadReferencedElements"><MemberSignature Language="C#" Value="protected void ReadReferencedElements ();" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void ReadReferencedElements() cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements. </para><para>SOAP encoding is described in Section 5 of the SOAP 1.1 specification.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Deserializes objects from the SOAP-encoded multiRef elements in a SOAP message. </para></summary></Docs></Member><Member MemberName="ReadReferencingElement"><MemberSignature Language="C#" Value="protected object ReadReferencingElement (out string fixupReference);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance object ReadReferencingElement(string fixupReference) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="fixupReference" Type="System.String&amp;" RefType="out" /></Parameters><Docs><param name="fixupReference">To be added: an object of type 'string&amp;'</param><summary>To be added</summary><returns>To be added: an object of type 'object'</returns><remarks>To be added</remarks></Docs></Member><Member MemberName="ReadReferencingElement"><MemberSignature Language="C#" Value="protected object ReadReferencingElement (string name, string ns, out string fixupReference);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance object ReadReferencingElement(string name, string ns, string fixupReference) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="ns" Type="System.String" /><Parameter Name="fixupReference" Type="System.String&amp;" RefType="out" /></Parameters><Docs><param name="name">To be added: an object of type 'string'</param><param name="ns">To be added: an object of type 'string'</param><param name="fixupReference">To be added: an object of type 'string&amp;'</param><summary>To be added</summary><returns>To be added: an object of type 'object'</returns><remarks>To be added</remarks></Docs></Member><Member MemberName="ReadReferencingElement"><MemberSignature Language="C#" Value="protected object ReadReferencingElement (string name, string ns, bool elementCanBeType, out string fixupReference);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance object ReadReferencingElement(string name, string ns, bool elementCanBeType, string fixupReference) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="name" Type="System.String" /><Parameter Name="ns" Type="System.String" /><Parameter Name="elementCanBeType" Type="System.Boolean" /><Parameter Name="fixupReference" Type="System.String&amp;" RefType="out" /></Parameters><Docs><param name="name">To be added: an object of type 'string'</param><param name="ns">To be added: an object of type 'string'</param><param name="elementCanBeType">To be added: an object of type 'bool'</param><param name="fixupReference">To be added: an object of type 'string&amp;'</param><summary>To be added</summary><returns>To be added: an object of type 'object'</returns><remarks>To be added</remarks></Docs></Member><Member MemberName="ReadSerializable"><MemberSignature Language="C#" Value="protected System.Xml.Serialization.IXmlSerializable ReadSerializable (System.Xml.Serialization.IXmlSerializable serializable);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Xml.Serialization.IXmlSerializable ReadSerializable(class System.Xml.Serialization.IXmlSerializable serializable) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.Serialization.IXmlSerializable</ReturnType></ReturnValue><Parameters><Parameter Name="serializable" Type="System.Xml.Serialization.IXmlSerializable" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Populates an object from its XML representation at the current location of the <see cref="T:System.Xml.XmlReader" />. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An object that implements the <see cref="T:System.Xml.Serialization.IXmlSerializable" /> interface with its members populated from the location of the <see cref="T:System.Xml.XmlReader" />.</para></returns><param name="serializable"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.Serialization.IXmlSerializable" /> that corresponds to the current position of the <see cref="T:System.Xml.XmlReader" />.</param></Docs></Member><Member MemberName="ReadString"><MemberSignature Language="C#" Value="protected string ReadString (string value);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance string ReadString(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Produces the result of a call to the <see cref="M:System.Xml.XmlReader.ReadString" /> method appended to the input value. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The result of call to the <see cref="M:System.Xml.XmlReader.ReadString" /> method appended to the input value.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string to prefix to the result of a call to the <see cref="M:System.Xml.XmlReader.ReadString" /> method.</param></Docs></Member><Member MemberName="ReadString"><MemberSignature Language="C#" Value="protected string ReadString (string value, bool trim);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance string ReadString(string value, bool trim) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /><Parameter Name="trim" Type="System.Boolean" /></Parameters><Docs><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Returns the result of a call to the <see cref="M:System.Xml.XmlReader.ReadString" /> method of the <see cref="T:System.Xml.XmlReader" /> class, trimmed of white space if needed, and appended to the input value.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The result of the read operation appended to the input value.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string that will be appended to.</param><param name="trim"><attribution license="cc4" from="Microsoft" modified="false" />true if the result of the read operation should be trimmed; otherwise, false.</param></Docs></Member><Member MemberName="ReadTypedNull"><MemberSignature Language="C#" Value="protected object ReadTypedNull (System.Xml.XmlQualifiedName type);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance object ReadTypedNull(class System.Xml.XmlQualifiedName type) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Xml.XmlQualifiedName" /></Parameters><Docs><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Reads an XML element that allows null values (xsi:nil = 'true') and returns a generic <see cref="T:System.Nullable`1" /> value. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A generic <see cref="T:System.Nullable`1" /> that represents a null XML value.</para></returns><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlQualifiedName" /> that represents the simple data type for the current location of the <see cref="T:System.Xml.XmlReader" />.</param></Docs></Member><Member MemberName="ReadTypedPrimitive"><MemberSignature Language="C#" Value="protected object ReadTypedPrimitive (System.Xml.XmlQualifiedName type);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance object ReadTypedPrimitive(class System.Xml.XmlQualifiedName type) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="type" Type="System.Xml.XmlQualifiedName" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the value of the XML node at which the <see cref="T:System.Xml.XmlReader" /> is currently positioned. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The value of the node as a .NET Framework value type, if the value is a simple XML Schema data type.</para></returns><param name="type"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlQualifiedName" /> that represents the simple data type for the current location of the <see cref="T:System.Xml.XmlReader" />.</param></Docs></Member><Member MemberName="ReadXmlDocument"><MemberSignature Language="C#" Value="protected System.Xml.XmlDocument ReadXmlDocument (bool wrapped);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Xml.XmlDocument ReadXmlDocument(bool wrapped) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.XmlDocument</ReturnType></ReturnValue><Parameters><Parameter Name="wrapped" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Instructs the <see cref="T:System.Xml.XmlReader" /> to read an XML document root element at its current position.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.Xml.XmlDocument" /> that contains the root element that has been read.</para></returns><param name="wrapped"><attribution license="cc4" from="Microsoft" modified="false" />true if the method should read content only after reading the element's start element; otherwise, false.</param></Docs></Member><Member MemberName="ReadXmlNode"><MemberSignature Language="C#" Value="protected System.Xml.XmlNode ReadXmlNode (bool wrapped);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Xml.XmlNode ReadXmlNode(bool wrapped) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.XmlNode</ReturnType></ReturnValue><Parameters><Parameter Name="wrapped" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Instructs the <see cref="T:System.Xml.XmlReader" /> to read the XML node at its current position. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.Xml.XmlNode" /> that represents the XML node that has been read.</para></returns><param name="wrapped"><attribution license="cc4" from="Microsoft" modified="false" />true to read content only after reading the element's start element; otherwise, false.</param></Docs></Member><Member MemberName="Referenced"><MemberSignature Language="C#" Value="protected void Referenced (object o);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void Referenced(object o) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="o" Type="System.Object" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements. </para><para>SOAP encoding is described in Section 5 of the SOAP 1.1 specification.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Stores an object to be deserialized from a SOAP-encoded multiRef element.</para></summary><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />The object to be deserialized.</param></Docs></Member><Member MemberName="ResolveDynamicAssembly"><MemberSignature Language="C#" Value="protected static System.Reflection.Assembly ResolveDynamicAssembly (string assemblyFullName);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig class System.Reflection.Assembly ResolveDynamicAssembly(string assemblyFullName) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Reflection.Assembly</ReturnType></ReturnValue><Parameters><Parameter Name="assemblyFullName" Type="System.String" /></Parameters><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ResolveDynamicAssembly(System.String)" /> method is static.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a dynamically generated assembly by name.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A dynamically generated <see cref="T:System.Reflection.Assembly" />.</para></returns><param name="assemblyFullName"><attribution license="cc4" from="Microsoft" modified="false" />The full name of the assembly.</param></Docs></Member><Member MemberName="ShrinkArray"><MemberSignature Language="C#" Value="protected Array ShrinkArray (Array a, int length, Type elementType, bool isNullable);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Array ShrinkArray(class System.Array a, int32 length, class System.Type elementType, bool isNullable) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Array</ReturnType></ReturnValue><Parameters><Parameter Name="a" Type="System.Array" /><Parameter Name="length" Type="System.Int32" /><Parameter Name="elementType" Type="System.Type" /><Parameter Name="isNullable" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Ensures that a given array, or a copy, is no larger than a specified length. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>The existing <see cref="T:System.Array" />, if it is already small enough; otherwise, a new, smaller array that contains the original array's elements up to the size of<paramref name=" length" />.</para></returns><param name="a"><attribution license="cc4" from="Microsoft" modified="false" />The array that is being checked.</param><param name="length"><attribution license="cc4" from="Microsoft" modified="false" />The maximum length of the array.</param><param name="elementType"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Type" /> of the array's elements.</param><param name="isNullable"><attribution license="cc4" from="Microsoft" modified="false" />true if null for the array, if present for the input array, can be returned; otherwise, a new, smaller array.</param></Docs></Member><Member MemberName="ToByteArrayBase64"><MemberSignature Language="C#" Value="protected byte[] ToByteArrayBase64 (bool isNull);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance unsigned int8[] ToByteArrayBase64(bool isNull) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Byte[]</ReturnType></ReturnValue><Parameters><Parameter Name="isNull" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Instructs the <see cref="T:System.Xml.XmlReader" /> to read the string value at its current position and return it as a base-64 byte array.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A base-64 byte array; otherwise, null if the value of the <paramref name="isNull" /> parameter is true.</para></returns><param name="isNull"><attribution license="cc4" from="Microsoft" modified="false" />true to return null; false to return a base-64 byte array.</param></Docs></Member><Member MemberName="ToByteArrayBase64"><MemberSignature Language="C#" Value="protected static byte[] ToByteArrayBase64 (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig unsigned int8[] ToByteArrayBase64(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Byte[]</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToByteArrayBase64(System.String)" /> method is static.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Produces a base-64 byte array from an input string. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A base-64 byte array.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string to translate into a base-64 byte array.</param></Docs></Member><Member MemberName="ToByteArrayHex"><MemberSignature Language="C#" Value="protected byte[] ToByteArrayHex (bool isNull);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance unsigned int8[] ToByteArrayHex(bool isNull) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Byte[]</ReturnType></ReturnValue><Parameters><Parameter Name="isNull" Type="System.Boolean" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Instructs the <see cref="T:System.Xml.XmlReader" /> to read the string value at its current position and return it as a hexadecimal byte array.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A hexadecimal byte array; otherwise, null if the value of the <paramref name="isNull" /> parameter is true. </para></returns><param name="isNull"><attribution license="cc4" from="Microsoft" modified="false" />true to return null; false to return a hexadecimal byte array.</param></Docs></Member><Member MemberName="ToByteArrayHex"><MemberSignature Language="C#" Value="protected static byte[] ToByteArrayHex (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig unsigned int8[] ToByteArrayHex(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Byte[]</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToByteArrayHex(System.String)" /> method is static.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Produces a hexadecimal byte array from an input string.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A hexadecimal byte array.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string to translate into a hexadecimal byte array.</param></Docs></Member><Member MemberName="ToChar"><MemberSignature Language="C#" Value="protected static char ToChar (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig char ToChar(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Char</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToChar(System.String)" /> method is static.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Produces a <see cref="T:System.Char" /> object from an input string. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.Char" /> object.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string to translate into a <see cref="T:System.Char" /> object.</param></Docs></Member><Member MemberName="ToDate"><MemberSignature Language="C#" Value="protected static DateTime ToDate (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig valuetype System.DateTime ToDate(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.DateTime</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToDate(System.String)" /> method is static.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Produces a <see cref="T:System.DateTime" /> object from an input string. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.DateTime" /> object.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string to translate into a <see cref="T:System.DateTime" /> class object.</param></Docs></Member><Member MemberName="ToDateTime"><MemberSignature Language="C#" Value="protected static DateTime ToDateTime (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig valuetype System.DateTime ToDateTime(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.DateTime</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToDateTime(System.String)" /> method is static.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Produces a <see cref="T:System.DateTime" /> object from an input string. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.DateTime" /> object.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string to translate into a <see cref="T:System.DateTime" /> object.</param></Docs></Member><Member MemberName="ToEnum"><MemberSignature Language="C#" Value="protected static long ToEnum (string value, System.Collections.Hashtable h, string typeName);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig int64 ToEnum(string value, class System.Collections.Hashtable h, string typeName) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Int64</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /><Parameter Name="h" Type="System.Collections.Hashtable" /><Parameter Name="typeName" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToEnum(System.String,System.Collections.Hashtable,System.String)" /> method is static.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Produces a numeric enumeration value from a string that consists of delimited identifiers that represent constants from the enumerator list. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A long value that consists of the enumeration value as a series of bitwise OR operations.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string that consists of delimited identifiers where each identifier represents a constant from the set enumerator list.</param><param name="h"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Collections.Hashtable" /> that consists of the identifiers as keys and the constants as integral numbers.</param><param name="typeName"><attribution license="cc4" from="Microsoft" modified="false" />The name of the enumeration type.</param></Docs></Member><Member MemberName="ToTime"><MemberSignature Language="C#" Value="protected static DateTime ToTime (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig valuetype System.DateTime ToTime(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.DateTime</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToTime(System.String)" /> method is static.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Produces a <see cref="T:System.DateTime" /> from a string that represents the time. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A <see cref="T:System.DateTime" /> object.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A string to translate into a <see cref="T:System.DateTime" /> object.</param></Docs></Member><Member MemberName="ToXmlName"><MemberSignature Language="C#" Value="protected static string ToXmlName (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig string ToXmlName(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlName(System.String)" /> method is static. </para><para><see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlName(System.String)" /> converts 4-digit hexadecimal UCS-2 codes into Unicode.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Decodes an XML name.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A decoded string.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />An XML name to be decoded.</param></Docs></Member><Member MemberName="ToXmlNCName"><MemberSignature Language="C#" Value="protected static string ToXmlNCName (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig string ToXmlNCName(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNCName(System.String)" /> method is static.</para><para><see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNCName(System.String)" /> converts 4-digit hexadecimal UCS-2 codes into Unicode.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Decodes an XML name.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A decoded string.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />An XML name to be decoded.</param></Docs></Member><Member MemberName="ToXmlNmToken"><MemberSignature Language="C#" Value="protected static string ToXmlNmToken (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig string ToXmlNmToken(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are only intended for use by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNmToken(System.String)" /> method is static.</para><para><see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNmToken(System.String)" /> converts 4-digit hexadecimal UCS-2 codes into Unicode.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Decodes an XML name.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A decoded string.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />An XML name to be decoded.</param></Docs></Member><Member MemberName="ToXmlNmTokens"><MemberSignature Language="C#" Value="protected static string ToXmlNmTokens (string value);" /><MemberSignature Language="ILAsm" Value=".method familystatic hidebysig string ToXmlNmTokens(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>The <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNmTokens(System.String)" /> method is static.</para><para><see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlNmTokens(System.String)" /> converts 4-digit hexadecimal UCS-2 codes into Unicode.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Decodes an XML name.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>A decoded string.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />An XML name to be decoded.</param></Docs></Member><Member MemberName="ToXmlQualifiedName"><MemberSignature Language="C#" Value="protected System.Xml.XmlQualifiedName ToXmlQualifiedName (string value);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance class System.Xml.XmlQualifiedName ToXmlQualifiedName(string value) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Xml.XmlQualifiedName</ReturnType></ReturnValue><Parameters><Parameter Name="value" Type="System.String" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>If a prefix is present, the <see cref="M:System.Xml.Serialization.XmlSerializationReader.ToXmlQualifiedName(System.String)" /> method looks up the associated namespace for the current XML document and places the value in the <see cref="T:System.Xml.XmlQualifiedName" /> object.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Obtains an <see cref="T:System.Xml.XmlQualifiedName" /> from a name that may contain a prefix. </para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An <see cref="T:System.Xml.XmlQualifiedName" /> that represents a namespace-qualified XML name.</para></returns><param name="value"><attribution license="cc4" from="Microsoft" modified="false" />A name that may contain a prefix.</param></Docs></Member><Member MemberName="UnknownAttribute"><MemberSignature Language="C#" Value="protected void UnknownAttribute (object o, System.Xml.XmlAttribute attr);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void UnknownAttribute(object o, class System.Xml.XmlAttribute attr) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="o" Type="System.Object" /><Parameter Name="attr" Type="System.Xml.XmlAttribute" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>Add a handler method to the <see cref="M:System.Xml.Serialization.XmlSerializationReader.UnknownAttribute(System.Object,System.Xml.XmlAttribute)" /> method to handle unknown attributes while the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is executing its <see cref="Overload:System.Xml.Serialization.XmlSerializer.Deserialize" /> method.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises an <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownAttribute" /> event for the current position of the <see cref="T:System.Xml.XmlReader" />.</para></summary><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />An object that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is attempting to deserialize, subsequently accessible through the <see cref="P:System.Xml.Serialization.XmlAttributeEventArgs.ObjectBeingDeserialized" /> property.</param><param name="attr"><attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.XmlAttribute" /> that represents the attribute in question.</param></Docs></Member><Member MemberName="UnknownAttribute"><MemberSignature Language="C#" Value="protected void UnknownAttribute (object o, System.Xml.XmlAttribute attr, string qnames);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void UnknownAttribute(object o, class System.Xml.XmlAttribute attr, string qnames) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="o" Type="System.Object" /><Parameter Name="attr" Type="System.Xml.XmlAttribute" /><Parameter Name="qnames" Type="System.String" /></Parameters><Docs><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises an <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownAttribute" /> event for the current position of the <see cref="T:System.Xml.XmlReader" />.</para></summary><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />An object that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is attempting to deserialize, subsequently accessible through the <see cref="P:System.Xml.Serialization.XmlAttributeEventArgs.ObjectBeingDeserialized" /> property.</param><param name="attr"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Xml.XmlAttribute" /> that represents the attribute in question.</param><param name="qnames"><attribution license="cc4" from="Microsoft" modified="false" />A comma-delimited list of XML qualified names.</param></Docs></Member><Member MemberName="UnknownElement"><MemberSignature Language="C#" Value="protected void UnknownElement (object o, System.Xml.XmlElement elem);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void UnknownElement(object o, class System.Xml.XmlElement elem) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="o" Type="System.Object" /><Parameter Name="elem" Type="System.Xml.XmlElement" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises an <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownElement" /> event for the current position of the <see cref="T:System.Xml.XmlReader" />.</para></summary><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Object" /> that is being deserialized.</param><param name="elem"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlElement" /> for which an event is raised.</param></Docs></Member><Member MemberName="UnknownElement"><MemberSignature Language="C#" Value="protected void UnknownElement (object o, System.Xml.XmlElement elem, string qnames);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void UnknownElement(object o, class System.Xml.XmlElement elem, string qnames) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="o" Type="System.Object" /><Parameter Name="elem" Type="System.Xml.XmlElement" /><Parameter Name="qnames" Type="System.String" /></Parameters><Docs><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises an <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownElement" /> event for the current position of the <see cref="T:System.Xml.XmlReader" />.</para></summary><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />An object that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is attempting to deserialize, subsequently accessible through the <see cref="P:System.Xml.Serialization.XmlAttributeEventArgs.ObjectBeingDeserialized" /> property.</param><param name="elem"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Xml.XmlElement" /> for which an event is raised.</param><param name="qnames"><attribution license="cc4" from="Microsoft" modified="false" />A comma-delimited list of XML qualified names.</param></Docs></Member><Member MemberName="UnknownNode"><MemberSignature Language="C#" Value="protected void UnknownNode (object o);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void UnknownNode(object o) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="o" Type="System.Object" /></Parameters><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises an <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownNode" /> event for the current position of the <see cref="T:System.Xml.XmlReader" />. </para></summary><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />The object that is being deserialized.</param></Docs></Member><Member MemberName="UnknownNode"><MemberSignature Language="C#" Value="protected void UnknownNode (object o, string qnames);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void UnknownNode(object o, string qnames) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="o" Type="System.Object" /><Parameter Name="qnames" Type="System.String" /></Parameters><Docs><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises an <see cref="E:System.Xml.Serialization.XmlSerializer.UnknownNode" /> event for the current position of the <see cref="T:System.Xml.XmlReader" />.</para></summary><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />The object being deserialized.</param><param name="qnames"><attribution license="cc4" from="Microsoft" modified="false" />A comma-delimited list of XML qualified names.</param></Docs></Member><Member MemberName="UnreferencedObject"><MemberSignature Language="C#" Value="protected void UnreferencedObject (string id, object o);" /><MemberSignature Language="ILAsm" Value=".method familyhidebysig instance void UnreferencedObject(string id, object o) cil managed" /><MemberType>Method</MemberType><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion><AssemblyVersion>4.0.0.0</AssemblyVersion></AssemblyInfo><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="id" Type="System.String" /><Parameter Name="o" Type="System.Object" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The protected members of <see cref="T:System.Xml.Serialization.XmlSerializationReader" /> are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.</para><para>SOAP encoding, as specified in Section 5 of the SOAP 1.1 specification, allows for elements referenced multiple times in a SOAP message (or optionally, just once) to be referred by an href attribute in the main message. An <see cref="E:System.Xml.Serialization.XmlSerializer.UnreferencedObject" /> event occurs when such an element appears, but there is no href reference to it.</para><para>Add a handler method to <see cref="E:System.Xml.Serialization.XmlSerializer.UnreferencedObject" /> to provide custom handling for unreferenced objects while the <see cref="T:System.Xml.Serialization.XmlSerializer" /> executes its <see cref="Overload:System.Xml.Serialization.XmlSerializer.Deserialize" /> method.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Raises an <see cref="E:System.Xml.Serialization.XmlSerializer.UnreferencedObject" /> event for the current position of the <see cref="T:System.Xml.XmlReader" />.</para></summary><param name="id"><attribution license="cc4" from="Microsoft" modified="false" />A unique string that is used to identify the unreferenced object, subsequently accessible through the <see cref="P:System.Xml.Serialization.UnreferencedObjectEventArgs.UnreferencedId" /> property.</param><param name="o"><attribution license="cc4" from="Microsoft" modified="false" />An object that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> is attempting to deserialize, subsequently accessible through the <see cref="P:System.Xml.Serialization.UnreferencedObjectEventArgs.UnreferencedObject" /> property.</param></Docs></Member></Members></Type>