Discussion 議論
If you are using the URLSession
API, this value is purely informational, because you must respond to authentication challenges in your URLSession
or URLSession
implementations, by passing URLSession
constants to the provided completion handler blocks.
あなたがURLSession
APIを使っているならば、この値は純粋に情報に関するものです、あなたは認証チャレンジに応答する必要があります、あなたのURLSession
またはURLSession
実装において、URLSession
定数をその提供された完了ハンドラブロックに渡して。
However, if you are using the legacy NSURLConnection
or NSURLDownload
API, you use this object directly in your authentication handler delegate method. With these APIs, after you finish processing the authentication challenge, you respond by calling methods defined in the URLAuthentication
protocol on this sender.
しかしながら、あなたがレガシーNSURLConnection
またはNSURLDownload
APIを使っているならば、あなたはこのオブジェクトを直接にあなたの認証ハンドラ委任先メソッドにおいて使います。これらAPIで、あなたが認証チャレンジを処理する後、あなたはURLAuthentication
プロトコルにおいて定義されるメソッドをこのセンダー上で呼び出すことによって応答します。
Warning 警告
Do not call methods directly on this object if you are using the URLSession
API.
メソッドを直接にこのオブジェクト上で呼び出さないでください、もしあなたがURLSession
APIを使っているならば。