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