XmlAttribute(String, String, String, XmlDocument) 构造函数

定义

初始化 XmlAttribute 类的新实例。

protected public:
 XmlAttribute(System::String ^ prefix, System::String ^ localName, System::String ^ namespaceURI, System::Xml::XmlDocument ^ doc);
protected internal XmlAttribute (string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc);
protected internal XmlAttribute (string? prefix, string localName, string? namespaceURI, System.Xml.XmlDocument doc);
new System.Xml.XmlAttribute : string * string * string * System.Xml.XmlDocument -> System.Xml.XmlAttribute
Protected Friend Sub New (prefix As String, localName As String, namespaceURI As String, doc As XmlDocument)

参数

prefix
String

命名空间前缀。

localName
String

属性的本地名称。

namespaceURI
String

命名空间统一资源标识符 (URI)。

doc
XmlDocument

父 XML 文档。

注解

不要直接实例化 XmlAttribute ;而是使用方法,例如 CreateAttribute

适用于