XmlAttribute.Prefix 속성

정의

이 노드의 네임스페이스 접두사를 가져오거나 설정합니다.

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"와 다릅니다.

이 노드는 특성이고, 지정된 접두사는 "xmlns"이고, 이 노드의 namespaceURI는 "http://www.w3.org/2000/xmlns/"와 다릅니다.

이 노드는 특성이며 이 노드의 정규화된 이름은 "xmlns" [네임스페이스]입니다.

예제

다음 예제에서는 특성 컬렉션의 각 노드에 대한 정보를 표시합니다.

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:genre='novel'>" +
                "<title>Pride And Prejudice</title>" +
                "</book>");

    //Create an attribute collection.
    XmlAttributeCollection attrColl = doc.DocumentElement.Attributes;

    Console.WriteLine("Display information on each of the attributes... \r\n");
    foreach (XmlAttribute attr in attrColl){
       Console.Write("{0}:{1} = {2}", attr.Prefix, attr.LocalName, attr.Value);
       Console.WriteLine("\t namespaceURI=" + attr.NamespaceURI);
    }
  }
}
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:genre='novel'>" & _
                "<title>Pride And Prejudice</title>" & _
                "</book>") 

    'Create an attribute collection.
    Dim attrColl as XmlAttributeCollection = doc.DocumentElement.Attributes

    Console.WriteLine("Display information on each of the attributes... ")
    Dim attr as XmlAttribute
    for each attr in attrColl
       Console.Write("{0}:{1} = {2}", attr.Prefix, attr.LocalName, attr.Value)
       Console.WriteLine("   namespaceURI=" + attr.NamespaceURI)
    next

  end sub
end class

설명

특성의 접두사를 변경해도 네임스페이스 URI가 변경되지 않으므로 기본값으로 알려진 특성의 접두사를 변경해도 기본값과 원래 접두사를 가진 새 특성이 만들어지지 않습니다.

적용 대상