func connection(NSURLConnection, willSendRequestFor : URLAuthenticationChallenge)
Tells the delegate that the connection will send a request for an authentication challenge.
接続がリクエストを認証チャレンジに対して送ることを委任先に伝えます。
func connection(NSURLConnection, canAuthenticateAgainstProtectionSpace : URLProtectionSpace) -> Bool
Sent to determine whether the delegate is able to respond to a protection space’s form of authentication.
委任先が保護空間のもつ認証の形式に応答できるかどうかを決定するために送られます。
func connection(NSURLConnection, didReceive : URLAuthenticationChallenge)
Sent when a connection must authenticate a challenge in order to download its request.
接続がそれのリクエストをダウンロードする手段としてあるチャレンジを認証しなければならない時に送られます。
func connectionShouldUseCredentialStorage (NSURLConnection) -> Bool
Sent to determine whether the URL loader should use the credential storage for authenticating the connection.
URLローダーが資格情報ストレージを接続の認証に対して使うべきかどうかを決定するために送られます。