XmlNodeEventArgs.NamespaceURI Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the namespace URI that is associated with the XML node being deserialized.
public:
 property System::String ^ NamespaceURI { System::String ^ get(); };public string NamespaceURI { get; }member this.NamespaceURI : stringPublic ReadOnly Property NamespaceURI As StringProperty Value
The namespace URI that is associated with the XML node being deserialized.
Examples
The following example prints the URI of the unknown XML node that caused the UnknownNode event to occur.
private void serializer_UnknownNode
(object sender, XmlNodeEventArgs e)
{
   Console.WriteLine
   ("UnknownNode Namespace URI: " + e.NamespaceURI);
}
Private Sub serializer_UnknownNode _
                (ByVal sender As Object, _
                 ByVal e As XmlNodeEventArgs)
    Console.WriteLine("UnknownNode Namespace URI: " & e.NamespaceURI)
End Sub