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

connection(_:willSendRequestFor:)

Tells the delegate that the connection will send a request for an authentication challenge. 接続がリクエストを認証チャレンジに対して送ることを委任先に伝えます。

Declaration 宣言

optional func connection(_ connection: NSURLConnection, 
      willSendRequestFor challenge: URLAuthenticationChallenge)

Parameters パラメータ

connection

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

challenge

The authentication challenge for which a request is being sent. それに対してリクエストが送信されている認証チャレンジ。

Discussion 議論

This method allows the delegate to make an informed decision about connection authentication at once. If the delegate implements this method, it has no need to implement connection(_:canAuthenticateAgainstProtectionSpace:) or connection(_:didReceive:). In fact, those other methods are not invoked (except on older operating systems, where applicable). このメソッドは、接続認証について通知による決定を同時に委任先にさせます。委任先がこのメソッドを実装するならば、それはconnection(_:canAuthenticateAgainstProtectionSpace:)またはconnection(_:didReceive:)を実装する必要はありません。実際、それら他のメソッドは発動されません(より古いオペレーティングシステムを除いて、そこでは適用されます)。

In this method,you must invoke one of the challenge-responder methods (URLAuthenticationChallengeSender protocol): このメソッドにおいて、あなたは以下のチャレンジレスポンダメソッド(URLAuthenticationChallengeSender protocol)の1つを発動する必要があります

You might also want to analyze challenge for the authentication scheme and the proposed credential before calling a URLAuthenticationChallengeSender method. You should never assume that a proposed credential is present. You can either create your own credential and respond with that, or you can send the proposed credential back. (Because this object is immutable, if you want to change it you must copy it and then modify the copy.) あなたはまたchallengeを、認証スキームそして提案された資格情報に対してURLAuthenticationChallengeSenderメソッドを呼び出す前に分析したいかもしれません。あなたは、決して提案された資格情報が存在すると仮定すべきではありません。あなたは、あなた独自の資格情報を作成してそれで応答できます、またはあなたは提案された資格情報を送り返すこもできます。(このオブジェクトは不変であることから、あなたがそれを変更したいならばあなたはそれをコピーしてそれからそのコピーを修正しなければなりません)

See Also 参照

Connection Authentication 接続認証

Related Documentation 関連文書