Méthode System::Xml::XmlNodeReader::MoveToAttribute

XmlNodeReader::MoveToAttribute(int32_t) method

Se déplace vers l’attribut à l’index spécifié.

void System::Xml::XmlNodeReader::MoveToAttribute(int32_t attributeIndex) override
ParamètreTypeDescription
attributeIndexint32_tL’index de l’attribut.

Voir aussi

XmlNodeReader::MoveToAttribute(String) method

Se déplace vers l’attribut portant le nom spécifié.

bool System::Xml::XmlNodeReader::MoveToAttribute(String name) override
ParamètreTypeDescription
nameStringLe nom qualifié de l’attribut.

ReturnValue

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

Voir aussi

XmlNodeReader::MoveToAttribute(String, String) method

Se déplace vers l’attribut portant le nom local et l’URI d’espace de noms spécifiés.

bool System::Xml::XmlNodeReader::MoveToAttribute(String name, String namespaceURI) override
ParamètreTypeDescription
nameStringLe nom local de l’attribut.
namespaceURIStringL’URI d’espace de noms de l’attribut.

ReturnValue

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

Voir aussi