XmlTextReader.AttributeCount プロパティ
現在のノードにある属性の数を取得します。
Overrides Public ReadOnly Property AttributeCount As Integer
[C#]
public override int AttributeCount {get;}
[C++]
public: __property int get_AttributeCount();
[JScript]
public override function get AttributeCount() : int;
プロパティ値
現在のノードにある属性の数。
解説
このプロパティは、Element、 DocumentType 、 XmlDeclaration の各ノードだけに関連します。他のノード型は、属性を持ちません。
使用例
[Visual Basic, C#, C++] 現在のノードのすべての属性を表示する例を次に示します。
Public Sub DisplayAttributes(reader As XmlReader)
If reader.HasAttributes Then
Console.WriteLine("Attributes of <" & reader.Name & ">")
Dim i As Integer
For i = 0 To reader.AttributeCount - 1
reader.MoveToAttribute(i)
Console.Write(" {0}={1}", reader.Name, reader.Value)
Next i
reader.MoveToElement() 'Moves the reader back to the element node.
End If
End Sub 'DisplayAttributes
[C#]
public void DisplayAttributes(XmlReader reader)
{
if (reader.HasAttributes)
{
Console.WriteLine("Attributes of <" + reader.Name + ">");
for (int i = 0; i < reader.AttributeCount; i++)
{
reader.MoveToAttribute(i);
Console.Write(" {0}={1}", reader.Name, reader.Value);
}
reader.MoveToElement(); //Moves the reader back to the element node.
}
}
[C++]
public:
void DisplayAttributes(XmlReader* reader)
{
if (reader->HasAttributes)
{
Console::WriteLine(S"Attributes of <{0}>", reader->Name);
for (int i = 0; i < reader->AttributeCount; i++)
{
reader->MoveToAttribute(i);
Console::Write(S" {0}={1}", reader->Name, reader->Value);
}
reader->MoveToElement(); //Moves the reader back to the element node.
}
}
[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