XmlElement.GetAttribute メソッド
指定した属性の属性値を返します。
オーバーロードの一覧
指定した名前の属性の値を返します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Overridable Function GetAttribute(String) As String
指定したローカル名および名前空間 URI の属性の値を返します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Overridable Function GetAttribute(String, String) As String
[C++] public: virtual String* GetAttribute(String*, String*);
[JScript] public function GetAttribute(String, String) : String;
使用例
[Visual Basic, C#, C++] 指定した属性を要素が持っているかどうかを確認する例を次に示します。
[Visual Basic, C#, C++] メモ ここでは、GetAttribute のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Imports System
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" & _
"<title>Pride And Prejudice</title>" & _
"</book>")
Dim root as XmlElement = doc.DocumentElement
' Check to see if the element has a genre attribute.
if (root.HasAttribute("genre"))
Dim genre as String = root.GetAttribute("genre")
Console.WriteLine(genre)
end if
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.InnerXml)
end sub
end class
[C#]
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"</book>");
XmlElement root = doc.DocumentElement;
// Check to see if the element has a genre attribute.
if (root.HasAttribute("genre")){
String genre = root.GetAttribute("genre");
Console.WriteLine(genre);
}
}
}
[C++]
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlDocument* doc = new XmlDocument();
doc->LoadXml(S"<book genre='novel' ISBN='1-861001-57-5'><title>Pride And Prejudice</title></book>");
XmlElement* root = doc->DocumentElement;
// Check to see if the element has a genre attribute.
if (root->HasAttribute(S"genre")){
String* genre = root->GetAttribute(S"genre");
Console::WriteLine(genre);
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。