次の方法で共有


XmlEntityReference.BaseURI プロパティ

現在のノードのベース URI を取得します。

Overrides Public ReadOnly Property BaseURI As String
[C#]
public override string BaseURI {get;}
[C++]
public: __property String* get_BaseURI();
[JScript]
public override function get BaseURI() : String;

プロパティ値

読み込まれたノードの読み込み元の場所。

解説

ネットワーク化した XML ドキュメントは、さまざまな W3C 標準包含機構を使用して集約されたデータのチャンクで構成されるため、異なる場所からのノードを含んでいます。 BaseURI は、ノードが存在していた元の位置を通知します。返されるノードのベース URI がない場合 (インメモリ文字列から解析された可能性がある) は、String.Empty が返されます。

BaseURI は、ノード ツリーでエンティティ参照の境界を検索するため、エンティティが展開された場合、この情報は保存されず、このプロパティは常に XmlDocument の位置を返します。

BaseURI および他の種類のノードでのその動作の詳細については、 XmlNode.BaseURI のトピックを参照してください。

このプロパティは、DOM (Document Object Model) に対する Microsoft 拡張機能です。

使用例

[Visual Basic, C#, C++] ベース URI を含む、エンティティ参照ノードに関する情報を表示する例を次に示します。

 
Imports System
Imports System.IO
Imports System.Xml

public class Sample

  public shared sub Main()
  
    'Create the XmlDocument.
    Dim doc as XmlDocument = new XmlDocument()
    doc.Load("https://localhost/uri.xml")
                     
    'Display information on the entity reference node.
    Dim entref as XmlEntityReference =  CType(doc.DocumentElement.LastChild.FirstChild, XmlEntityReference) 
    Console.WriteLine("Name of the entity reference:  {0}", entref.Name)
    Console.WriteLine("Base URI of the entity reference:  {0}", entref.BaseURI)
    Console.WriteLine("The entity replacement text:  {0}", entref.InnerText)
  end sub
end class

[C#] 
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/uri.xml");
                     
    //Display information on the entity reference node.
    XmlEntityReference entref = (XmlEntityReference) doc.DocumentElement.LastChild.FirstChild;
    Console.WriteLine("Name of the entity reference:  {0}", entref.Name);
    Console.WriteLine("Base URI of the entity reference:  {0}", entref.BaseURI);
    Console.WriteLine("The entity replacement text:  {0}", entref.InnerText);
  }
}

[C++] 
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;

int main()
{
    //Create the XmlDocument.
    XmlDocument* doc = new XmlDocument();
    doc->Load(S"https://localhost/uri.xml");
                     
    //Display information on the entity reference node.
    XmlEntityReference* entref = dynamic_cast<XmlEntityReference*> (doc->DocumentElement->LastChild->FirstChild);
    Console::WriteLine(S"Name of the entity reference:  {0}",entref->Name);
    Console::WriteLine(S"Base URI of the entity reference:  {0}",entref->BaseURI);
    Console::WriteLine(S"The entity replacement text:  {0}",entref->InnerText);
}

[Visual Basic, C#, C++] このサンプルでは、入力として、 uri.xml というファイルを使用しています。

<!-- XML fragment -->
<!DOCTYPE book [<!ENTITY s SYSTEM "tmp/style.xml">]>
<book genre="novel">
  <title>Pride and Prejudice</title>
  <misc>&s;</misc>
</book>

style.xml ファイルには、XML 文字列 <style>hardcover</style> が含まれています。

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

XmlEntityReference クラス | XmlEntityReference メンバ | System.Xml 名前空間