XML declaration

In this chapter you will learn:

  1. Get Encoding, Version and standalone from XML declaration

Get Encoding, Version and standalone from XML declaration

using System;//from ja  va2s .  c  o m
using System.Linq;
using System.Data.Linq;
using System.Xml.Linq;

class Program {
    static void Main(string[] args) {
        XDocument xml = XDocument.Load("Hello_XLINQ.xml");
        Console.WriteLine("Encoding: {0}", xml.Declaration.Encoding);
        Console.WriteLine("Version: {0}", xml.Declaration.Version);
        Console.WriteLine("Standalone: {0}", xml.Declaration.Standalone);
    }
}

Next chapter...

What you will learn in the next chapter:

  1. How to crate CData section with XCData
Home » C# Tutorial » XML Linq
XDocument
Create XDocument
Add to XDocument
Parse XML file with XDocument
Load XML string with XDocument
XDocument Root
Query XML document with Linq
Save XML document
XDocument Serialize
XElement namespace
Adding attribute
XElement's NextNode
XAttribute
XAttribute value
XAttribute Properties
XAttribute namespace
XComment
XDeclaration
XML declaration
XCData
XNamespace