canInit(with:)
Determines whether the protocol subclass can handle the specified request.
Declaration
class func canInit(with request: URLRequest) -> BoolParameters
- request:
The request to be handled.
Return Value
true if the protocol subclass can handle request, otherwise false.
Discussion
A subclass should inspect request and determine whether or not the implementation can perform a load with that request.
This is an abstract method and subclasses must provide an implementation.