XName.Namespace Property returns the namespace part of the fully qualified name. : XName « XML LINQ « C# / C Sharp






XName.Namespace Property returns the namespace part of the fully qualified name.

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

public class MainClass{
   public static void Main(){
        XNamespace ns = "http://www.domain.com";
        XElement root = new XElement(ns + "Root", "content");
        Console.WriteLine(root.Name);
        Console.WriteLine(root.Name.LocalName);
        Console.WriteLine(root.Name.Namespace);
   }
}

   
  








Related examples in the same category