Protocol
NSURLConnectionDelegate
A protocol that delegates of a URL connection implement to receive status about and provide feedback to the connection object.
あるプロトコル、それはURL接続の委任先が、接続オブジェクトについての状態を受け取ってそしてそれへとフィードバックを提供するために実装します。
Declaration
宣言
@protocol NSURLConnectionDelegate
Overview
概要
Delegates of NSURLConnection
objects should implement either the NSURLConnectionDataDelegate
or NSURLConnectionDownloadDelegate
protocol in addition to the NSURLConnectionDelegate
protocol. Specifically:
NSURLConnection
オブジェクトの委任先は、NSURLConnectionDataDelegate
またはNSURLConnectionDownloadDelegate
プロトコルのどちらかを実装すべきです、NSURLConnectionDelegate
プロトコルに加えて。具体的には:
Delegates that wish to perform custom authentication handling should implement the connection:willSendRequestForAuthenticationChallenge:
method, which is the preferred mechanism for responding to authentication challenges. (See NSURLAuthenticationChallenge
for more information on authentication challenges.) If connection:willSendRequestForAuthenticationChallenge:
is not implemented, the older, deprecated methods connection:canAuthenticateAgainstProtectionSpace:
, connection:didReceiveAuthenticationChallenge:
, and connection:didCancelAuthenticationChallenge:
are called instead.
あつらえの認証取り扱いの実行を望む委任先は、connection:willSendRequestForAuthenticationChallenge:
メソッドを実装すべきです、それは認証チャレンジに応答するための好ましい仕組みです。(NSURLAuthenticationChallenge
を認証チャレンジに関するさらなる情報として見てください。)connection:willSendRequestForAuthenticationChallenge:
が実装されないならば、より古い、非推奨メソッドconnection:canAuthenticateAgainstProtectionSpace:
、connection:didReceiveAuthenticationChallenge:
、そしてconnection:didCancelAuthenticationChallenge:
が代わりに呼び出されます。
The connection:didFailWithError:
method is called at most once if an error occurs during the loading of a resource. The connectionShouldUseCredentialStorage:
method is called once, just before the loading of a resource begins.
connection:didFailWithError:
メソッドは、多くとも一度だけ呼び出されます、もしエラーがリソースのロードの間に発生するならば。connectionShouldUseCredentialStorage:
メソッドは一度だけ呼び出されます、リソースのロードが開始する直前に。
Topics
話題
Connection Authentication
接続認証
- connectionShouldUseCredentialStorage:
Sent to determine whether the URL loader should use the credential storage for authenticating the connection.
URLローダーが資格情報ストレージを接続の認証に対して使うべきかどうかを決定するために送られます。
Connection Completion
接続完了
See Also
参照
URL Connection
URL接続
NSURLConnection
An object that enables you to start and stop URL requests.
あなたにURLリクエストの開始および停止を可能にするオブジェクト。
NSURLConnectionDataDelegate
A protocol that most delegates of a URL connection implement to receive data associated with the connection.
あるプロトコル、それはURL接続のほとんどの委任先が、接続と結びつけられたデータを受け取るために実装します。
NSURLConnectionDownloadDelegate
A protocol that delegates of a URL connection created with Newsstand Kit implement to receive data associated with a download.
あるプロトコル、それはNewsstand Kitで作成されたURL接続の委任先が、あるダウンロード結びつけられたデータを受け取るために実装します。