XmlDeclaration.Standalone 属性

在SharpDevelop中发现的Standalone属性,这是msdn上的解释

获取或设置独立属性的值。

如果 XML 文档所需要的所有实体声明都包含在文档内,则有效值为 yes,或者如果需要外部文档类型定义 (DTD),则为 no。
如果 XML 声明中没有独立属性 (Attribute),该属性 (Property) 将返回 String.Empty。

下面的示例创建一个 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);

        System.Console.Read();

    }

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值