System::Xml::XmlReader::ReadElementContentAs method

XmlReader::ReadElementContentAs(const TypeInfo&, SharedPtr<IXmlNamespaceResolver>) method

Reads the element content as the requested type.

virtual SharedPtr<Object> System::Xml::XmlReader::ReadElementContentAs(const TypeInfo &returnType, SharedPtr<IXmlNamespaceResolver> namespaceResolver)
ParameterTypeDescription
returnTypeconst TypeInfo&The type of the value to be returned.
namespaceResolverSharedPtr<IXmlNamespaceResolver>An IXmlNamespaceResolver object that is used to resolve any namespace prefixes related to type conversion.

ReturnValue

The element content converted to the requested typed object.

See Also

XmlReader::ReadElementContentAs(const TypeInfo&, SharedPtr<IXmlNamespaceResolver>, String, String) method

Checks that the specified local name and namespace URI matches that of the current element, then reads the element content as the requested type.

virtual SharedPtr<Object> System::Xml::XmlReader::ReadElementContentAs(const TypeInfo &returnType, SharedPtr<IXmlNamespaceResolver> namespaceResolver, String localName, String namespaceURI)
ParameterTypeDescription
returnTypeconst TypeInfo&The type of the value to be returned.
namespaceResolverSharedPtr<IXmlNamespaceResolver>An IXmlNamespaceResolver object that is used to resolve any namespace prefixes related to type conversion.
localNameStringThe local name of the element.
namespaceURIStringThe namespace URI of the element.

ReturnValue

The element content converted to the requested typed object.

See Also