Enumeration Case
列挙ケース
URLSession.ResponseDisposition.becomeDownload
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
タスク意向
case allow
Allow the load operation to continue.
ロード操作を継続することを許可します。