Contents

canInit(with:)

Determines whether the protocol subclass can handle the specified task.

Declaration

class func canInit(with task: URLSessionTask) -> Bool

Parameters

  • task:

    A URL session task containing the request to be handled.

Discussion

A subclass should inspect the task’s request and determine whether or not the implementation can perform a load with that task.

This is an abstract method and subclasses must provide an implementation.

See Also

Determining If a subclass can handle a request