Type Method 型メソッド

canHandleRequest:

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

Declaration 宣言

+ (BOOL)canHandleRequest:(NSURLRequest *)request;

Parameters パラメータ

request

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

Return Value 戻り値

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

Discussion 議論

The result of this method is valid as long as no NSURLProtocol 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. このメソッドの結果は、NSURLProtocolクラスが登録されない、そしてrequestが変化しないままである限りは有効です。アプリケーションそれらは、失敗を取り扱う準備ができているべきです、たとえそれらがこのメソッドを呼び出すことによってプリフライトでリクエストを実行したとしてもです。

See Also 参照

Related Documentation 関連文書