System::Xml::XmlValidatingReader::MoveToAttribute método

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 desplaza al atributo con el nombre local y el espacio de nombres Uniform Resource Identifier (URI) 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
nameStringEl 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