XmlElement.Prefix 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置该节点的命名空间前缀。
public:
virtual property System::String ^ Prefix { System::String ^ get(); void set(System::String ^ value); };
public override string Prefix { get; set; }
member this.Prefix : string with get, set
Public Overrides Property Prefix As String
属性值
该节点的命名空间前缀。 如果没有前缀,则该属性返回 String.Empty。
例外
该节点是只读的。
指定的前缀包含无效字符。
指定的前缀格式不正确。
该节点的 namespaceURI 为 null
。
指定的前缀为“xml”,而该节点的 namespaceURI 与 http://www.w3.org/XML/1998/namespace 不同。
示例
以下示例显示有关 ISBN 元素的信息。
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlDocument^ doc = gcnew XmlDocument;
doc->LoadXml( "<book xmlns:bk='urn:samples'>"
"<bk:ISBN>1-861001-57-5</bk:ISBN>"
"<title>Pride And Prejudice</title>"
"</book>" );
// Display information on the ISBN element.
XmlElement^ elem = dynamic_cast<XmlElement^>(doc->DocumentElement->FirstChild);
Console::Write( "{0}:{1} = {2}", elem->Prefix, elem->LocalName, elem->InnerText );
Console::WriteLine( "\t namespaceURI={0}", elem->NamespaceURI );
}
// This code produces the following output.
// bk:ISBN = 1-861001-57-5 namespaceURI=urn:samples
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book xmlns:bk='urn:samples'>" +
"<bk:ISBN>1-861001-57-5</bk:ISBN>" +
"<title>Pride And Prejudice</title>" +
"</book>");
// Display information on the ISBN element.
XmlElement elem = (XmlElement) doc.DocumentElement.FirstChild;
Console.Write("{0}:{1} = {2}", elem.Prefix, elem.LocalName, elem.InnerText);
Console.WriteLine("\t namespaceURI=" + elem.NamespaceURI);
}
}
// This code produces the following output.
// bk:ISBN = 1-861001-57-5 namespaceURI=urn:samples
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book xmlns:bk='urn:samples'>" & _
"<bk:ISBN>1-861001-57-5</bk:ISBN>" & _
"<title>Pride And Prejudice</title>" & _
"</book>")
' Display information on the ISBN element.
Dim elem as XmlElement
elem = CType(doc.DocumentElement.ChildNodes.Item(0),XmlElement)
Console.Write("{0}:{1} = {2}", elem.Prefix, elem.LocalName, elem.InnerText)
Console.WriteLine(" namespaceURI=" + elem.NamespaceURI)
end sub
end class
' This code produces the following output.
' bk:ISBN = 1-861001-57-5 namespaceURI=urn:samples
注解
设置此属性将更改 Name 属性,该属性保留限定 XmlElement
名称。 但是,更改前缀不会更改元素的命名空间 URI。