System::Xml::XmlNodeReader::MoveToAttribute メソッド

XmlNodeReader::MoveToAttribute(int32_t) method

指定されたインデックスの属性へ移動します。

void System::Xml::XmlNodeReader::MoveToAttribute(int32_t attributeIndex) override
パラメーター説明
attributeIndexint32_t属性のインデックスです。

参照

XmlNodeReader::MoveToAttribute(String) method

指定された名前の属性へ移動します。

bool System::Xml::XmlNodeReader::MoveToAttribute(String name) override
パラメーター説明
nameString属性の完全修飾名です。

ReturnValue

true if the attribute is found; otherwise, false. If false, the reader’s position does not change.

参照

XmlNodeReader::MoveToAttribute(String, String) method

指定されたローカル名と名前空間 URI を持つ属性へ移動します。

bool System::Xml::XmlNodeReader::MoveToAttribute(String name, String namespaceURI) override
パラメーター説明
nameString属性のローカル名。
namespaceURIString属性の名前空間 URI。

ReturnValue

true if the attribute is found; otherwise, false. If false, the reader’s position does not change.

参照