pub unsafe trait WKURLSchemeTask: NSObjectProtocol {
// Provided methods
unsafe fn request(&self) -> Retained<NSURLRequest>
where Self: Sized + Message { ... }
unsafe fn didReceiveResponse(&self, response: &NSURLResponse)
where Self: Sized + Message { ... }
unsafe fn didReceiveData(&self, data: &NSData)
where Self: Sized + Message { ... }
unsafe fn didFinish(&self)
where Self: Sized + Message { ... }
unsafe fn didFailWithError(&self, error: &NSError)
where Self: Sized + Message { ... }
}
WKURLSchemeTask
only.Expand description
Provided Methods§
Sourceunsafe fn request(&self) -> Retained<NSURLRequest>
unsafe fn request(&self) -> Retained<NSURLRequest>
The request to load for this task.
Sourceunsafe fn didReceiveResponse(&self, response: &NSURLResponse)
unsafe fn didReceiveResponse(&self, response: &NSURLResponse)
Set the current response object for the task.
Parameter response
: The response to use.
This method must be called at least once for each URL scheme handler task. Cross-origin requests require CORS header fields. An exception will be thrown if you try to send a new response object after the task has already been completed. An exception will be thrown if your app has been told to stop loading this task via the registered WKURLSchemeHandler object.
Sourceunsafe fn didReceiveData(&self, data: &NSData)
unsafe fn didReceiveData(&self, data: &NSData)
Add received data to the task.
Parameter data
: The data to add.
After a URL scheme handler task’s final response object is received you should start sending it data. Each time this method is called the data you send will be appended to all previous data. An exception will be thrown if you try to send the task any data before sending it a response. An exception will be thrown if you try to send the task any data after the task has already been completed. An exception will be thrown if your app has been told to stop loading this task via the registered WKURLSchemeHandler object.
Sourceunsafe fn didFinish(&self)
unsafe fn didFinish(&self)
Mark the task as successfully completed.
An exception will be thrown if you try to finish the task before sending it a response. An exception will be thrown if you try to mark a task completed after it has already been marked completed or failed. An exception will be thrown if your app has been told to stop loading this task via the registered WKURLSchemeHandler object.
Sourceunsafe fn didFailWithError(&self, error: &NSError)
unsafe fn didFailWithError(&self, error: &NSError)
Mark the task as failed.
Parameter error
: A description of the error that caused the task to fail.
An exception will be thrown if you try to mark a task failed after it has already been marked completed or failed. An exception will be thrown if your app has been told to stop loading this task via the registered WKURLSchemeHandler object.