class func canResumeDownloadDecoded (withEncodingMIMEType : String) -> Bool
init(resumeData : Data, delegate: NSURLDownloadDelegate?, path: String)
var deletesFileUponFailure : Bool
Availability 有効性
Technology
var resumeData: Data
? { get }
The resume data for a download that is not yet complete. This data represents the necessary state information that an NSURLDownload
object needs to resume a download. The resume data can later be used when initializing a download with init(resume
. Returns nil
if the download is not able to be resumed.
まだ完了していないダウンロードに対する再開データ。このデータは、必須の状態情報を表します、それはNSURLDownload
オブジェクトがダウンロードを再開するのに必要とするものです。再開データは、あるダウンロードをinit(resume
で初期化する場合に、後で使われることができます。nil
を返します、もしダウンロードが再開可能でないならば。
Resume data is returned only if both the protocol and the server support resuming. For details on how to resume a connection, see the documentation for init(resume
.
再開データは、プロトコルとサーバーの両方が再開をサポートする場合にのみ返されます。接続を再開する方法に関する詳細として、init(resume
に対する文書化を見てください。
class func canResumeDownloadDecoded (withEncodingMIMEType : String) -> Bool
init(resumeData : Data, delegate: NSURLDownloadDelegate?, path: String)
var deletesFileUponFailure : Bool