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

XmlReader::MoveToAttribute(int32_t) method

派生クラスでオーバーライドされた場合、指定されたインデックスの属性へ移動します。

virtual void System::Xml::XmlReader::MoveToAttribute(int32_t i)
パラメーター説明
iint32_t属性のインデックスです。

参照

XmlReader::MoveToAttribute(String) method

派生クラスでオーバーライドされた場合、指定されたXmlReader::get_Name の値を持つ属性へ移動します。

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

ReturnValue

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

参照

XmlReader::MoveToAttribute(String, String) method

派生クラスでオーバーライドされた場合、指定されたXmlReader::get_LocalNameXmlReader::get_NamespaceURI の値を持つ属性へ移動します。

virtual bool System::Xml::XmlReader::MoveToAttribute(String name, String ns)=0
パラメーター説明
nameString属性のローカル名。
nsString属性の名前空間 URI。

ReturnValue

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

参照