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

XmlValidatingReader::MoveToAttribute(int32_t) method

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

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

参照

XmlValidatingReader::MoveToAttribute(String, String) method

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

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

ReturnValue

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

参照

XmlValidatingReader::MoveToAttribute(String) method

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

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

ReturnValue

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

参照