次の方法で共有


XmlAttribute.Value プロパティ

ノードの値を取得または設定します。

Overrides Public Property Value As String
[C#]
public override string Value {get; set;}
[C++]
public: __property String* get_Value();public: __property void set_Value(String*);
[JScript]
public override function get Value() : String;public override function set Value(String);

プロパティ値

返される値は、ノードの NodeType によって異なります。 XmlAttribute ノードの場合、このプロパティは属性の値です。

例外

例外の種類 条件
ArgumentException ノードが読み取り専用であり、set 操作が呼び出されます。

使用例

[Visual Basic, C#, C++] 属性コレクションの各ノードに関する情報を表示する例を次に示します。

 
Imports System
Imports System.IO
Imports System.Xml

public class Sample

  public shared sub Main()

    Dim doc as XmlDocument = new XmlDocument()
    doc.LoadXml("<book xmlns:bk='urn:samples' bk:genre='novel'>" & _
                "<title>Pride And Prejudice</title>" & _
                "</book>") 

    'Create an attribute collection.
    Dim attrColl as XmlAttributeCollection = doc.DocumentElement.Attributes

    Console.WriteLine("Display information on each of the attributes... ")
    Dim attr as XmlAttribute
    for each attr in attrColl
       Console.Write("{0}:{1} = {2}", attr.Prefix, attr.LocalName, attr.Value)
       Console.WriteLine("   namespaceURI=" + attr.NamespaceURI)
    next

  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 xmlns:bk='urn:samples' bk:genre='novel'>" +
                "<title>Pride And Prejudice</title>" +
                "</book>");      

    //Create an attribute collection.
    XmlAttributeCollection attrColl = doc.DocumentElement.Attributes;

    Console.WriteLine("Display information on each of the attributes... \r\n");
    foreach (XmlAttribute attr in attrColl){
       Console.Write("{0}:{1} = {2}", attr.Prefix, attr.LocalName, attr.Value);
       Console.WriteLine("\t namespaceURI=" + attr.NamespaceURI);
    }
  }
}

[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 xmlns:bk='urn:samples' bk:genre='novel'><title>Pride And Prejudice</title></book>");      

    //Create an attribute collection.
    XmlAttributeCollection* attrColl = doc->DocumentElement->Attributes;

    Console::WriteLine(S"Display information on each of the attributes... \r\n");
    System::Collections::IEnumerator* myEnum = attrColl->GetEnumerator();
    while (myEnum->MoveNext())
    {
       XmlAttribute* attr = __try_cast<XmlAttribute*>(myEnum->Current);
       Console::Write(S"{0}:{1} = {2}",attr->Prefix,attr->LocalName,attr->Value);
       Console::WriteLine(S"\t namespaceURI={0}", attr->NamespaceURI);
    }
}

[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

参照

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