- URLSession:dataTask:didReceiveResponse:completionHandler:
NSURLSessionResponseDisposition
- URLSession:dataTask:didBecomeStreamTask:
Availability 有効性
Technology
- (void)URLSession:(NSURLSession
*)session
dataTask:(NSURLSessionDataTask
*)dataTask
didBecomeDownloadTask:(NSURLSessionDownloadTask
*)downloadTask;
session
The session containing the task that was replaced by a download task. ダウンロードタスクによって置き換えられたタスクを含んでいるセッション。
dataTask
The data task that was replaced by a download task. ダウンロードタスクによって置き換えられたデータタスク。
downloadTask
The new download task that replaced the data task. データタスクを置き換えた新しいダウンロードタスク。
When your URLSession:
delegate method uses the NSURLSession
disposition to convert the request to use a download, the session calls this delegate method to provide you with the new download task. After this call, the session delegate receives no further delegate method calls related to the original data task.
あなたのURLSession:
委任先メソッドがNSURLSession
の意向を使うことで、そのリクエストをあるダウンロードを使うように変換するならば、セッションはこの委任先メソッドを呼び出すことであなたに新しいダウンロードタスクを提供します。この呼び出しの後、セッション委任先は、元のデータタスクに関連する委任先メソッド呼び出しをこれ以上は受け取りません。
- URLSession:dataTask:didReceiveResponse:completionHandler:
NSURLSessionResponseDisposition
- URLSession:dataTask:didBecomeStreamTask: