Global Variable グローバル変数

NSURLSessionDownloadTaskResumeData

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

Declaration 宣言

NSString *const NSURLSessionDownloadTaskResumeData;

Discussion 議論

When a transfer error occurs or when you call the cancelByProducingResumeData: 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 downloadTaskWithResumeData: or downloadTaskWithResumeData:completionHandler: method. 転送エラーが発生する場合またはあなたがcancelByProducingResumeData:メソッドを呼び出す場合、委任先オブジェクトまたは完了ハンドラはNSErrorオブジェクトを得ます。転送が再開可能ならば、そのエラーオブジェクトのもつuserInfo辞書はこのキーに対する値を含みます。転送を再開するために、あなたのアプリはこの値をdownloadTaskWithResumeData:またはdownloadTaskWithResumeData:completionHandler:メソッドに渡すことができます。

See Also 参照

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