- URLProtocol:didCancelAuthenticationChallenge:
Tells the client that an authentication challenge has been canceled.
クライアントに、ある認証チャレンジが取り消されたことを伝えます。
Availability 有効性
Technology
- (void)URLProtocol:(NSURLProtocol
*)protocol
didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge
*)challenge;
protocol
The URL protocol object sending the message. メッセージを送っているURLプロトコルオブジェクト。
challenge
The authentication challenge that has been received. 受け取られた認証チャレンジ。
The protocol client guarantees that it will answer the request on the same thread that called this method. The client may add a default credential to the challenge it issues to the connection delegate, if protocol
did not provide one.
プロトコルクライアントは、それがこのメソッドを呼び出した同じスレッド上のリクエストに応えることを保証します。クライアントは、省略時の資格情報を、それが接続委任先に発行するチャレンジに加えるかもしれません、もしprotocol
がそれを提供しないならば。
- URLProtocol:didCancelAuthenticationChallenge: