AuthenticationInformation QML Type
La información de autenticación OPC UA. Más...
| Import Statement: | import QtOpcUa |
| Since: | QtOpcUa 5.13 |
| Status: | Deprecated since 6.9 |
Este tipo está obsoleto desde QtOpcUa 6.9. Desaconsejamos su uso en código nuevo.
Métodos
- void setAnonymousAuthentication()
- void setUsernameAuthentication(string username, string password)
Descripción detallada
Esta clase contiene la información necesaria para realizar un login en un servidor.
var authInfo = connection.authenticationInformation; authInfo.setUsernameAuthentication("user1", "password"); connection.authenticationInformation = authInfo;
Los métodos de autenticación soportados actualmente son:
- Anónimo
- Usuario
- Certificado
Véase también setAnonymousAuthentication() y setUsernameAuthentication().
Documentación del método
void setAnonymousAuthentication()
Establece el método de autenticación como anónimo.
void setUsernameAuthentication(string username, string password)
Establece el método de autenticación en nombre de usuario, utilizando los datos username y password.
© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.