XmlAttribute(String, String, String, XmlDocument) 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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。