Type Method 型メソッド

canHandle(_:)

Returns whether a request can be handled based on a preflight evaluation. あるリクエストが取り扱われることができるかどうか、プリフライト評価に基づいて返します。

Declaration 宣言

class func canHandle(_ request: URLRequest) -> Bool

Parameters パラメータ

request

The request to evaluate. The connection deep-copies the request on creation. 評価するリクエスト。接続は、作成においてリクエストの深いコピーを行います。

Return Value 戻り値

true if a preflight operation determines that a connection with request can be created and the associated I/O can be started, false otherwise. true、もしrequestを持つ接続は作成されることができるそして結びつけられた I/O は開始されることができることをプリフライト演算が決定するならば、そうでなければfalse

Discussion 議論

The result of this method is valid as long as no URLProtocol classes are registered or unregistered, and request remains unchanged. Applications should be prepared to handle failures even if they have performed request preflighting by calling this method. このメソッドの結果は、URLProtocolクラスが登録されない、そしてrequestが変化しないままである限りは有効です。アプリケーションそれらは、失敗を取り扱う準備ができているべきです、たとえそれらがこのメソッドを呼び出すことによってプリフライトでリクエストを実行したとしてもです。

See Also 参照

Related Documentation 関連文書