Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XPathNavigator::XmlLang Property

 

Gets the xml:lang scope for the current node.

Namespace:   System.Xml.XPath
Assembly:  System.Xml (in System.Xml.dll)

public:
property String^ XmlLang {
	virtual String^ get();
}

Property Value

Type: System::String^

A String that contains the value of the xml:lang scope, or String::Empty if the current node has no xml:lang scope value to return.

In the example XML below, when the XPathNavigator is positioned on the name element, the XmlLang property returns a scope of en-us indicating that the node is in the scope of a xml:lang="en-us" attribute.

<root xml:lang="en-us">
    <name>Name</name>
</root>

.NET Framework
Available since 1.1
Silverlight
Available since 4.0
Return to top
Show:
© 2017 Microsoft