XmlNode.Item[] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した子要素を取得します。
オーバーロード
Item[String] |
指定した Name の最初の子要素を取得します。 |
Item[String, String] |
指定した LocalName および NamespaceURI の最初の子要素を取得します。 |
Item[String]
指定した Name の最初の子要素を取得します。
public:
virtual property System::Xml::XmlElement ^ default[System::String ^] { System::Xml::XmlElement ^ get(System::String ^ name); };
public virtual System.Xml.XmlElement this[string name] { get; }
public virtual System.Xml.XmlElement? this[string name] { get; }
member this.Item(string) : System.Xml.XmlElement
Default Public Overridable ReadOnly Property Item(name As String) As XmlElement
パラメーター
- name
- String
取得する要素の限定名。
プロパティ値
指定した名前と一致する最初の XmlElement。 一致するものがない場合は、null 参照 (Visual Basic の場合は Nothing
) が返されます。
例
次の例では、タイトル要素を表示します。
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlDocument^ doc = gcnew XmlDocument;
doc->LoadXml( "<book ISBN='1-861001-57-5'>"
"<title>Pride And Prejudice</title>"
"<price>19.95</price>"
"</book>" );
XmlNode^ root = doc->FirstChild;
Console::WriteLine( "Display the title element..." );
Console::WriteLine( root[ "title" ]->OuterXml );
}
using System;
using System.IO;
using System.Xml;
public class Sample {
public static void Main() {
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"<price>19.95</price>" +
"</book>");
XmlNode root = doc.FirstChild;
Console.WriteLine("Display the title element...");
Console.WriteLine(root["title"].OuterXml);
}
}
Option Explicit
Option Strict
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
Dim doc As New XmlDocument()
doc.LoadXml("<book ISBN='1-861001-57-5'>" & _
"<title>Pride And Prejudice</title>" & _
"<price>19.95</price>" & _
"</book>")
Dim root As XmlNode = doc.FirstChild
Console.WriteLine("Display the title element...")
Console.WriteLine(root("title").OuterXml)
End Sub
End Class
注釈
このプロパティは、ドキュメント オブジェクト モデル (DOM) の Microsoft 拡張機能です。
適用対象
Item[String, String]
指定した LocalName および NamespaceURI の最初の子要素を取得します。
public:
virtual property System::Xml::XmlElement ^ default[System::String ^, System::String ^] { System::Xml::XmlElement ^ get(System::String ^ localname, System::String ^ ns); };
public virtual System.Xml.XmlElement this[string localname, string ns] { get; }
public virtual System.Xml.XmlElement? this[string localname, string ns] { get; }
member this.Item(string * string) : System.Xml.XmlElement
Default Public Overridable ReadOnly Property Item(localname As String, ns As String) As XmlElement
パラメーター
- localname
- String
要素のローカル名。
- ns
- String
要素の名前空間 URI。
プロパティ値
localname
および ns
が一致する最初の XmlElement。 一致するものがない場合は、null 参照 (Visual Basic の場合は Nothing
) が返されます。
注釈
このプロパティは、ドキュメント オブジェクト モデル (DOM) の Microsoft 拡張機能です。