Type Method 型メソッド

canInit(with:)

Determines whether the protocol subclass can handle the specified request. プロトコルサブクラスがこの指定されたリクエストを取り扱えるかどうかを決定します。

Declaration 宣言

class func canInit(with request: URLRequest) -> Bool

Parameters パラメータ

request

The request to be handled. 取り扱われることになるリクエスト。

Return Value 戻り値

true if the protocol subclass can handle request, otherwise false. true、もしプロトコルサブクラスがrequestを取り扱うことができるならば、そうでなければfalse

Discussion 議論

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. これは抽象メソッドです、そしてサブクラスは実装を提供しなければなりません。

See Also 参照

Determining If a Subclass Can Handle a Request サブクラスがリクエストを取り扱えるかどうか決定する