class func canInit (with: URLRequest) -> Bool
Determines whether the protocol subclass can handle the specified request.
プロトコルサブクラスがこの指定されたリクエストを取り扱えるかどうかを決定します。
Availability 有効性
Technology
class func canInit(with task: URLSessionTask
) -> Bool
task
A URL session task containing the request to be handled. 取り扱われることになるリクエストを含んでいるURLセッションタスク。
A subclass should inspect the task’s request and determine whether or not the implementation can perform a load with that task. サブクラスは、タスクのもつリクエストを調査して、そしてその実装がこのタスクでロードを実行できるか否かを決定すべきです。
This is an abstract method and subclasses must provide an implementation. これは抽象メソッドです、そしてサブクラスは実装を提供しなければなりません。
class func canInit (with: URLRequest) -> Bool