func download(NSURLDownload, didCancel : URLAuthenticationChallenge)
func download(NSURLDownload, didReceive : URLAuthenticationChallenge)
func downloadShouldUseCredentialStorage (NSURLDownload) -> Bool
Availability 有効性
Technology
optional func download(_ connection: NSURLDownload
,
canAuthenticateAgainstProtectionSpace protectionSpace: URLProtectionSpace
) -> Bool
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 true
, 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 false
, in which case default authentication handling is used.
このメソッドは、download(_:
の前に呼び出されて、委任先に保護空間の調査を、それに対して認証を試みる前に許可します。true
を返すことによって、委任先は、続いて起こるdownload(_:
への呼び出しにおいてそれが行う、認証のこの形式をそれが取り扱い可能であるのを指し示します。このメソッドを実装しないことは、false
を返すことと同じです、その場合には省略時の認証処理が使われます。
func download(NSURLDownload, didCancel : URLAuthenticationChallenge)
func download(NSURLDownload, didReceive : URLAuthenticationChallenge)
func downloadShouldUseCredentialStorage (NSURLDownload) -> Bool