Instance Method インスタンスメソッド

downloadShouldUseCredentialStorage(_:)

Sent to determine whether the URL loader should consult the credential storage to authenticate the download. URLローダーがそのダウンロードを認証するために資格情報ストレージを考慮に入れるべきかどうかを決定するために送られます。

Declaration 宣言

optional func downloadShouldUseCredentialStorage(_ download: NSURLDownload) -> Bool

Parameters パラメータ

connection

The connection sending the message. メッセージを送っている接続。

Discussion 議論

This method is called before any attempt to authenticate is made. By returning false, the delegate tells the download not to consult the credential storage and makes itself responsible for providing credentials for any authentication challenges. Not implementing this method is the same as returing true. The delegate is free to consult the credential storage itself when it receives a download(_:didReceive:) message. このメソッドは、認証がなされるためのあらゆる試みの前に呼び出されます。falseを返すことによって、委任先はダウンロードに資格情報ストレージを考慮に入れないように伝えます、そしてそれ自身であらゆる認証チャレンジに対して資格情報を提供する責任を取ります。このメソッドを実装しないことは、trueを返すことと同じです。委任先は、それがdownload(_:didReceive:)メッセージを受け取る場合、それ自身は資格情報ストレージを考慮するか自由です。

See Also 参照

Download Authentication ダウンロード認証