Enumeration 列挙

NSURLSessionResponseDisposition

Constants indicating how a data or upload session should proceed after receiving the initial headers. どのようにデータまたはアップロードセッションが初期ヘッダを受け取る後に続行するべきかを指し示している定数。

Declaration 宣言

typedef enum NSURLSessionResponseDisposition : NSInteger {
    ...
} NSURLSessionResponseDisposition;

Overview 概要

When a data or upload task first receives a response, it calls the URLSession:dataTask:didReceiveResponse:completionHandler: method of NSURLSessionDataDelegate. Implement this method to inspect the received NSURLResponse and then call the provided completion handler. The first parameter to the completion handler is of this type, a disposition that tells the task how to proceed. このメソッドを実装して、受け取ったNSURLResponseを調査して、それから提供された完了ハンドラを呼び出してください。完了ハンドラへの最初のパラメータは、この型のもの、ある意向です、それはタスクにどのように続行するか伝えるものです。

Topics 話題

Task Dispositions タスク意向

See Also 参照

Handling Task Life Cycle Changes タスクライフサイクル変化を取り扱う