- URLSession:dataTask:didReceiveResponse:completionHandler:
NSURLSessionResponseDisposition
- URLSession:dataTask:didBecomeDownloadTask:
Availability 有効性
Technology
- (void)URLSession:(NSURLSession
*)session
dataTask:(NSURLSessionDataTask
*)dataTask
didBecomeStreamTask:(NSURLSessionStreamTask
*)streamTask;
session
The session containing the task that was replaced by a stream task. ストリームタスクによって置き換えられたタスクを含んでいるセッション。
dataTask
The data task that was replaced by a stream task. ストリームタスクによって置き換えられたデータタスク。
streamTask
The new stream task that replaced the data task. データタスクを置き換えた新しいストリームタスク。
When your URLSession:
delegate method uses the NSURLSession
disposition to convert the request to use a stream, the session calls this delegate method to provide you with the new stream task. After this call, the session delegate receives no further delegate method calls related to the original data task.
あなたのURLSession:
委任先メソッドがNSURLSession
の意向を使うことで、そのリクエストをあるストリームを使うように変換するならば、セッションはこの委任先メソッドを呼び出すことであなたに新しいストリームタスクを提供します。この呼び出しの後、セッション委任先は、元のデータタスクに関連する委任先メソッド呼び出しをこれ以上は受け取りません。
For requests that were pipelined, the stream task allows only reading, and the object immediately sends the delegate message URLSession:
. You can disable pipelining for all requests in a session by setting the HTTPShould
property on its NSURLSession
object, or for individual requests by setting the HTTPShould
property on an NSURLRequest
object.
- URLSession:dataTask:didReceiveResponse:completionHandler:
NSURLSessionResponseDisposition
- URLSession:dataTask:didBecomeDownloadTask: