func download(NSURLDownload, decideDestinationWithSuggestedFilename : String)
The delegate receives this message when
download
has determined a suggested filename for the downloaded file.
委任先はこのメッセージを、download
がダウンロードされたファイルに対する提案ファイル名を決定した時に受け取ります。
func downloadDidBegin (NSURLDownload)
Sent immediately after a download object begins a download.
ダウンロードオブジェクトがダウンロードを始めた直後に送られます。
func download(NSURLDownload, didCreateDestination : String)
Sent when the destination file is created.
行先ファイルが作成される時に送られます。
func download(NSURLDownload, didReceive : URLResponse)
Sent when a download object has received sufficient load data to construct the NSURLResponse object for the download.
ダウンロードオブジェクトが、NSURLResponseオブジェクトをそのダウンロードに対して組み立てるのに十分なロードデータを受け取る場合に送られます。
func download(NSURLDownload, shouldDecodeSourceDataOfMIMEType : String) -> Bool
Sent when a download object determines that the downloaded file is encoded to inquire whether the file should be automatically decoded.
ファイルが自動的にデコードされるべきかどうか尋ねるために、ダウンロードオブジェクトが、そのダウンロードされたファイルがエンコードされることを突き止める場合に送られます。
func download(NSURLDownload, willResumeWith : URLResponse, fromByte : Int64)
Sent when a download object has received a response from the server after attempting to resume a download.
ダウンロードオブジェクトが応答をサーバーからダウンロードの再開を試みる後に受け取った場合に送られます。
func download(NSURLDownload, willSend : URLRequest, redirectResponse : URLResponse?) -> URLRequest?
Sent when the download object determines that it must change URLs in order to continue loading a request.
ダウンロードオブジェクトが、それがリクエストのロードを継続するためにURLを変更しなければならないことを決定する場合に送られます。