XElement.GetDefaultNamespace gets the default XNamespace of this XElement. : Namespace « XML LINQ « C# / C Sharp






XElement.GetDefaultNamespace gets the default XNamespace of this XElement.

 

using System;
using System.Linq;
using System.Xml.Linq;
using System.Collections;
using System.Collections.Generic;


public class MainClass{
   public static void Main(){
        String xml = "<root xmlns='http://www.domain.com'/>";
        XElement e = XElement.Parse(xml);
        Console.WriteLine("Default namespace: {0}", e.GetDefaultNamespace());
   }
}

   
  








Related examples in the same category

1.XElement with namespace
2.Create XElement with namespace
3.Attribute with namespace
4.Query Attributes with namespace
5.Query attributes with namespace
6.XElement.GetNamespaceOfPrefix gets the namespace associated with a particular prefix for this XElement.
7.XElement.GetPrefixOfNamespace gets the prefix associated with a namespace for this XElement.
8.Two namespaces