XmlDeclaration.Encoding Свойство

Определение

Возвращает или задает уровень кодирования XML-документа.

public:
 property System::String ^ Encoding { System::String ^ get(); void set(System::String ^ value); };
public string Encoding { get; set; }
member this.Encoding : string with get, set
Public Property Encoding As String

Значение свойства

Допустимое имя кодировки символов. Наиболее часто поддерживаемые имена кодировки символов для XML:

Категории Имена кодировки
Юникода UTF-8, UTF-16
ISO 10646 ISO-10646-UCS-2, ISO-10646-UCS-4
ISO 8859 ISO-8859-n (где "n" является цифрой от 1 до 9)
JIS X-0208-1997 ISO-2022-JP, Shift_JIS, EUC-JP

Это значение является необязательным. Если значение не задано, это свойство возвращает String.Empty.

Если атрибут кодирования не включен, кодирование UTF-8 предполагается при написании или сохранении документа.

Примеры

В следующем примере создается XmlDeclaration узел и добавляется в XML-документ.

using System;
using System.IO;
using System.Xml;

public class Sample {

  public static void Main() {

    // Create and load the XML document.
    XmlDocument doc = new XmlDocument();
    string xmlString = "<book><title>Oberon's Legacy</title></book>";
    doc.Load(new StringReader(xmlString));

    // Create an XML declaration.
    XmlDeclaration xmldecl;
    xmldecl = doc.CreateXmlDeclaration("1.0",null,null);
    xmldecl.Encoding="UTF-8";
    xmldecl.Standalone="yes";

    // Add the new node to the document.
    XmlElement root = doc.DocumentElement;
    doc.InsertBefore(xmldecl, root);

    // Display the modified XML document
    Console.WriteLine(doc.OuterXml);
  }
}
Imports System.IO
Imports System.Xml

public class Sample 

  public shared sub Main() 
   
    ' Create and load the XML document.
    Dim doc as XmlDocument = new XmlDocument()
    Dim xmlString as string = "<book><title>Oberon's Legacy</title></book>"
    doc.Load(new StringReader(xmlString))
  
    ' Create an XML declaration. 
    Dim xmldecl as XmlDeclaration 
    xmldecl = doc.CreateXmlDeclaration("1.0",nothing, nothing)
    xmldecl.Encoding="UTF-8"
    xmldecl.Standalone="yes"     
      
    ' Add the new node to the document.
    Dim root as XmlElement = doc.DocumentElement
    doc.InsertBefore(xmldecl, root)
    
    ' Display the modified XML document 
    Console.WriteLine(doc.OuterXml)
      
  end sub
end class

Комментарии

В отличие от большинства XML-атрибутов, значения атрибутов кодировки не учитывает регистр. Это связано с тем, что имена символов кодирования соответствуют стандартам центра сертификации (IANA) ISO и Интернета.

Применяется к