August 2003
Intermediate to advanced
928 pages
32h 1m
English
XmlDeclaration
This class contains the XML declaration of a document, which is the first element of an XML document containing the XML version number, encoding, and other optional information about the file.
public class XmlDeclaration : XmlLinkedNode { // Protected Constructors protected internal XmlDeclaration(stringversion, stringencoding, stringstandaloneXmlDocumentdoc); // Public Instance Properties public string Encoding{set; get; } public override string InnerText{set; get; } // overrides XmlNode public override string LocalName{get; } // overrides XmlNode public override string Name{get; } // overrides XmlNode public override XmlNodeType NodeType{get; } // overrides XmlNode public string Standalone{set; get; } public override string Value{set; get; } // overrides XmlNode public string Version{get; } // Public Instance Methods public override XmlNode CloneNode(booldeep); // overrides XmlNode public override void WriteContentTo(XmlWriterw); // overrides XmlNode public override void WriteTo(XmlWriterw); // overrides XmlNode }
System.Object
→
XmlNode(System.ICloneable,
System.Collections.IEnumerable,
System.Xml.XPath.IXPathNavigable)
→
XmlLinkedNode
→
XmlDeclaration
XmlDocument.CreateXmlDeclaration( )