Global Variable グローバル変数

NSURLSessionDownloadTaskResumeData

A key in the error dictionary that provides resume data. 再開データを提供するエラー辞書の中のあるキー。

Declaration 宣言

let NSURLSessionDownloadTaskResumeData: String

Discussion 議論

When a transfer error occurs or when you call the cancel(byProducingResumeData:) method, the delegate object or completion handler gets an NSError object. If the transfer is resumable, that error object’s userInfo dictionary contains a value for this key. To resume the transfer, your app can pass that value to the downloadTask(withResumeData:) or downloadTask(withResumeData:completionHandler:) method. 転送エラーが発生する場合またはあなたがcancel(byProducingResumeData:)メソッドを呼び出す場合、委任先オブジェクトまたは完了ハンドラはNSErrorオブジェクトを得ます。転送が再開可能ならば、そのエラーオブジェクトのもつuserInfo辞書はこのキーに対する値を含みます。転送を再開するために、あなたのアプリはこの値をdownloadTask(withResumeData:)またはdownloadTask(withResumeData:completionHandler:)メソッドに渡すことができます。

See Also 参照

User Info Dictionary Keys ユーザ情報辞書キー