XPathNavigator::ValueAs Method (Type^, IXmlNamespaceResolver^)
.NET Framework (current version)
Gets the current node's value as the Type specified, using the IXmlNamespaceResolver object specified to resolve namespace prefixes.
Assembly: System.Xml (in System.Xml.dll)
public: virtual Object^ ValueAs( Type^ returnType, IXmlNamespaceResolver^ nsResolver ) override
Parameters
- returnType
-
Type:
System::Type^
The Type to return the current node's value as.
- nsResolver
-
Type:
System.Xml::IXmlNamespaceResolver^
The IXmlNamespaceResolver object used to resolve namespace prefixes.
| Exception | Condition |
|---|---|
| FormatException | The current node's value is not in the correct format for the target type. |
| InvalidCastException | The attempted cast is not valid. |
The ValueAs method attempts to convert the value of the current node to the .NET Framework type, specified according to the XPath 2.0 rules for casting the current node's type.
The IXmlNamespaceResolver object is used to resolve namespace prefixes related to type conversions. For example, when converting an xs:QName to an xs:string.
.NET Framework
Available since 2.0
Available since 2.0
Show: