
Public Member Functions | |
| AuthenticationChallenge () | |
| AuthenticationChallenge default constructor. | |
| AuthenticationChallenge (const ProtectionSpace &protectionSpace, const Credential &proposedCredential, unsigned previousFailureCount, const ResourceResponse &response, const ResourceError &error) | |
| AuthenticationChallenge constructor. | |
| ResourceHandle * | sourceHandle () const |
| get resource handle | |
Public Attributes | |
| RefPtr< ResourceHandle > | m_sourceHandle |
| WKAL::AuthenticationChallenge::AuthenticationChallenge | ( | ) |
AuthenticationChallenge default constructor.
AuthenticationChallenge *a = new AuthenticationChallenge();
| WKAL::AuthenticationChallenge::AuthenticationChallenge | ( | const ProtectionSpace & | protectionSpace, | |
| const Credential & | proposedCredential, | |||
| unsigned | previousFailureCount, | |||
| const ResourceResponse & | response, | |||
| const ResourceError & | error | |||
| ) |
AuthenticationChallenge constructor.
| [in] | : | protection space |
| [in] | : | proposed credential |
| [in] | : | previous failure count |
| [in] | : | response |
| [in] | : | error AuthenticationChallenge *a = new AuthenticationChallenge(ps, pc, pfc, r, e); |
| ResourceHandle* WKAL::AuthenticationChallenge::sourceHandle | ( | ) | const |
get resource handle
| [out] | : | resource handle ResourceHandle* rh = a->sourceHandle(); |