Instance Method インスタンスメソッド

cancel()

Cancels the task. タスクを取り消します。

Declaration 宣言

func cancel()

Discussion 議論

This method returns immediately, marking the task as being canceled. Once a task is marked as being canceled, urlSession(_:task:didCompleteWithError:) will be sent to the task delegate, passing an error in the domain NSURLErrorDomain with the code NSURLErrorCancelled. A task may, under some circumstances, send messages to its delegate before the cancelation is acknowledged. このメソッドは直ぐに返ります、そのタスクが取り消されると印して。一旦タスクが取り消されると印されるならば、urlSession(_:task:didCompleteWithError:)がタスク委任先に送られるでしょう、ドメインNSURLErrorDomainの中のコードNSURLErrorCancelledでのあるエラーを渡して。あるタスクは、いくつかの状況下で、メッセージをそれの委任先へと送るかもしれません、取り消しが認知される前に。

This method may be called on a task that is suspended. このメソッドは、一時停止されるタスク上で呼び出されるかもしれません。

See Also 参照

Controlling the Task State タスク状態を制御する

Related Documentation 関連文書