共用方式為


NSUrlSessionResponse 代理人

定義

NSUrlSession 針對各種背景作業叫用之回呼的簽章。

public delegate void NSUrlSessionResponse(NSData data, NSUrlResponse response, NSError error);
type NSUrlSessionResponse = delegate of NSData * NSUrlResponse * NSError -> unit

參數

data
NSData

收到的資料。

response
NSUrlResponse

表示回應的物件。

error
NSError

錯誤碼,如果有的話。

適用於