RFSURLAuthenticationChallengeDelegate
Objective-C
@protocol RFSURLAuthenticationChallengeDelegate <NSObject>
@required
- (NSURLCredential * _Nullable)credentialForAuthenticationChallenge:(NSURLAuthenticationChallenge * _Nonnull)challenge
NS_SWIFT_NAME(credential(for:));
@end
Swift
protocol URLAuthenticationChallengeDelegate : NSObjectProtocol
Undocumented
-
Undocumented
Declaration
Objective-C
- (NSURLCredential * _Nullable)credentialForAuthenticationChallenge:(NSURLAuthenticationChallenge * _Nonnull)challenge NS_SWIFT_NAME(credential(for:));Swift
func credential(for challenge: URLAuthenticationChallenge) -> URLCredential?