Qt:Документация 4.3.2/qauthenticator
Материал из Wiki.crossplatform.ru
Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
[править] QAuthenticator Class Reference
[модуль QtNetwork ]
The QAuthenticator class provides an authentication object. Далее...
#include <QAuthenticator>
Примечание: все функции в этом классе реентерабельны.
Класс был добавлен в Qt 4.3.
[править] Открытые функции
- QAuthenticator ()
- QAuthenticator ( const QAuthenticator & other )
- ~QAuthenticator ()
- bool isNull () const
- QString password () const
- QString realm () const
- void setPassword ( const QString & password )
- void setUser ( const QString & user )
- QString user () const
- bool operator!= ( const QAuthenticator & other ) const
- QAuthenticator & operator= ( const QAuthenticator & other )
- bool operator== ( const QAuthenticator & other ) const
[править] Подробное описание
The QAuthenticator class provides an authentication object.
The QAuthenticator class is usually used in the authenticationRequired() and proxyAuthenticationRequired() signals of QHttp and QAbstractSocket. The class provides a way to pass back the required authentication information to the socket when accessing services that require authentication.
See also QSslSocket.
[править] Описание функций-членов
[править] QAuthenticator::QAuthenticator ()
Constructs an empty authentication object
[править] QAuthenticator::QAuthenticator ( const QAuthenticator & other )
Создаёт копию other.
[править] QAuthenticator::~QAuthenticator ()
Destructs the object
[править] bool QAuthenticator::isNull () const
returns true if the authenticator is null.
[править] QString QAuthenticator::password () const
returns the password used for authentication.
Смотрите также setPassword().
[править] QString QAuthenticator::realm () const
returns the realm requiring authentication.
[править] void QAuthenticator::setPassword ( const QString & password )
Sets the password used for authentication.
See also password().
[править] void QAuthenticator::setUser ( const QString & user )
Sets the user used for authentication.
See also user().
[править] QString QAuthenticator::user () const
returns the user used for authentication.
See also setUser().
[править] bool QAuthenticator::operator!= ( const QAuthenticator & other ) const
Returns true if this authenticator is different from other; otherwise returns false.
[править] QAuthenticator & QAuthenticator::operator= ( const QAuthenticator & other )
Assigns the contents of other to this authenticator.
[править] bool QAuthenticator::operator== ( const QAuthenticator & other ) const
Returns true if this authenticator is identical to other; otherwise returns false.
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|