NSUrlSessionResponse Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Signature for callbacks invoked by NSUrlSession for various background operations.
public delegate void NSUrlSessionResponse(NSData data, NSUrlResponse response, NSError error);
type NSUrlSessionResponse = delegate of NSData * NSUrlResponse * NSError -> unit
Parameters
- data
- NSData
Data that was received.
- response
- NSUrlResponse
The object representing the response.
- error
- NSError
Error code, if any.