XmlNode.Item[] Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen alt öğeyi alır.
Aşırı Yüklemeler
Item[String] |
Belirtilen Nameile ilk alt öğeyi alır. |
Item[String, String] |
belirtilen LocalName ve NamespaceURIile ilk alt öğeyi alır. |
Item[String]
Belirtilen Nameile ilk alt öğeyi alır.
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
Parametreler
- name
- String
Alınacak öğenin tam adı.
Özellik Değeri
Belirtilen adla eşleşen ilk XmlElement ad. Eşleşme yoksa null başvuru (Nothing
Visual Basic) döndürür.
Örnekler
Aşağıdaki örnekte title öğesi görüntülenir.
#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
Açıklamalar
Bu özellik, Belge Nesne Modeli(DOM) için bir Microsoft uzantısıdır.
Şunlara uygulanır
Item[String, String]
belirtilen LocalName ve NamespaceURIile ilk alt öğeyi alır.
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
Parametreler
- localname
- String
Öğesinin yerel adı.
- ns
- String
öğesinin ad alanı URI'si.
Özellik Değeri
eşleşen localname
ve ns
ile ilkXmlElement. Eşleşme yoksa null başvuru (Nothing
Visual Basic) döndürür.
Açıklamalar
Bu özellik, Belge Nesne Modeli'nin (DOM) Bir Microsoft uzantısıdır.