XmlDeclaration(String, String, String, XmlDocument) 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 XmlDeclaration 类的新实例。
protected public:
XmlDeclaration(System::String ^ version, System::String ^ encoding, System::String ^ standalone, System::Xml::XmlDocument ^ doc);
protected internal XmlDeclaration (string version, string encoding, string standalone, System.Xml.XmlDocument doc);
protected internal XmlDeclaration (string version, string? encoding, string? standalone, System.Xml.XmlDocument doc);
new System.Xml.XmlDeclaration : string * string * string * System.Xml.XmlDocument -> System.Xml.XmlDeclaration
Protected Friend Sub New (version As String, encoding As String, standalone As String, doc As XmlDocument)
参数
- standalone
- String
指示 XML 文档是否取决于外部 DTD,请参见 Standalone 属性。
- doc
- XmlDocument
父 XML 文档。
注解
不要直接实例化 ; XmlDeclaration 而是使用 等 CreateNode方法。