Platforms to show: All Mac Windows Linux Cross-Platform
NSURLConnectionMBS class Deprecated
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
class | Cocoa Networking | MBS MacBase Plugin | 11.3 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
The interface for NSURLConnection is sparse, providing only the controls to start and cancel asynchronous loads of a URL request.
NSURLConnection's events allow an object to receive informational callbacks about the asynchronous load of a URL request. Other events provide facilities that allow the subclass to customize the process of performing an asynchronous URL load. These events are called on the thread that started the asynchronous load operation for the associated NSURLConnection object.
NSURLConnection also has a convenience class method, sendSynchronousRequest, to load a URL request synchronously.
The following contract governs the events defined in this class:
- Zero or more willSendRequest events are called before any further event is called if it is determined that the download must redirect to a new location. The delegate can allow the redirect, modify the destination, or deny the redirect.
- Zero or more willSendRequestForAuthenticationChallenge events are called before a request for an authentication challenge is sent. The delegate can call the appropriate NSURLAuthenticationChallengeMBS method and perform any other required task related to credentials.
- Zero or more didReceiveAuthenticationChallenge vents are called if it is necessary to authenticate in order to download the request and the connection does not already have authenticated credentials.
- Zero or more didCancelAuthenticationChallenge vents are called if the connection cancels the authentication challenge due to the protocol implementation encountering an error.
- Zero or more didReceiveResponse events are called before receiving a didReceiveData message. The only case where didReceiveResponse is not sent to a delegate is when the protocol implementation encounters an error before a response can be created.
- Zero or more didReceiveData events are called before any of the following messages are sent to the delegate: willCacheResponse, DidFinishLoading, didFailWithError.
- Zero or one willCacheResponse events are called to the delegate after didReceiveData is sent but before a DidFinishLoading message is sent.
- 12 events
- event canAuthenticateAgainstProtectionSpace(protectionSpace as NSURLProtectionSpaceMBS) as boolean
- event didCancelAuthenticationChallenge(challenge as NSURLAuthenticationChallengeMBS)
- event didFailWithError(error as NSErrorMBS)
- event didFinishLoading
- event didReceiveAuthenticationChallenge(challenge as NSURLAuthenticationChallengeMBS)
- event didReceiveData(newData as Memoryblock)
- event didReceiveResponse(response as NSURLResponseMBS)
- event didSendBodyData(bytesWritten as Int64, totalBytesWritten as Int64, totalBytesExpectedToWrite as Int64)
- event shouldUseCredentialStorage as boolean
- event willCacheResponse(cachedResponse as NSCachedURLResponseMBS) as NSCachedURLResponseMBS
- event willSendRequest(request as NSURLRequestMBS, redirectResponse as NSURLResponseMBS) as NSURLRequestMBS
- event willSendRequestForAuthenticationChallenge(challenge as NSURLAuthenticationChallengeMBS)
- property Handle as Integer
- 5 methods
- method cancel
- method Constructor(request as NSURLRequestMBS)
- method Constructor(request as NSURLRequestMBS, startImmediately as boolean)
- method data as MemoryBlock
- method start
- 2 shared methods
- shared method canHandleRequest(request as NSURLRequestMBS) as boolean
- shared method sendSynchronousRequest(request as NSURLRequestMBS, byref response as NSURLResponseMBS, byref error as NSErrorMBS) as Memoryblock
This class has no sub classes.
Some examples using this class:
Blog Entries
- Adding NSURLSession classes for Xojo
- MBS Xojo Plugins, version 20.2pr3
- MBS Real Studio Plugins, version 12.5pr3
- MBS Real Studio Plugins, version 11.3pr7
Release notes
- Version 20.2
- Deprecated NSURLConnectionMBS in favor of NSURLSessionMBS class.
The items on this page are in the following plugins: MBS MacBase Plugin.
NSURLConnectionFilterMBS - NSURLCredentialMBS