func dataTask (with: URL) -> URLSessionDataTask
Creates a task that retrieves the contents of the specified URL.
指定されたURLの内容を取ってくるタスクを作成します。
func dataTask (with: URL, completionHandler : (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
Creates a task that retrieves the contents of the specified URL, then calls a handler upon completion.
指定されたURLの内容を取ってきて、それからあるハンドラを完了に関して呼び出すタスクを作成します。
func dataTask (with: URLRequest, completionHandler : (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
Creates a task that retrieves the contents of a URL based on the specified URL request object, and calls a handler upon completion.
指定されたURLリクエストオブジェクトに基づいてあるURLの内容を取ってくるタスクを作成します、そしてあるハンドラを完了に関して呼び出します。
class URLSessionDataTask
A URL session task that returns downloaded data directly to the app in memory.
ダウンロードされたデータを直接にアプリへとメモリ中に返すURLセッションタスク。
protocol URLSessionDataDelegate
A protocol that defines methods that URL session instances call on their delegates to handle task-level events specific to data and upload tasks.
あるプロトコル、それはいくつかのメソッドを定義します、それらはURLセッションインスタンスがそれらの委任先上で呼び出して、データおよびアップロードタスクに特有なタスク水準イベントを取り扱うものです。