XmlAttribute.BaseURI-Eigenschaft
Ruft den Basis-URI (Uniform Resource Identifier) des Knotens ab.
Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)
Syntax
'Declaration
Public Overrides ReadOnly Property BaseURI As String
'Usage
Dim instance As XmlAttribute
Dim value As String
value = instance.BaseURI
public override string BaseURI { get; }
public:
virtual property String^ BaseURI {
String^ get () override;
}
/** @property */
public String get_BaseURI ()
public override function get BaseURI () : String
Eigenschaftenwert
Die Position, aus der der Knoten geladen wurde oder String.Empty, wenn der Knoten über keinen Basis-URI verfügt. Attributknoten haben die gleiche Basis-URI wie das Besitzerelement. Wenn ein Attributknoten kein Besitzerelement aufweist, gibt BaseURI String.Empty zurück.
Hinweise
Ein Netzwerk-XML-Dokument besteht aus Datensegmenten, die mithilfe verschiedener Standardeinschlussmechanismen des W3C zusammengesetzt werden, und enthält daher Knoten aus unterschiedlichen Quellen. Der BaseURI gibt die Quelle dieser Knoten an.
Weitere Informationen über BaseURI und das Verhalten gegenüber anderen Knotentypen erhalten Sie unter XmlNode.BaseURI.
Diese Eigenschaft ist eine Microsoft-Erweiterung des Dokumentobjektmodells (Document Object Model, DOM).
Beispiel
Im folgenden Beispielcode werden Informationen über den Attributknoten einschließlich des Basis-URI angezeigt.
Option Explicit
Option Strict
Imports System
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
'Create the XmlDocument.
Dim doc As New XmlDocument()
doc.Load("https://localhost/baseuri.xml")
'Display information on the attribute node. The value
'returned for BaseURI is 'https://localhost/baseuri.xml'.
Dim attr As XmlAttribute = doc.DocumentElement.Attributes(0)
Console.WriteLine("Name of the attribute: {0}", attr.Name)
Console.WriteLine("Base URI of the attribute: {0}", attr.BaseURI)
Console.WriteLine("The value of the attribute: {0}", attr.InnerText)
End Sub 'Main
End Class 'Sample
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
//Create the XmlDocument.
XmlDocument doc = new XmlDocument();
doc.Load("https://localhost/baseuri.xml");
//Display information on the attribute node. The value
//returned for BaseURI is 'https://localhost/baseuri.xml'.
XmlAttribute attr = doc.DocumentElement.Attributes[0];
Console.WriteLine("Name of the attribute: {0}", attr.Name);
Console.WriteLine("Base URI of the attribute: {0}", attr.BaseURI);
Console.WriteLine("The value of the attribute: {0}", attr.InnerText);
}
}
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
//Create the XmlDocument.
XmlDocument^ doc = gcnew XmlDocument;
doc->Load( "https://localhost/baseuri.xml" );
//Display information on the attribute node. The value
//returned for BaseURI is 'https://localhost/baseuri.xml'.
XmlAttribute^ attr = doc->DocumentElement->Attributes[ 0 ];
Console::WriteLine( "Name of the attribute: {0}", attr->Name );
Console::WriteLine( "Base URI of the attribute: {0}", attr->BaseURI );
Console::WriteLine( "The value of the attribute: {0}", attr->InnerText );
}
import System.*;
import System.IO.*;
import System.Xml.*;
public class Sample
{
public static void main(String[] args)
{
//Create the XmlDocument.
XmlDocument doc = new XmlDocument();
doc.Load("https://localhost/baseuri.xml");
//Display information on the attribute node. The value
//returned for BaseURI is 'https://localhost/baseuri.xml'.
XmlAttribute attr =
doc.get_DocumentElement().get_Attributes().get_ItemOf(0);
Console.WriteLine("Name of the attribute: {0}", attr.get_Name());
Console.WriteLine("Base URI of the attribute: {0}",attr.get_BaseURI());
Console.WriteLine("The value of the attribute: {0}",
attr.get_InnerText());
} //main
} //Sample
Im Beispiel wird die Datei baseuri.xml als Eingabe verwendet.
<!-- XML fragment -->
<book genre="novel">
<title>Pride And Prejudice</title>
</book>
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
XmlAttribute-Klasse
XmlAttribute-Member
System.Xml-Namespace
OwnerElement