次の方法で共有


XmlReader.HasAttributes プロパティ

現在のノードが属性を持っているかどうかを示す値を取得します。

Public Overridable ReadOnly Property HasAttributes As Boolean
[C#]
public virtual bool HasAttributes {get;}
[C++]
public: __property virtual bool get_HasAttributes();
[JScript]
public function get HasAttributes() : Boolean;

プロパティ値

現在のノードが属性を持っている場合は true 。それ以外の場合は false

使用例

[Visual Basic, C#, C++] 現在のノードのすべての属性を表示する例を次に示します。

 
Public Sub DisplayAttributes(reader As XmlReader)
    If reader.HasAttributes Then
        Console.WriteLine("Attributes of <" & reader.Name & ">")
        While reader.MoveToNextAttribute()
            Console.WriteLine(" {0}={1}", reader.Name, reader.Value)
        End While
    End If
End Sub 'DisplayAttributes

[C#] 
public void DisplayAttributes(XmlReader reader)
{
    if (reader.HasAttributes)
    {
        Console.WriteLine("Attributes of <" + reader.Name + ">");
        while (reader.MoveToNextAttribute())
        {
            Console.WriteLine(" {0}={1}", reader.Name, reader.Value);
        }
    }
}

[C++] 
public:
    void DisplayAttributes(XmlReader* reader)
    {
        if (reader->HasAttributes)
        {
            Console::WriteLine(S"Attributes of <{0}>", reader->Name);
            while (reader->MoveToNextAttribute())
            {
                Console::WriteLine(S" {0}={1}", reader->Name, reader->Value);
            }
        }
    }

[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, Common Language Infrastructure (CLI) Standard

参照

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