Package org.robovm.apple.foundation
Interface NSURLConnectionDelegate
- All Superinterfaces:
NSObjectProtocol,ObjCProtocol
- All Known Subinterfaces:
NSURLConnectionDataDelegate,NSURLConnectionDownloadDelegate
- All Known Implementing Classes:
NSURLConnectionDataDelegateAdapter,NSURLConnectionDelegateAdapter,NSURLConnectionDownloadDelegateAdapter
public interface NSURLConnectionDelegate extends NSObjectProtocol
-
Method Summary
Modifier and Type Method Description booleancanAuthenticateAgainstProtectionSpace(NSURLConnection connection, NSURLProtectionSpace protectionSpace)Deprecated.Deprecated in iOS 8.0.voiddidCancelAuthenticationChallenge(NSURLConnection connection, NSURLAuthenticationChallenge challenge)Deprecated.Deprecated in iOS 8.0.voiddidFail(NSURLConnection connection, NSError error)voiddidReceiveAuthenticationChallenge(NSURLConnection connection, NSURLAuthenticationChallenge challenge)Deprecated.Deprecated in iOS 8.0.booleanshouldUseCredentialStorage(NSURLConnection connection)voidwillSendRequestForAuthenticationChallenge(NSURLConnection connection, NSURLAuthenticationChallenge challenge)
-
Method Details
-
didFail
-
shouldUseCredentialStorage
-
willSendRequestForAuthenticationChallenge
void willSendRequestForAuthenticationChallenge(NSURLConnection connection, NSURLAuthenticationChallenge challenge) -
canAuthenticateAgainstProtectionSpace
@Deprecated boolean canAuthenticateAgainstProtectionSpace(NSURLConnection connection, NSURLProtectionSpace protectionSpace)Deprecated.Deprecated in iOS 8.0. Use -connection:willSendRequestForAuthenticationChallenge: instead. -
didReceiveAuthenticationChallenge
@Deprecated void didReceiveAuthenticationChallenge(NSURLConnection connection, NSURLAuthenticationChallenge challenge)Deprecated.Deprecated in iOS 8.0. Use -connection:willSendRequestForAuthenticationChallenge: instead. -
didCancelAuthenticationChallenge
@Deprecated void didCancelAuthenticationChallenge(NSURLConnection connection, NSURLAuthenticationChallenge challenge)Deprecated.Deprecated in iOS 8.0. Use -connection:willSendRequestForAuthenticationChallenge: instead.
-