- download:didCancelAuthenticationChallenge:
- download:didReceiveAuthenticationChallenge:
- downloadShouldUseCredentialStorage:
Availability 有効性
Technology
- (BOOL)download:(NSURLDownload
*)connection
canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace
*)protectionSpace;
download
The download sending the message. メッセージを送っているダウンロード。
protectionSpace
The protection space that generates an authentication challenge. 認証チャレンジを生成する保護空間。
This method is called before download:
, allowing the delegate to inspect a protection space before attempting to authenticate against it. By returning YES
, the delegate indicates that it can handle the form of authentication, which it does in the subsequent call to download:
. Not implementing this method is the same as returning NO
, in which case default authentication handling is used.
このメソッドは、download:
の前に呼び出されて、委任先に保護空間を検査させます、それを再び認証しようとする前に。YES
を返すことによって、委任先はそれが認証の形式を取り扱い可能であるのを指し示します、それは、それがdownload:
への以降の呼び出しにおいて行います。このメソッドを実装しないことは、NO
を返すことと同じです、その場合には省略時の認証処理が使われます。
- download:didCancelAuthenticationChallenge:
- download:didReceiveAuthenticationChallenge:
- downloadShouldUseCredentialStorage: