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

download:canAuthenticateAgainstProtectionSpace:

Sent to determine whether the delegate is able to respond to a protection space’s form of authentication. 委任先が保護空間のもつ認証の形式に応答できるかどうかを決定するために送られます。

Declaration 宣言

- (BOOL)download:(NSURLDownload *)connection 
canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace;

Parameters パラメータ

download

The download sending the message. メッセージを送っているダウンロード。

protectionSpace

The protection space that generates an authentication challenge. 認証チャレンジを生成する保護空間。

Discussion 議論

This method is called before download:didReceiveAuthenticationChallenge:, 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:didReceiveAuthenticationChallenge:. Not implementing this method is the same as returning NO, in which case default authentication handling is used. このメソッドは、download:didReceiveAuthenticationChallenge:の前に呼び出されて、委任先に保護空間を検査させます、それを再び認証しようとする前に。YESを返すことによって、委任先はそれが認証の形式を取り扱い可能であるのを指し示します、それは、それがdownload:didReceiveAuthenticationChallenge:への以降の呼び出しにおいて行います。このメソッドを実装しないことは、NOを返すことと同じです、その場合には省略時の認証処理が使われます。

See Also 参照

Download Authentication ダウンロード認証