XmlSerializationReader.ReadXmlNode(Boolean) Method

Definition

Instructs the XmlReader to read the XML node at its current position.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected:
 System::Xml::XmlNode ^ ReadXmlNode(bool wrapped);
protected System.Xml.XmlNode? ReadXmlNode (bool wrapped);
protected System.Xml.XmlNode ReadXmlNode (bool wrapped);
member this.ReadXmlNode : bool -> System.Xml.XmlNode
Protected Function ReadXmlNode (wrapped As Boolean) As XmlNode

Parameters

wrapped
Boolean

true to read content only after reading the element's start element; otherwise, false.

Returns

An XmlNode that represents the XML node that has been read.

Remarks

The protected members of XmlSerializationReader are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

Applies to