XmlReader.NamespaceURI Property
.NET Framework 4
When overridden in a derived class, gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.
Assembly: System.Xml (in System.Xml.dll)
The following example displays the local name of each node, and, if they exist, the prefix and namespace URI.
XmlReader reader = XmlReader.Create("book2.xml"); // Parse the file. If they exist, display the prefix and // namespace URI of each node. while (reader.Read()) { if (reader.IsStartElement()) { if (reader.Prefix==String.Empty) Console.WriteLine("<{0}>", reader.LocalName); else { Console.Write("<{0}:{1}>", reader.Prefix, reader.LocalName); Console.WriteLine(" The namespace URI is " + reader.NamespaceURI); } } } reader.Close();
The example uses the file, book2.xml, as input.
<book xmlns:bk='urn:samples'> <title>Pride And Prejudice</title> <bk:genre>novel</bk:genre> </book>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.