XPathNavigator.CreateAttribute(String, String, String, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用通过指定值指定的命名空间前缀、本地名称和命名空间 URI 在当前元素节点上创建一个属性节点。
public:
virtual void CreateAttribute(System::String ^ prefix, System::String ^ localName, System::String ^ namespaceURI, System::String ^ value);
public virtual void CreateAttribute (string prefix, string localName, string namespaceURI, string value);
public virtual void CreateAttribute (string? prefix, string localName, string? namespaceURI, string? value);
abstract member CreateAttribute : string * string * string * string -> unit
override this.CreateAttribute : string * string * string * string -> unit
Public Overridable Sub CreateAttribute (prefix As String, localName As String, namespaceURI As String, value As String)
参数
- prefix
- String
新的属性节点的命名空间前缀(如果有)。
- namespaceURI
- String
新的属性节点的命名空间 URI(如果有)。
例外
XPathNavigator 未定位在元素节点上。
示例
在以下示例中,对文件中第一book
contosoBooks.xml
个discount
元素的price
子元素创建新属性。
XmlDocument^ document = gcnew XmlDocument();
document->Load("contosoBooks.xml");
XPathNavigator^ navigator = document->CreateNavigator();
navigator->MoveToChild("bookstore", "http://www.contoso.com/books");
navigator->MoveToChild("book", "http://www.contoso.com/books");
navigator->MoveToChild("price", "http://www.contoso.com/books");
navigator->CreateAttribute("", "discount", "", "1.00");
navigator->MoveToParent();
Console::WriteLine(navigator->OuterXml);
XmlDocument document = new XmlDocument();
document.Load("contosoBooks.xml");
XPathNavigator navigator = document.CreateNavigator();
navigator.MoveToChild("bookstore", "http://www.contoso.com/books");
navigator.MoveToChild("book", "http://www.contoso.com/books");
navigator.MoveToChild("price", "http://www.contoso.com/books");
navigator.CreateAttribute("", "discount", "", "1.00");
navigator.MoveToParent();
Console.WriteLine(navigator.OuterXml);
Dim document As XmlDocument = New XmlDocument()
document.Load("contosoBooks.xml")
Dim navigator As XPathNavigator = document.CreateNavigator()
navigator.MoveToChild("bookstore", "http://www.contoso.com/books")
navigator.MoveToChild("book", "http://www.contoso.com/books")
navigator.MoveToChild("price", "http://www.contoso.com/books")
navigator.CreateAttribute("", "discount", "", "1.00")
navigator.MoveToParent()
Console.WriteLine(navigator.OuterXml)
该示例使用 contosoBooks.xml
文件作为输入。
<?xml version="1.0" encoding="utf-8" ?>
<bookstore xmlns="http://www.contoso.com/books">
<book genre="autobiography" publicationdate="1981-03-22" ISBN="1-861003-11-0">
<title>The Autobiography of Benjamin Franklin</title>
<author>
<first-name>Benjamin</first-name>
<last-name>Franklin</last-name>
</author>
<price>8.99</price>
</book>
<book genre="novel" publicationdate="1967-11-17" ISBN="0-201-63361-2">
<title>The Confidence Man</title>
<author>
<first-name>Herman</first-name>
<last-name>Melville</last-name>
</author>
<price>11.99</price>
</book>
<book genre="philosophy" publicationdate="1991-02-15" ISBN="1-861001-57-6">
<title>The Gorgias</title>
<author>
<name>Plato</name>
</author>
<price>9.99</price>
</book>
</bookstore>
注解
可以使用 或 LookupNamespace 方法获取LookupPrefix命名空间前缀和 URI 值。 例如,以下语法使用范围内的命名空间 xmlns:bk="http://www.contoso.com/books"
创建属性:
editor.CreateAttribute(navigator.Prefix, "attributeName", LookupNamespace(navigator.Prefix), "text")
这会在当前元素上创建新属性 <bk:element attributeName="text"/>
。
下面是使用 CreateAttribute 方法时要考虑的重要注意事项。
如果指定的命名空间前缀为 String.Empty 或
null
,则新属性的命名空间 URI 的前缀将从范围内的当前命名空间获取。 如果没有向当前作用域中的指定命名空间 URI 分配命名空间前缀,则会自动生成命名空间前缀。 例如,若要在文件的默认命名空间contosoBooks.xml
中的元素上创建新属性, (xmlns="http://www.contoso.com/books"
) ,请同时为命名空间前缀和命名空间 URI 参数指定null
或 String.Empty 。 将http://www.contoso.com/books
指定为命名空间 URI 参数将导致 CreateAttribute 方法自动生成新属性的命名空间前缀。如果创建的新属性是命名空间节点,该节点与元素上的命名空间声明冲突,可能是因为所选命名空间前缀由同一范围内的另一个命名空间声明使用,或者因为所选前缀与元素的前缀相同,但绑定到不同的命名空间 URI,则会引发异常。
方法 CreateAttribute 不会影响 XPathNavigator的位置。