Método System::Xml::XmlValidatingReader::MoveToAttribute

XmlValidatingReader::MoveToAttribute(int32_t) method

Se mueve al atributo con el índice especificado.

void System::Xml::XmlValidatingReader::MoveToAttribute(int32_t i) override
ParámetroTipoDescripción
iint32_tEl índice del atributo.

Ver también

XmlValidatingReader::MoveToAttribute(String, String) method

Se mueve al atributo con el nombre local y el Identificador Uniforme de Recursos (URI) de espacio de nombres especificados.

bool System::Xml::XmlValidatingReader::MoveToAttribute(String localName, String namespaceURI) override
ParámetroTipoDescripción
localNameStringEl nombre local del atributo.
namespaceURIStringEl URI del espacio de nombres del atributo.

ReturnValue

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

Ver también

XmlValidatingReader::MoveToAttribute(String) method

Se mueve al atributo con el nombre especificado.

bool System::Xml::XmlValidatingReader::MoveToAttribute(String name) override
ParámetroTipoDescripción
nombreStringEl nombre calificado del atributo.

ReturnValue

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

Ver también