NSURLSessionTaskDelegate
A protocol that defines methods that URL session instances call on their delegates to handle task-level events.
あるプロトコル、それはいくつかのメソッドを定義します、それらはURLセッションインスタンスがそれらの委任先上で呼び出してタスク水準イベントを取り扱うものです。
Availability 有効性
Technology
@property(retain) id<NSURLSessionTaskDelegate
> delegate;
This task-specific delegate receives messages from the task before the session’s delegate
receives them. This is similar to the behavior of the delegate
parameter used by the asychronous methods in NSURLSession
like bytes(for:
and data(for:
.
このタスク特有委任先は、タスクからメッセージいくつかを、セッションのもつdelegate
がそれらを受け取る前に受け取ります。これは、bytes(for:
およびdata(for:
のようなNSURLSession
における非同期メソッドによって使われるdelegate
パラメータの挙動に似ています。
NSURLSessionTaskDelegate