Protocol: NSURLAuthenticationChallengeSender
Overview
The NSURLAuthenticationChallengeSender protocol represents the interface that the sender of an authentication challenge must implement.Cancels a given authentication challenge. (required)Attempt to continue downloading a request without providing a credential for a given challenge. (required)Causes the system-provided default behavior to be used.Rejects the currently supplied protection space.Attempt to use a given credential for a given authentication challenge. (required)
Instance Method Summary (collapse)
-
- cancelAuthenticationChallenge:
Cancels a given authentication challenge.
-
- continueWithoutCredentialForAuthenticationChallenge:
Attempt to continue downloading a request without providing a credential for a given challenge.
-
- performDefaultHandlingForAuthenticationChallenge:
Causes the system-provided default behavior to be used.
-
- rejectProtectionSpaceAndContinueWithChallenge:
Rejects the currently supplied protection space.
-
- useCredential:forAuthenticationChallenge:
Attempt to use a given credential for a given authentication challenge.
Instance Method Details
- (Object) cancelAuthenticationChallenge(challenge)
Cancels a given authentication challenge. (required)
- (Object) continueWithoutCredentialForAuthenticationChallenge(challenge)
Attempt to continue downloading a request without providing a credential for a given challenge. (required) This method has no effect if it is called with an authentication challenge that has already been handled.
- (Object) performDefaultHandlingForAuthenticationChallenge(challenge)
Causes the system-provided default behavior to be used.
- (Object) rejectProtectionSpaceAndContinueWithChallenge(challenge)
Rejects the currently supplied protection space.
- (Object) useCredential(credential, forAuthenticationChallenge:challenge)
Attempt to use a given credential for a given authentication challenge. (required) This method has no effect if it is called with an authentication challenge that has already been handled.