Enumeration Case 列挙ケース

URLSession.ResponseDisposition.becomeDownload

Convert the response for this request to use a URLSessionDownloadTask. このリクエストに対する応答を、URLSessionDownloadTaskを使うように変換します。

Declaration 宣言

case becomeDownload = 2

Discussion 議論

When used with the completion handler from urlSession(_:dataTask:didReceive:completionHandler:), this disposition converts the data task to a download task. This will result in your delegate’s urlSession(_:dataTask:didBecome:) being called to provide you with the new download task that supersedes the current task. urlSession(_:dataTask:didReceive:completionHandler:)からの完了ハンドラで使われる場合、この意向はデータタスクをダウンロードタスクに変換します。これは、あなたの委任先のもつurlSession(_:dataTask:didBecome:)が呼び出されることで、あなたに現在のタスクに取って代わる新しいダウンロードタスクを提供する、という結果になるでしょう。

See Also 参照

Task Dispositions タスク意向