XmlDictionaryReader.ReadContentAs(Type, IXmlNamespaceResolver) Method

Definition

Converts a node's content to a specified type.

public:
 override System::Object ^ ReadContentAs(Type ^ type, System::Xml::IXmlNamespaceResolver ^ namespaceResolver);
public override object ReadContentAs (Type type, System.Xml.IXmlNamespaceResolver namespaceResolver);
public override object ReadContentAs (Type type, System.Xml.IXmlNamespaceResolver? namespaceResolver);
override this.ReadContentAs : Type * System.Xml.IXmlNamespaceResolver -> obj
Public Overrides Function ReadContentAs (type As Type, namespaceResolver As IXmlNamespaceResolver) As Object

Parameters

type
Type

The Type of the value to be returned.

namespaceResolver
IXmlNamespaceResolver

An IXmlNamespaceResolver object that is used to resolve any namespace prefixes related to type conversion. For example, this can be used when converting an XmlQualifiedName object to an xs:string. This value can be a null reference.

Returns

The concatenated text content or attribute value converted to the requested type.

Applies to